-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
60 lines (54 loc) · 1.45 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
site_name: Ansible Lite
site_description: Ansible Lite is a lightweight, easy-to-use, and powerful automation tool for managing your infrastructure.
site_author: Aidalinfo
extra:
homepage: https://aidalinfo.fr
nav:
- 'index.md'
- 'Quick Start.md'
- 'Package Installation.md'
plugins:
- search
- i18n:
docs_structure: suffix
languages:
- locale: en
default: true
name: English
build: true
- locale: fr
name: Français
build: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
theme:
name: material
logo: assets/aidalinfo.png
font:
code: Roboto Mono
favicon: assets/aidalinfo.png
features:
- content.code.copy
palette:
# Palette for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: 'pink' # Couleur principale
accent: 'green' # Couleur d'accentuation
toggle:
icon: material/brightness-7
name: Switch to light mode
# Palette for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: 'pink' # Couleur principale pour le mode sombre
accent: 'green' # Couleur d'accentuation pour le mode sombre
toggle:
icon: material/brightness-4
name: Switch to dark mode