2020-07-16 23:31:39 +03:00
|
|
|
|
---
|
|
|
|
|
template: overrides/main.html
|
|
|
|
|
---
|
|
|
|
|
|
2020-07-21 17:01:22 +03:00
|
|
|
|
# Changing the colors
|
2020-07-16 23:31:39 +03:00
|
|
|
|
|
|
|
|
|
As any good Material Design implementation, Material for MkDocs supports
|
|
|
|
|
Google's original [color palette][1], which can be easily configured through
|
2020-07-17 14:08:27 +03:00
|
|
|
|
`mkdocs.yml`. Furthermore, colors can be customized with a few lines of CSS to
|
2020-07-21 14:33:44 +03:00
|
|
|
|
fit your brand's identity by using [CSS variables][2].
|
2020-07-16 23:31:39 +03:00
|
|
|
|
|
|
|
|
|
[1]: http://www.materialui.co/colors
|
2020-07-21 19:39:27 +03:00
|
|
|
|
[2]: #custom-colors
|
2020-07-16 23:31:39 +03:00
|
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
|
|
### Color scheme
|
|
|
|
|
|
2020-07-20 16:18:09 +03:00
|
|
|
|
[:octicons-file-code-24: Source][3] · :octicons-milestone-24: Default: `default`
|
2020-07-16 23:31:39 +03: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
|
|
|
|
|
can be set from `mkdocs.yml`:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
palette:
|
|
|
|
|
scheme: default
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
:material-cursor-default-click-outline: click on a tile to change the color
|
|
|
|
|
scheme:
|
|
|
|
|
|
2020-07-19 23:23:26 +03:00
|
|
|
|
<div class="tx-switch">
|
|
|
|
|
<button data-md-color-scheme="default"><code>default</code></button>
|
|
|
|
|
<button data-md-color-scheme="slate"><code>slate</code></button>
|
|
|
|
|
</div>
|
2020-07-16 23:31:39 +03:00
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
var buttons = document.querySelectorAll("button[data-md-color-scheme]")
|
|
|
|
|
buttons.forEach(function(button) {
|
|
|
|
|
button.addEventListener("click", function() {
|
2020-07-17 14:08:27 +03:00
|
|
|
|
var attr = this.getAttribute("data-md-color-scheme")
|
|
|
|
|
document.body.setAttribute("data-md-color-scheme", attr)
|
2020-07-16 23:31:39 +03:00
|
|
|
|
var name = document.querySelector("#__code_0 code span:nth-child(7)")
|
2020-07-17 14:08:27 +03:00
|
|
|
|
name.textContent = attr
|
2020-07-16 23:31:39 +03:00
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
The _color scheme_ can also be set based on _user preference_, which makes use
|
2020-07-21 17:01:22 +03:00
|
|
|
|
of the `prefers-color-scheme` media query, by setting the value in `mkdocs.yml`
|
|
|
|
|
to `preference`:
|
2020-07-16 23:31:39 +03:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
palette:
|
|
|
|
|
scheme: preference
|
|
|
|
|
```
|
|
|
|
|
|
2020-07-17 00:05:57 +03:00
|
|
|
|
[3]: https://github.com/squidfunk/mkdocs-material/blob/master/src/assets/stylesheets/palette/_scheme.scss
|
|
|
|
|
|
2020-07-16 23:31:39 +03:00
|
|
|
|
### Primary color
|
|
|
|
|
|
2020-07-20 16:18:09 +03:00
|
|
|
|
[:octicons-file-code-24: Source][4] · :octicons-milestone-24: Default: `indigo`
|
2020-07-16 23:31:39 +03:00
|
|
|
|
|
|
|
|
|
The _primary color_ is used for the header, the sidebar, text links and several
|
|
|
|
|
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
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
:material-cursor-default-click-outline: click on a tile to change the primary
|
|
|
|
|
color:
|
|
|
|
|
|
2020-07-19 23:23:26 +03:00
|
|
|
|
<div class="tx-switch">
|
|
|
|
|
<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 23:31:39 +03:00
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
var buttons = document.querySelectorAll("button[data-md-color-primary]")
|
|
|
|
|
buttons.forEach(function(button) {
|
|
|
|
|
button.addEventListener("click", function() {
|
2020-07-17 14:08:27 +03:00
|
|
|
|
var attr = this.getAttribute("data-md-color-primary")
|
|
|
|
|
document.body.setAttribute("data-md-color-primary", attr)
|
2020-07-16 23:31:39 +03:00
|
|
|
|
var name = document.querySelector("#__code_2 code span:nth-child(7)")
|
2020-07-17 14:08:27 +03:00
|
|
|
|
name.textContent = attr.replace("-", " ")
|
2020-07-16 23:31:39 +03:00
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
2020-07-17 00:05:57 +03:00
|
|
|
|
[4]: https://github.com/squidfunk/mkdocs-material/blob/master/src/assets/stylesheets/palette/_primary.scss
|
|
|
|
|
|
2020-07-16 23:31:39 +03:00
|
|
|
|
### Accent color
|
|
|
|
|
|
2020-07-20 16:18:09 +03:00
|
|
|
|
[:octicons-file-code-24: Source][5] · :octicons-milestone-24: Default: `indigo`
|
2020-07-16 23:31:39 +03:00
|
|
|
|
|
|
|
|
|
The _accent color_ is used to denote elements that can be interacted with, e.g.
|
|
|
|
|
hovered links, buttons and scrollbars. It can be changed in `mkdocs.yml` by
|
|
|
|
|
chosing a valid color name:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
palette:
|
|
|
|
|
accent: indigo
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
:material-cursor-default-click-outline: click on a tile to change the accent
|
|
|
|
|
color:
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.md-typeset button[data-md-color-accent] > code {
|
2020-07-19 23:23:26 +03:00
|
|
|
|
background-color: var(--md-code-bg-color);
|
2020-07-16 23:31:39 +03:00
|
|
|
|
color: var(--md-accent-fg-color);
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
2020-07-19 23:23:26 +03:00
|
|
|
|
<div class="tx-switch">
|
|
|
|
|
<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 23:31:39 +03:00
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
var buttons = document.querySelectorAll("button[data-md-color-accent]")
|
|
|
|
|
buttons.forEach(function(button) {
|
|
|
|
|
button.addEventListener("click", function() {
|
2020-07-17 14:08:27 +03:00
|
|
|
|
var attr = this.getAttribute("data-md-color-accent")
|
|
|
|
|
document.body.setAttribute("data-md-color-accent", attr)
|
2020-07-16 23:31:39 +03:00
|
|
|
|
var name = document.querySelector("#__code_3 code span:nth-child(7)")
|
2020-07-17 14:08:27 +03:00
|
|
|
|
name.textContent = attr.replace("-", " ")
|
2020-07-16 23:31:39 +03:00
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
2020-07-17 00:05:57 +03:00
|
|
|
|
[5]: https://github.com/squidfunk/mkdocs-material/blob/master/src/assets/stylesheets/palette/_accent.scss
|
|
|
|
|
|
2020-07-17 14:08:27 +03:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
!!! warning "Accessibility – not all color combinations work well"
|
|
|
|
|
|
|
|
|
|
With __2__ (color schemes) __x 21__ (primary colors) __x 17__ (accent color)
|
|
|
|
|
= __714__ combinations, it's impossible to ensure that all configurations
|
|
|
|
|
provide a good user experience (e.g. _yellow on light background_), so make
|
|
|
|
|
sure that the color combination of your choosing provides enough contrast
|
|
|
|
|
and tweak CSS variables where necessary.
|
|
|
|
|
|
2020-07-16 23:31:39 +03:00
|
|
|
|
## Customization
|
|
|
|
|
|
2020-07-21 19:39:27 +03:00
|
|
|
|
### Custom colors
|
2020-07-21 17:01:22 +03:00
|
|
|
|
|
2020-07-20 16:18:09 +03:00
|
|
|
|
[:octicons-file-code-24: Source][6] ·
|
2020-07-21 17:01:22 +03:00
|
|
|
|
:octicons-mortar-board-24: Difficulty: _easy_
|
2020-07-20 16:18:09 +03:00
|
|
|
|
|
|
|
|
|
Material for MkDocs implements colors using [CSS variables][7] (custom
|
2020-07-16 23:31:39 +03:00
|
|
|
|
properties). If you want to customize the colors beyond the palette (e.g. to
|
2020-07-20 16:18:09 +03:00
|
|
|
|
use your brand-specific colors), you can add an [additional stylesheet][8] and
|
2020-07-16 23:31:39 +03:00
|
|
|
|
tweak the following CSS variables:
|
|
|
|
|
|
|
|
|
|
``` css
|
|
|
|
|
:root {
|
|
|
|
|
|
|
|
|
|
/* Default color shades */
|
|
|
|
|
--md-default-fg-color: hsla(0, 0%, 0%, 0.87);
|
|
|
|
|
--md-default-fg-color--light: hsla(0, 0%, 0%, 0.54);
|
|
|
|
|
--md-default-fg-color--lighter: hsla(0, 0%, 0%, 0.32);
|
|
|
|
|
--md-default-fg-color--lightest: hsla(0, 0%, 0%, 0.07);
|
|
|
|
|
--md-default-bg-color: hsla(0, 0%, 100%, 1);
|
|
|
|
|
--md-default-bg-color--light: hsla(0, 0%, 100%, 0.7);
|
|
|
|
|
--md-default-bg-color--lighter: hsla(0, 0%, 100%, 0.3);
|
|
|
|
|
--md-default-bg-color--lightest: hsla(0, 0%, 100%, 0.12);
|
|
|
|
|
|
|
|
|
|
/* Primary color shades */
|
|
|
|
|
--md-primary-fg-color: hsla(231, 48%, 48%, 1);
|
|
|
|
|
--md-primary-fg-color--light: hsla(231, 44%, 56%, 1);
|
|
|
|
|
--md-primary-fg-color--dark: hsla(232, 54%, 41%, 1);
|
|
|
|
|
--md-primary-bg-color: hsla(0, 0%, 100%, 1);
|
|
|
|
|
--md-primary-bg-color--light: hsla(0, 0%, 100%, 0.7);
|
|
|
|
|
|
|
|
|
|
/* Accent color shades */
|
|
|
|
|
--md-accent-fg-color: hsla(231, 99%, 66%, 1);
|
|
|
|
|
--md-accent-fg-color--transparent: hsla(231, 99%, 66%, 0.1);
|
|
|
|
|
--md-accent-bg-color: hsla(0, 0%, 100%, 1);
|
|
|
|
|
--md-accent-bg-color--light: hsla(0, 0%, 100%, 0.7);
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2020-07-20 16:18:09 +03:00
|
|
|
|
The colors of [code blocks][9], [admonitions][10], text links and the footer can
|
2020-07-16 23:31:39 +03:00
|
|
|
|
be adjusted through dedicated CSS variables, which partly default to the base
|
|
|
|
|
colors or neutral colors:
|
|
|
|
|
|
|
|
|
|
``` css
|
|
|
|
|
:root > * {
|
|
|
|
|
|
|
|
|
|
/* Code color shades */
|
|
|
|
|
--md-code-bg-color: hsla(0, 0%, 96%, 1);
|
|
|
|
|
--md-code-fg-color: hsla(200, 18%, 26%, 1);
|
|
|
|
|
|
|
|
|
|
/* Text color shades */
|
|
|
|
|
--md-text-color: var(--md-default-fg-color);
|
|
|
|
|
--md-text-link-color: var(--md-primary-fg-color);
|
|
|
|
|
|
|
|
|
|
/* Admonition color shades */
|
|
|
|
|
--md-admonition-bg-color: var(--md-default-bg-color);
|
|
|
|
|
--md-admonition-fg-color: var(--md-default-fg-color);
|
|
|
|
|
|
|
|
|
|
/* Footer color shades */
|
|
|
|
|
--md-footer-bg-color: hsla(0, 0%, 0%, 0.87);
|
|
|
|
|
--md-footer-bg-color--dark: hsla(0, 0%, 0%, 0.32);
|
|
|
|
|
--md-footer-fg-color: hsla(0, 0%, 100%, 1);
|
|
|
|
|
--md-footer-fg-color--light: hsla(0, 0%, 100%, 0.7);
|
|
|
|
|
--md-footer-fg-color--lighter: hsla(0, 0%, 100%, 0.3);
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2020-07-23 10:29:23 +03:00
|
|
|
|
[6]: https://github.com/squidfunk/mkdocs-material/blob/master/src/assets/stylesheets/main/_colors.scss
|
2020-07-20 16:18:09 +03:00
|
|
|
|
[7]: https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
|
|
|
|
|
[8]: ../customization.md#additional-stylesheets
|
2020-07-21 14:33:44 +03:00
|
|
|
|
[9]: ../reference/code-blocks.md
|
|
|
|
|
[10]: ../reference/admonitions.md
|