2020-07-21 16:01:22 +02:00
|
|
|
|
# Changing the colors
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2020-07-26 14:46:09 +02:00
|
|
|
|
As any proper Material Design implementation, Material for MkDocs supports
|
2021-10-10 17:39:53 +02:00
|
|
|
|
Google's original [color palette], which can be easily configured through
|
2020-07-17 13:08:27 +02:00
|
|
|
|
`mkdocs.yml`. Furthermore, colors can be customized with a few lines of CSS to
|
2021-10-10 17:39:53 +02:00
|
|
|
|
fit your brand's identity by using [CSS variables][custom colors].
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
[color palette]: http://www.materialui.co/colors
|
|
|
|
|
[custom colors]: #custom-colors
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
2020-08-26 23:21:28 +02:00
|
|
|
|
### Color palette
|
|
|
|
|
|
|
|
|
|
#### Color scheme
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
[:octicons-tag-24: 5.2.0][Color scheme support] ·
|
2021-10-10 17:39:53 +02:00
|
|
|
|
:octicons-milestone-24: Default: `default`
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2022-06-11 11:09:20 +02:00
|
|
|
|
Material for MkDocs supports two color schemes: a __light mode__, which is just
|
|
|
|
|
called `default`, and a __dark mode__, which is called `slate`. The color scheme
|
2020-07-23 13:17:50 +02:00
|
|
|
|
can be set via `mkdocs.yml`:
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
palette:
|
|
|
|
|
scheme: default
|
|
|
|
|
```
|
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
Click on a tile to change the color scheme:
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2021-02-24 18:02:09 +01:00
|
|
|
|
<div class="mdx-switch">
|
2020-07-19 22:23:26 +02:00
|
|
|
|
<button data-md-color-scheme="default"><code>default</code></button>
|
|
|
|
|
<button data-md-color-scheme="slate"><code>slate</code></button>
|
|
|
|
|
</div>
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
var buttons = document.querySelectorAll("button[data-md-color-scheme]")
|
|
|
|
|
buttons.forEach(function(button) {
|
|
|
|
|
button.addEventListener("click", function() {
|
2020-07-17 13:08:27 +02:00
|
|
|
|
var attr = this.getAttribute("data-md-color-scheme")
|
|
|
|
|
document.body.setAttribute("data-md-color-scheme", attr)
|
2022-01-06 10:26:20 +01:00
|
|
|
|
var name = document.querySelector("#__code_1 code span.l")
|
2020-07-17 13:08:27 +02:00
|
|
|
|
name.textContent = attr
|
2020-07-16 22:31:39 +02:00
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
[Color scheme support]: https://github.com/squidfunk/mkdocs-material/releases/tag/5.2.0
|
2020-07-16 23:05:57 +02:00
|
|
|
|
|
2020-08-26 23:21:28 +02:00
|
|
|
|
#### Primary color
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
[:octicons-tag-24: 0.2.0][Primary color support] ·
|
2021-10-10 17:39:53 +02:00
|
|
|
|
:octicons-milestone-24: Default: `indigo`
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
The primary color is used for the header, the sidebar, text links and several
|
2020-07-16 22:31:39 +02:00
|
|
|
|
other components. In order to change the primary color, set the following value
|
|
|
|
|
in `mkdocs.yml` to a valid color name:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
palette:
|
|
|
|
|
primary: indigo
|
|
|
|
|
```
|
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
Click on a tile to change the primary color:
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2021-02-24 18:02:09 +01:00
|
|
|
|
<div class="mdx-switch">
|
2020-07-19 22:23:26 +02:00
|
|
|
|
<button data-md-color-primary="red"><code>red</code></button>
|
|
|
|
|
<button data-md-color-primary="pink"><code>pink</code></button>
|
|
|
|
|
<button data-md-color-primary="purple"><code>purple</code></button>
|
|
|
|
|
<button data-md-color-primary="deep-purple"><code>deep purple</code></button>
|
|
|
|
|
<button data-md-color-primary="indigo"><code>indigo</code></button>
|
|
|
|
|
<button data-md-color-primary="blue"><code>blue</code></button>
|
|
|
|
|
<button data-md-color-primary="light-blue"><code>light blue</code></button>
|
|
|
|
|
<button data-md-color-primary="cyan"><code>cyan</code></button>
|
|
|
|
|
<button data-md-color-primary="teal"><code>teal</code></button>
|
|
|
|
|
<button data-md-color-primary="green"><code>green</code></button>
|
|
|
|
|
<button data-md-color-primary="light-green"><code>light green</code></button>
|
|
|
|
|
<button data-md-color-primary="lime"><code>lime</code></button>
|
|
|
|
|
<button data-md-color-primary="yellow"><code>yellow</code></button>
|
|
|
|
|
<button data-md-color-primary="amber"><code>amber</code></button>
|
|
|
|
|
<button data-md-color-primary="orange"><code>orange</code></button>
|
|
|
|
|
<button data-md-color-primary="deep-orange"><code>deep orange</code></button>
|
|
|
|
|
<button data-md-color-primary="brown"><code>brown</code></button>
|
|
|
|
|
<button data-md-color-primary="grey"><code>grey</code></button>
|
|
|
|
|
<button data-md-color-primary="blue-grey"><code>blue grey</code></button>
|
|
|
|
|
<button data-md-color-primary="black"><code>black</code></button>
|
|
|
|
|
<button data-md-color-primary="white"><code>white</code></button>
|
|
|
|
|
</div>
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
var buttons = document.querySelectorAll("button[data-md-color-primary]")
|
|
|
|
|
buttons.forEach(function(button) {
|
|
|
|
|
button.addEventListener("click", function() {
|
2020-07-17 13:08:27 +02:00
|
|
|
|
var attr = this.getAttribute("data-md-color-primary")
|
|
|
|
|
document.body.setAttribute("data-md-color-primary", attr)
|
2022-01-06 10:26:20 +01:00
|
|
|
|
var name = document.querySelector("#__code_2 code span.l")
|
2020-07-17 13:08:27 +02:00
|
|
|
|
name.textContent = attr.replace("-", " ")
|
2020-07-16 22:31:39 +02:00
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
[Primary color support]: https://github.com/squidfunk/mkdocs-material/releases/tag/0.2.0
|
2020-07-16 23:05:57 +02:00
|
|
|
|
|
2020-08-26 23:21:28 +02:00
|
|
|
|
#### Accent color
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
[:octicons-tag-24: 0.2.0][Accent color support] ·
|
2021-10-10 17:39:53 +02:00
|
|
|
|
:octicons-milestone-24: Default: `indigo`
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
The accent color is used to denote elements that can be interacted with, e.g.
|
2020-07-16 22:31:39 +02:00
|
|
|
|
hovered links, buttons and scrollbars. It can be changed in `mkdocs.yml` by
|
2020-07-26 14:46:09 +02:00
|
|
|
|
choosing a valid color name:
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
palette:
|
|
|
|
|
accent: indigo
|
|
|
|
|
```
|
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
Click on a tile to change the accent color:
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.md-typeset button[data-md-color-accent] > code {
|
2020-07-19 22:23:26 +02:00
|
|
|
|
background-color: var(--md-code-bg-color);
|
2020-07-16 22:31:39 +02:00
|
|
|
|
color: var(--md-accent-fg-color);
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
2021-02-24 18:02:09 +01:00
|
|
|
|
<div class="mdx-switch">
|
2020-07-19 22:23:26 +02:00
|
|
|
|
<button data-md-color-accent="red"><code>red</code></button>
|
|
|
|
|
<button data-md-color-accent="pink"><code>pink</code></button>
|
|
|
|
|
<button data-md-color-accent="purple"><code>purple</code></button>
|
|
|
|
|
<button data-md-color-accent="deep-purple"><code>deep purple</code></button>
|
|
|
|
|
<button data-md-color-accent="indigo"><code>indigo</code></button>
|
|
|
|
|
<button data-md-color-accent="blue"><code>blue</code></button>
|
|
|
|
|
<button data-md-color-accent="light-blue"><code>light blue</code></button>
|
|
|
|
|
<button data-md-color-accent="cyan"><code>cyan</code></button>
|
|
|
|
|
<button data-md-color-accent="teal"><code>teal</code></button>
|
|
|
|
|
<button data-md-color-accent="green"><code>green</code></button>
|
|
|
|
|
<button data-md-color-accent="light-green"><code>light green</code></button>
|
|
|
|
|
<button data-md-color-accent="lime"><code>lime</code></button>
|
|
|
|
|
<button data-md-color-accent="yellow"><code>yellow</code></button>
|
|
|
|
|
<button data-md-color-accent="amber"><code>amber</code></button>
|
|
|
|
|
<button data-md-color-accent="orange"><code>orange</code></button>
|
|
|
|
|
<button data-md-color-accent="deep-orange"><code>deep orange</code></button>
|
|
|
|
|
</div>
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
var buttons = document.querySelectorAll("button[data-md-color-accent]")
|
|
|
|
|
buttons.forEach(function(button) {
|
|
|
|
|
button.addEventListener("click", function() {
|
2020-07-17 13:08:27 +02:00
|
|
|
|
var attr = this.getAttribute("data-md-color-accent")
|
|
|
|
|
document.body.setAttribute("data-md-color-accent", attr)
|
2022-01-06 10:26:20 +01:00
|
|
|
|
var name = document.querySelector("#__code_3 code span.l")
|
2020-07-17 13:08:27 +02:00
|
|
|
|
name.textContent = attr.replace("-", " ")
|
2020-07-16 22:31:39 +02:00
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
[Accent color support]: https://github.com/squidfunk/mkdocs-material/releases/tag/0.2.0
|
2020-07-16 23:05:57 +02:00
|
|
|
|
|
2020-08-26 23:21:28 +02:00
|
|
|
|
### Color palette toggle
|
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
[:octicons-tag-24: 7.1.0][Color palette toggle support] ·
|
2021-10-10 17:39:53 +02:00
|
|
|
|
:octicons-milestone-24: Default: _none_
|
2020-08-26 23:21:28 +02:00
|
|
|
|
|
2022-06-11 11:09:20 +02:00
|
|
|
|
Offering a light _and_ dark color palette makes your documentation pleasant to
|
|
|
|
|
read at different times of the day, so the user can choose accordingly. Add the
|
|
|
|
|
following lines to `mkdocs.yml`:
|
2021-04-18 16:19:39 +02:00
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
``` yaml
|
2020-08-26 23:21:28 +02:00
|
|
|
|
theme:
|
2021-12-11 14:30:07 +01:00
|
|
|
|
palette: # (1)!
|
2022-06-11 11:09:20 +02:00
|
|
|
|
|
|
|
|
|
# Palette toggle for light mode
|
2021-04-18 16:19:39 +02:00
|
|
|
|
- scheme: default
|
2020-08-26 23:21:28 +02:00
|
|
|
|
toggle:
|
2022-06-11 11:09:20 +02:00
|
|
|
|
icon: material/brightness-7 # (2)!
|
2021-02-24 18:59:12 +01:00
|
|
|
|
name: Switch to dark mode
|
2022-06-11 11:09:20 +02:00
|
|
|
|
|
|
|
|
|
# Palette toggle for dark mode
|
2022-06-14 09:32:39 +02:00
|
|
|
|
- scheme: slate
|
2020-08-26 23:21:28 +02:00
|
|
|
|
toggle:
|
2022-06-11 11:09:20 +02:00
|
|
|
|
icon: material/brightness-4
|
2021-02-24 18:59:12 +01:00
|
|
|
|
name: Switch to light mode
|
2020-08-26 23:21:28 +02:00
|
|
|
|
```
|
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
1. Note that the `theme.palette` setting is now defined as a list.
|
2022-01-16 17:34:27 +01:00
|
|
|
|
|
|
|
|
|
2. Enter a few keywords to find the perfect icon using our [icon search] and
|
|
|
|
|
click on the shortcode to copy it to your clipboard:
|
|
|
|
|
|
|
|
|
|
<div class="mdx-iconsearch" data-mdx-component="iconsearch">
|
2022-06-11 11:09:20 +02:00
|
|
|
|
<input class="md-input md-input--stretch mdx-iconsearch__input" placeholder="Search icon" data-mdx-component="iconsearch-query" value="brightness" />
|
2022-01-16 17:34:27 +01:00
|
|
|
|
<div class="mdx-iconsearch-result" data-mdx-component="iconsearch-result" data-mdx-mode="file">
|
|
|
|
|
<div class="mdx-iconsearch-result__meta"></div>
|
|
|
|
|
<ol class="mdx-iconsearch-result__list"></ol>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2022-06-11 11:09:20 +02:00
|
|
|
|
This configuration will render a color palette toggle next to the search bar.
|
2022-06-14 09:32:39 +02:00
|
|
|
|
Note that you can also define separate settings for [`primary`][palette.primary]
|
|
|
|
|
and [`accent`][palette.accent] per color palette.
|
2022-06-11 11:09:20 +02:00
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
The following properties must be set for each toggle:
|
2020-08-26 23:21:28 +02:00
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
[`icon`](#+palette.toggle.icon){ #+palette.toggle.icon }
|
2020-08-26 23:21:28 +02:00
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
: :octicons-milestone-24: Default: _none_ · :octicons-alert-24: __Required__ –
|
2022-01-16 19:45:40 +01:00
|
|
|
|
This property must point to a valid icon path referencing any icon bundled
|
|
|
|
|
with the theme, or the build will not succeed. Some popular combinations:
|
2020-08-26 23:21:28 +02:00
|
|
|
|
|
2022-06-11 11:09:20 +02:00
|
|
|
|
* :material-brightness-7: + :material-brightness-4: – `material/brightness-7` + `material/brightness-4`
|
2022-05-08 17:50:57 +02:00
|
|
|
|
* :material-toggle-switch: + :material-toggle-switch-off-outline: – `material/toggle-switch` + `material/toggle-switch-off-outline`
|
|
|
|
|
* :material-weather-night: + :material-weather-sunny: – `material/weather-night` + `material/weather-sunny`
|
|
|
|
|
* :material-eye: + :material-eye-outline: – `material/eye` + `material/eye-outline`
|
|
|
|
|
* :material-lightbulb: + :material-lightbulb-outline: – `material/lightbulb` + `material/lightbulb-outline`
|
2020-08-26 23:21:28 +02:00
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
[`name`](#+palette.toggle.name){ #+palette.toggle.name }
|
2020-08-26 23:21:28 +02:00
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
: :octicons-milestone-24: Default: _none_ · :octicons-alert-24: __Required__ –
|
2022-06-11 11:09:20 +02:00
|
|
|
|
This property is used as the toggle's `title` attribute and should be set to
|
|
|
|
|
a discernable name to improve accessibility. It's rendered as a [tooltip].
|
2020-08-26 23:21:28 +02:00
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
[Color palette toggle support]: https://github.com/squidfunk/mkdocs-material/releases/tag/7.1.0
|
2021-10-10 17:39:53 +02:00
|
|
|
|
[palette.scheme]: #color-scheme
|
|
|
|
|
[palette.primary]: #primary-color
|
|
|
|
|
[palette.accent]: #accent-color
|
2022-01-16 19:45:40 +01:00
|
|
|
|
[icon search]: ../reference/icons-emojis.md#search
|
2022-06-11 11:09:20 +02:00
|
|
|
|
[tooltip]: ../reference/tooltips.md
|
2021-04-18 16:19:39 +02:00
|
|
|
|
|
|
|
|
|
### System preference
|
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
[:octicons-tag-24: 7.1.0][System preference support] ·
|
2021-10-10 17:39:53 +02:00
|
|
|
|
:octicons-milestone-24: Default: _none_
|
2021-04-18 16:19:39 +02:00
|
|
|
|
|
2022-06-11 11:09:20 +02:00
|
|
|
|
Each color palette can be linked to the user's system preference for light and
|
|
|
|
|
dark appearance by using a media query. Simply add a `media` property next to
|
|
|
|
|
the `scheme` definition in `mkdocs.yml`:
|
2021-04-18 16:19:39 +02:00
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
``` yaml
|
2021-04-18 16:19:39 +02:00
|
|
|
|
theme:
|
|
|
|
|
palette:
|
2022-06-11 11:09:20 +02:00
|
|
|
|
|
|
|
|
|
# Palette toggle for light mode
|
|
|
|
|
- media: "(prefers-color-scheme: light)"
|
2021-04-18 16:19:39 +02:00
|
|
|
|
scheme: default
|
|
|
|
|
toggle:
|
2022-06-11 11:09:20 +02:00
|
|
|
|
icon: material/brightness-7
|
2021-04-18 16:19:39 +02:00
|
|
|
|
name: Switch to dark mode
|
2022-06-11 11:09:20 +02:00
|
|
|
|
|
|
|
|
|
# Palette toggle for dark mode
|
|
|
|
|
- media: "(prefers-color-scheme: dark)"
|
2021-04-18 16:19:39 +02:00
|
|
|
|
scheme: slate
|
|
|
|
|
toggle:
|
2022-06-11 11:09:20 +02:00
|
|
|
|
icon: material/brightness-4
|
2021-04-18 16:19:39 +02:00
|
|
|
|
name: Switch to light mode
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
When the user first visits your site, the media queries are evaluated in the
|
|
|
|
|
order of their definition. The first media query that matches selects the
|
|
|
|
|
default color palette.
|
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
[System preference support]: https://github.com/squidfunk/mkdocs-material/releases/tag/7.1.0
|
2020-08-26 23:21:28 +02:00
|
|
|
|
|
2022-07-17 15:20:08 +02:00
|
|
|
|
#### Automatic light / dark mode
|
2022-06-11 11:09:20 +02:00
|
|
|
|
|
|
|
|
|
[:octicons-heart-fill-24:{ .mdx-heart } Sponsors only][Insiders]{ .mdx-insiders } ·
|
|
|
|
|
[:octicons-tag-24: insiders-4.18.0][Insiders] ·
|
|
|
|
|
:octicons-beaker-24: Experimental
|
|
|
|
|
|
|
|
|
|
Newer operating system allow to automatically switch between light and dark
|
|
|
|
|
appearance during day and night times. [Insiders] adds support for automatic
|
2022-06-11 11:41:50 +02:00
|
|
|
|
light / dark mode, delegating color palette selection to the user's operating
|
2022-06-11 11:09:20 +02:00
|
|
|
|
system. Add the following lines to `mkdocs.yml`:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
palette:
|
|
|
|
|
|
|
|
|
|
# Palette toggle for automatic mode
|
|
|
|
|
- media: "(prefers-color-scheme)"
|
|
|
|
|
toggle:
|
|
|
|
|
icon: material/brightness-auto
|
|
|
|
|
name: Switch to light mode
|
|
|
|
|
|
|
|
|
|
# Palette toggle for light mode
|
|
|
|
|
- media: "(prefers-color-scheme: light)"
|
2022-07-17 15:20:08 +02:00
|
|
|
|
scheme: default # (1)!
|
2022-06-11 11:09:20 +02:00
|
|
|
|
toggle:
|
|
|
|
|
icon: material/brightness-7
|
|
|
|
|
name: Switch to dark mode
|
|
|
|
|
|
|
|
|
|
# Palette toggle for dark mode
|
|
|
|
|
- media: "(prefers-color-scheme: dark)"
|
|
|
|
|
scheme: slate
|
|
|
|
|
toggle:
|
|
|
|
|
icon: material/brightness-4
|
|
|
|
|
name: Switch to system preference
|
|
|
|
|
```
|
|
|
|
|
|
2022-06-14 09:32:39 +02:00
|
|
|
|
1. You can also define separate settings for [`primary`][palette.primary] and
|
|
|
|
|
[`accent`][palette.accent] per color palette, i.e. different colors for
|
|
|
|
|
light and dark mode.
|
|
|
|
|
|
2022-06-11 11:09:20 +02:00
|
|
|
|
Material for MkDocs will now change the color palette each time the operating
|
|
|
|
|
system switches between light and dark appearance, even when the user doesn't
|
|
|
|
|
reload the site.
|
|
|
|
|
|
|
|
|
|
[Insiders]: ../insiders/index.md
|
|
|
|
|
|
2020-07-16 22:31:39 +02:00
|
|
|
|
## Customization
|
|
|
|
|
|
2020-07-21 18:39:27 +02:00
|
|
|
|
### Custom colors
|
2020-07-21 16:01:22 +02:00
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
Material for MkDocs implements colors using [CSS variables] (custom
|
2020-07-16 22:31:39 +02:00
|
|
|
|
properties). If you want to customize the colors beyond the palette (e.g. to
|
2021-10-10 17:39:53 +02:00
|
|
|
|
use your brand-specific colors), you can add an [additional style sheet] and
|
2020-07-23 13:17:50 +02:00
|
|
|
|
tweak the values of the CSS variables.
|
|
|
|
|
|
2021-03-13 14:30:29 +01:00
|
|
|
|
Let's say you're :fontawesome-brands-youtube:{ style="color: #EE0F0F" }
|
2020-07-24 14:30:03 +02:00
|
|
|
|
__YouTube__, and want to set the primary color to your brand's palette. Just
|
2020-07-23 13:17:50 +02:00
|
|
|
|
add:
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
=== ":octicons-file-code-16: `docs/stylesheets/extra.css`"
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
``` css
|
2022-05-14 10:01:47 +02:00
|
|
|
|
:root > * {
|
2021-10-10 17:39:53 +02:00
|
|
|
|
--md-primary-fg-color: #EE0F0F;
|
|
|
|
|
--md-primary-fg-color--light: #ECB7B7;
|
|
|
|
|
--md-primary-fg-color--dark: #90030C;
|
|
|
|
|
}
|
|
|
|
|
```
|
2020-07-23 13:17:50 +02:00
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
=== ":octicons-file-code-16: `mkdocs.yml`"
|
2020-07-23 13:17:50 +02:00
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
``` yaml
|
|
|
|
|
extra_css:
|
|
|
|
|
- stylesheets/extra.css
|
|
|
|
|
```
|
2020-07-23 13:17:50 +02:00
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
See the file containing the [color definitions] for a list of all CSS variables.
|
2020-07-23 13:17:50 +02:00
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
[CSS variables]: https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
|
|
|
|
|
[color definitions]: https://github.com/squidfunk/mkdocs-material/blob/master/src/assets/stylesheets/main/_colors.scss
|
|
|
|
|
[additional style sheet]: ../customization.md#additional-css
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Custom color schemes
|
2020-07-23 13:17:50 +02:00
|
|
|
|
|
|
|
|
|
Besides overriding specific colors, you can create your own, named color scheme
|
2021-10-10 17:39:53 +02:00
|
|
|
|
by wrapping the definitions in a `[data-md-color-scheme="..."]`
|
|
|
|
|
[attribute selector], which you can then set via `mkdocs.yml` as described
|
|
|
|
|
in the [color schemes][palette.scheme] section:
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
=== ":octicons-file-code-16: `docs/stylesheets/extra.css`"
|
2021-10-10 17:39:53 +02:00
|
|
|
|
|
|
|
|
|
``` css
|
|
|
|
|
[data-md-color-scheme="youtube"] {
|
|
|
|
|
--md-primary-fg-color: #EE0F0F;
|
|
|
|
|
--md-primary-fg-color--light: #ECB7B7;
|
|
|
|
|
--md-primary-fg-color--dark: #90030C;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
=== ":octicons-file-code-16: `mkdocs.yml`"
|
2021-10-10 17:39:53 +02:00
|
|
|
|
|
|
|
|
|
``` yaml
|
2021-10-10 19:22:13 +02:00
|
|
|
|
theme:
|
|
|
|
|
palette:
|
|
|
|
|
scheme: youtube
|
2021-10-10 17:39:53 +02:00
|
|
|
|
extra_css:
|
|
|
|
|
- stylesheets/extra.css
|
|
|
|
|
```
|
2020-07-27 14:44:47 +02:00
|
|
|
|
|
|
|
|
|
Additionally, the `slate` color scheme defines all of it's colors via `hsla`
|
|
|
|
|
color functions and deduces its colors from the `--md-hue` CSS variable. You
|
|
|
|
|
can tune the `slate` theme with:
|
|
|
|
|
|
|
|
|
|
``` css
|
|
|
|
|
[data-md-color-scheme="slate"] {
|
2021-12-11 14:30:07 +01:00
|
|
|
|
--md-hue: 210; /* (1)! */
|
2020-07-27 14:44:47 +02:00
|
|
|
|
}
|
2020-07-16 22:31:39 +02:00
|
|
|
|
```
|
|
|
|
|
|
2021-10-10 17:39:53 +02:00
|
|
|
|
1. The `hue` value must be in the range of `[0, 360]`
|
|
|
|
|
|
|
|
|
|
[attribute selector]: https://www.w3.org/TR/selectors-4/#attribute-selectors
|