-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdark.css
More file actions
executable file
·46 lines (43 loc) · 1.94 KB
/
dark.css
File metadata and controls
executable file
·46 lines (43 loc) · 1.94 KB
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
/**
* [CARO - Cloud Assisted Records and Operations](https://github.com/erroronline1/caro)
* Copyright (C) 2023-2025 error on line 1 (dev@erroronline.one)
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
* You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
* Third party libraries are distributed under their own terms (see [readme.md](readme.md#external-libraries))
*/
:root {
--background: rgb(46, 52, 64); /*#2e3440*/
--foreground: rgb(229, 233, 240); /*#e5e9f0*/
--inputborder: rgb(216, 222, 233); /*#d8dee9*/
--disabled: rgb(172, 177, 186); /*#acb1ba*/
--article: rgb(67, 76, 94);
--3d-border: rgba(67, 76, 94, 0);
--lightshadow: rgba(229, 233, 240, 0.1);
--lightershadow: rgba(229, 233, 240, 0.5);
--darkshadow: rgba(0, 0, 0, 0.4);
--notsodarkshadow: rgba(229, 233, 240, 0.1);
--frostgreen: rgb(143, 188, 187);
--red: rgb(191, 97, 106);
--reddish: rgba(191, 97, 106, 0.3);
--orange: rgb(208, 135, 112);
--yellow: rgb(235, 203, 139);
--green: rgb(153, 179, 132);
--purple: rgb(180, 142, 173);
--cta: rgb(136, 192, 208);
--evenDiscreetButton: rgba(136, 192, 208, 0.2);
--cta_darker: rgb(80, 155, 176);
--cta_active: rgb(161, 227, 246);
--shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
--cta-shadow: inset -1px -1px 15px 2px rgba(136, 192, 208, 0.7);
--notif: rgb(229, 233, 240);
--menu: rgba(46, 52, 64, 0.9);
}
body {
background: var(--background);
}
mark {
background-color: var(--yellow);
color: var(--background);
}