-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
88 lines (85 loc) · 2.22 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
site_name: qml-colors
repo_url: https://github.com/GooRoo/qml-colors
repo_name: GooRoo/qml-colors
edit_uri: "" #edit/main/docs/
theme:
name: material
logo: assets/qml-colors-logo_64.png
favicon: assets/qml-colors-logo_32.png
icon:
repo: fontawesome/brands/github
palette:
- scheme: slate
media: "(prefers-color-scheme: dark)"
accent: orange
toggle:
icon: material/weather-sunny
name: Light mode
- scheme: default
media: "(prefers-color-scheme: light)"
accent: orange
toggle:
icon: material/weather-night
name: Dark mode
features:
- content.tabs.link
- navigation.indexes
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.top
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- tables
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
# - pymdownx.betterem:
# smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
nav:
- Home: index.md
- Getting Started:
- Why?: getting-started/why.md
- Installation: getting-started/installation.md
- Basic concepts: getting-started/basic-concepts.md
- qolor vs color: getting-started/qolor-vs-color.md
- Reference:
- reference/index.md
- Color names: reference/color-names.md
- Units: reference/units.md
- Tagged literals: reference/tagged-literals.md
- Qt Quick's color: reference/qolor.md
- The Color class: reference/color.md
- Functions: reference/functions.md
- Development: development.md