-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.park.tera
46 lines (38 loc) · 1.4 KB
/
theme.park.tera
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
---
whiskers:
version: "2.3.0"
matrix:
- flavor
filename: "themes/{{ flavor.identifier }}.css"
---
{%- macro rgb(color) -%}
{{ color.rgb.r }}, {{ color.rgb.g }}, {{ color.rgb.b }}
{%- endmacro -%}
:root {
--main-bg-color: #{{ base.hex }};
--modal-bg-color: #{{ mantle.hex }};
--modal-header-color: #{{ crust.hex }};
--modal-footer-color: #{{ crust.hex }};
--drop-down-menu-bg: #{{ surface0.hex }};
--button-color: #{{ surface0.hex }};
--button-color-hover: #{{ surface1.hex }};
--button-text: var(--text);
--button-text-hover: var(--text-hover);
--accent-color: {{ self::rgb(color=blue) }};
--accent-color-hover: rgb(var(--accent-color), 0.8);
--link-color: var(--text);
--link-color-hover: #{{ blue.hex }};
--label-text-color: #fff; /* have to break convention here */
--text: #{{ text.hex }};
--text-hover: var(--text);
--text-muted: {{ subtext0.hex }};
/* Specials */
--arr-queue-color: #{{ green.hex }}; /* Servarr apps + Bazarr */
--plex-poster-unwatched: #{{ peach.hex }};
--petio-spinner: invert(66%) sepia(15%) saturate(1451%) hue-rotate(185deg) brightness(105%) contrast(96%); /* Made with https://codepen.io/jsm91/embed/ZEEawyZ */ /* Blue */
--gitea-color-primary-dark-4: var(--accent-color);
--overseerr-gradient: linear-gradient(
var(--main-bg-color),
var(--main-bg-color)
); /* Make sure this is compatible with whatever takes in the gradient */
}