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
47
48
49
50
51
52
53
|
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2026 metamuffin <metamuffin.org>
*/
body {
--video-brackground: black;
--accent-hue: 277;
}
body.theme-dark {
--accent-light: hsl(var(--accent-hue), 100%, 67%);
--accent-dark: hsl(var(--accent-hue), 65%, 49%);
--c-error: rgb(255, 117, 117);
--c-warn: rgb(252, 255, 78);
--c-success: rgb(117, 255, 117);
--c-nav: #1c1c1c9a;
--c-nav-hover: #ffffff10;
--c-fade: black;
--c-danger: rgb(177, 36, 36);
--overlay: #0005;
--overlay-hover: #0008;
--background-dark: #070707;
--background-light: #1c1c1c;
--background-very-light: #323232;
--background-disable: rgb(128, 128, 128);
--background-prop: rgba(50, 50, 50, 0.8);
--font: #f1f1f1;
--font-dark: rgb(122, 122, 122);
--font-highlight: white;
--image-loading-placeholder: rgb(50, 50, 50);
}
body.theme-light {
--accent-light: hsl(var(--accent-hue), 100%, 45%);
--accent-dark: hsl(var(--accent-hue), 100%, 61%);
--c-error: rgb(255, 117, 117);
--c-warn: rgb(252, 255, 78);
--c-success: rgb(117, 255, 117);
--c-nav: #c4c4c4d7;
--c-nav-hover: #ffffff10;
--c-fade: white;
--c-danger: rgb(177, 36, 36);
--overlay: rgba(255, 255, 255, 0.267);
--overlay-hover: rgba(255, 255, 255, 0.533);
--background-dark: #ffffff;
--background-light: #c0c0c0;
--background-very-light: #b9b9b9;
--background-disable: rgb(128, 128, 128);
--background-prop: #e9e9e9b2;
--font: #0f0f0f;
--font-dark: #606060;
--font-highlight: black;
--image-loading-placeholder: rgb(200, 200, 200);
}
|