-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdark.css
More file actions
executable file
·43 lines (40 loc) · 1.36 KB
/
Copy pathdark.css
File metadata and controls
executable file
·43 lines (40 loc) · 1.36 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
/**
* SPDX-FileNotice: Part of erroronline1/caro a quality management software.
* SPDX-FileCopyrightText: © 2023 error on line 1 <dev@erroronline.one>
* SPDX-License-Identifier: AGPL-3.0-or-later
* 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);
}