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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/*
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) 2025 metamuffin <metamuffin.org>
*/
body {
--video-brackground: black;
--c-danger: rgb(177, 36, 36);
}
body.theme-Dark {
--accent-light: rgb(255, 163, 87);
--accent-dark: rgb(199, 90, 0);
--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;
--overlay-poster: #0005;
--overlay: #0006;
--overlay-hover: #0009;
--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: #e46600;
--accent-dark: #ff9036;
--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;
--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);
}
body.theme-Purple {
--accent-light: rgb(191, 87, 255);
--accent-dark: rgb(143, 43, 205);
--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;
--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);
}
|