mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
67 lines
2.3 KiB
HTML
67 lines
2.3 KiB
HTML
<!--
|
|
Copyright (c) 2016-2021 Martin Donath <martin.donath@squidfunk.com>
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to
|
|
deal in the Software without restriction, including without limitation the
|
|
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
sell copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
IN THE SOFTWARE.
|
|
-->
|
|
|
|
<!-- Primary colors -->
|
|
{% macro primary(key) %}{{ {
|
|
"red": "#ef5552",
|
|
"pink": "#e92063",
|
|
"purple": "#ab47bd",
|
|
"deep-purple": "#7e56c2",
|
|
"indigo": "#4051b5",
|
|
"blue": "#2094f3",
|
|
"light-blue": "#02a6f2",
|
|
"cyan": "#00bdd6",
|
|
"teal": "#009485",
|
|
"green": "#4cae4f",
|
|
"light-green": "#8bc34b",
|
|
"lime": "#cbdc38",
|
|
"yellow": "#ffec3d",
|
|
"amber": "#ffc105",
|
|
"orange": "#ffa724",
|
|
"deep-orange": "#ff6e42",
|
|
"brown": "#795649",
|
|
"grey": "#757575",
|
|
"blue-grey": "#546d78",
|
|
"black": "#000000",
|
|
"white": "#ffffff"
|
|
}[key] }}{% endmacro %}
|
|
|
|
<!-- Accent colors -->
|
|
{% macro accent(key) %}{{ {
|
|
"red": "#ff1a47",
|
|
"pink": "#f50056",
|
|
"purple": "#df41fb",
|
|
"deep-purple": "#7c4dff",
|
|
"indigo": "#526cfe",
|
|
"blue": "#4287ff",
|
|
"light-blue": "#0091eb",
|
|
"cyan": "#00bad6",
|
|
"teal": "#00bda4",
|
|
"green": "#00c753",
|
|
"light-green": "#63de17",
|
|
"lime": "#b0eb00",
|
|
"yellow": "#ffd500",
|
|
"amber": "#ffaa00",
|
|
"orange": "#ff9100",
|
|
"deep-orange": "#ff6e42"
|
|
}[key] }}{% endmacro %}
|