2018-06-13 11:18:00 +03:00
|
|
|
<!--
|
2019-01-01 20:42:00 +03:00
|
|
|
Copyright (c) 2016-2019 Martin Donath <martin.donath@squidfunk.com>
|
2018-06-13 11:18:00 +03:00
|
|
|
|
|
|
|
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 -->
|
2019-06-15 16:16:14 +03:00
|
|
|
{% macro primary(key) %}{{- {
|
2018-06-13 11:18:00 +03:00
|
|
|
"red": "#ef5350",
|
|
|
|
"pink": "#e91e63",
|
|
|
|
"purple": "#ab47bc",
|
|
|
|
"deep-purple": "#7e57c2",
|
|
|
|
"indigo": "#3f51b5",
|
|
|
|
"blue": "#2196f3",
|
|
|
|
"light-blue": "#03a9f4",
|
|
|
|
"cyan": "#00bcd4",
|
|
|
|
"teal": "#009688",
|
|
|
|
"green": "#4caf50",
|
|
|
|
"light-green": "#7cb342",
|
|
|
|
"lime": "#c0ca33",
|
|
|
|
"yellow": "#f9a825",
|
|
|
|
"amber": "#ffa000",
|
|
|
|
"orange": "#fb8c00",
|
|
|
|
"deep-orange": "#ff7043",
|
|
|
|
"brown": "#795548",
|
|
|
|
"grey": "#757575",
|
|
|
|
"blue-grey": "#546e7a"
|
2019-06-15 16:16:14 +03:00
|
|
|
}[key] -}}{% endmacro %}
|
2018-06-13 11:18:00 +03:00
|
|
|
|
|
|
|
<!-- Accent colors -->
|
2019-06-15 16:16:14 +03:00
|
|
|
{% macro accent(key) %}{{- {
|
2018-06-13 11:18:00 +03:00
|
|
|
"red": "#ff1744",
|
|
|
|
"pink": "#f50057",
|
|
|
|
"purple": "#e040fb",
|
|
|
|
"deep-purple": "#7c4dff",
|
|
|
|
"indigo": "#536dfe",
|
|
|
|
"blue": "#448aff",
|
|
|
|
"light-blue": "#0091ea",
|
|
|
|
"cyan": "#00b8d4",
|
|
|
|
"teal": "#00bfa5",
|
|
|
|
"green": "#00c853",
|
|
|
|
"light-green": "#64dd17",
|
|
|
|
"lime": "#aeea00",
|
|
|
|
"yellow": "#ffd600",
|
|
|
|
"amber": "#ffab00",
|
|
|
|
"orange": "#ff9100",
|
|
|
|
"deep-orange": "#ff6e40"
|
2019-06-15 16:16:14 +03:00
|
|
|
}[key] -}}{% endmacro %}
|