|
1 | 1 | :root {
|
2 |
| - --background-1: #1b1b1b; |
3 |
| - --background-2: #252525; |
4 |
| - --background-3: #222222; |
5 |
| - --background-4: #3d3d3d; |
6 |
| - --background-5: #383838; |
7 |
| - --background-6: #575757; |
8 |
| - --text-1: #ffffff; |
9 |
| - --text-2: #dcdcdc; |
10 |
| - --text-3: #c3c3c3; |
11 |
| - --accent-primary: #50baf9; |
12 |
| - --accent-success: #3eb84f; |
13 |
| - --accent-warning: #b8893e; |
14 |
| - --accent-danger: #cf4945; |
15 |
| - --accent-donate: #db61a2; |
16 |
| - --accent-site-1: #307328; |
17 |
| - --accent-site-2: #296422; |
18 |
| - --accent-sounds-1: #451475; |
19 |
| - --accent-sounds-2: #39155e; |
20 |
| - --accent-sounds-3: #6a08a3; |
21 |
| - --accent-sounds-4: #d1a5e6; |
22 |
| - --nav: #91908f; |
23 |
| - --nav-hover: #b4b3b0; |
24 |
| - --nav-faded: #4d4c4c; |
25 |
| - --nav-faded-hover: #6e6e6e; |
26 |
| - --selection: #445a9599; |
27 |
| - --errors-background: #62190f; |
28 |
| - --errors-background-2: #471610; |
29 |
| - --errors-background-3: #3f140f; |
30 |
| - --errors-text: #ffffffcc; |
31 |
| - --invalid-text: #fd7951; |
32 |
| - --success-background-3: #143f0f; |
33 |
| - --water-background-3: #0d3266; |
34 |
| - --lava-background-3: #662e0d; |
35 |
| - --text-saturation: 60%; |
36 |
| - --text-lightness: 45%; |
37 |
| - --editor-variable: #9CDCFE; |
38 |
| - --editor-string: #CE9178; |
39 |
| - --editor-constant: #569CD6; |
40 |
| - --editor-number: #B5CEA8; |
41 |
| - --diff-added: #3fb950; |
42 |
| - --diff-modified: #d29922; |
43 |
| - --diff-removed: #f85149; |
44 |
| - --diff-renamed: #7d8590; |
45 |
| - --diff-line-added: rgba(46, 160, 67, 0.15); |
46 |
| - --diff-line-removed: rgba(248, 81, 73, 0.1); |
47 |
| - --diff-line-separation: rgba(56, 139, 253, 0.1); |
48 |
| - --diff-numbers-added: rgba(63, 185, 80, 0.3); |
49 |
| - --diff-numbers-removed: rgba(248, 81, 73, 0.3); |
50 |
| - --diff-numbers-separation: rgba(56, 139, 253, 0.4); |
51 |
| -} |
52 |
| - |
53 |
| -:root[data-theme=light] { |
54 | 2 | --background-1: #fafafa;
|
55 | 3 | --background-2: #e2e2e2;
|
56 | 4 | --background-3: #d4d3d3;
|
|
102 | 50 | --diff-numbers-separation: rgba(84, 174, 255, 0.4);
|
103 | 51 | }
|
104 | 52 |
|
105 |
| -@media (prefers-color-scheme: light) { |
106 |
| - :root[data-theme=system] { |
107 |
| - --background-1: #fafafa; |
108 |
| - --background-2: #e2e2e2; |
109 |
| - --background-3: #d4d3d3; |
110 |
| - --background-4: #b8b8b8; |
111 |
| - --background-5: #bdbdbd; |
112 |
| - --background-6: #cecece; |
113 |
| - --text-1: #000000; |
114 |
| - --text-2: #2f2f2f; |
115 |
| - --text-3: #494949; |
116 |
| - --accent-primary: #088cdb; |
117 |
| - --accent-success: #1a7f37; |
118 |
| - --accent-warning: #a36f1c; |
119 |
| - --accent-danger: #bd2f2a; |
120 |
| - --accent-donate: #bf3989; |
121 |
| - --accent-site-1: #2da44e; |
122 |
| - --accent-site-2: #2c974b; |
123 |
| - --accent-sounds-1: #b481e7; |
124 |
| - --accent-sounds-2: #c18df5; |
125 |
| - --accent-sounds-3: #af72d3; |
126 |
| - --accent-sounds-4: #efd3fd; |
127 |
| - --nav: #343a40; |
128 |
| - --nav-hover: #565d64; |
129 |
| - --nav-faded: #9fa2a7; |
130 |
| - --nav-faded-hover: #bcbfc3; |
131 |
| - --selection: #6786dd99; |
132 |
| - --errors-background: #f66653; |
133 |
| - --errors-background-2: #c13b29; |
134 |
| - --errors-background-3: #d8503e; |
135 |
| - --errors-text: #000000cc; |
136 |
| - --invalid-text: #a32600; |
137 |
| - --success-background-3: #6cd83e; |
138 |
| - --water-background-3: #3e79d8; |
139 |
| - --lava-background-3: #d86f3e; |
140 |
| - --text-saturation: 100%; |
141 |
| - --text-lightness: 30%; |
142 |
| - --editor-variable: #0451A5; |
143 |
| - --editor-string: #A31515; |
144 |
| - --editor-constant: #0000FF; |
145 |
| - --editor-number: #098658; |
146 |
| - --diff-added: #1a7f37; |
147 |
| - --diff-modified: #9a6700; |
148 |
| - --diff-removed: #d1242f; |
149 |
| - --diff-renamed: #656d76; |
150 |
| - --diff-line-added: rgb(230, 255, 236); |
151 |
| - --diff-line-removed: rgb(255, 235, 233); |
152 |
| - --diff-line-separation: rgb(221, 244, 255); |
153 |
| - --diff-numbers-added: rgb(204, 255, 216); |
154 |
| - --diff-numbers-removed: rgb(255, 215, 213); |
155 |
| - --diff-numbers-separation: rgba(84, 174, 255, 0.4); |
156 |
| - } |
| 53 | +:root.dark { |
| 54 | + --background-1: #1b1b1b; |
| 55 | + --background-2: #252525; |
| 56 | + --background-3: #222222; |
| 57 | + --background-4: #3d3d3d; |
| 58 | + --background-5: #383838; |
| 59 | + --background-6: #575757; |
| 60 | + --text-1: #ffffff; |
| 61 | + --text-2: #dcdcdc; |
| 62 | + --text-3: #c3c3c3; |
| 63 | + --accent-primary: #50baf9; |
| 64 | + --accent-success: #3eb84f; |
| 65 | + --accent-warning: #b8893e; |
| 66 | + --accent-danger: #cf4945; |
| 67 | + --accent-donate: #db61a2; |
| 68 | + --accent-site-1: #307328; |
| 69 | + --accent-site-2: #296422; |
| 70 | + --accent-sounds-1: #451475; |
| 71 | + --accent-sounds-2: #39155e; |
| 72 | + --accent-sounds-3: #6a08a3; |
| 73 | + --accent-sounds-4: #d1a5e6; |
| 74 | + --nav: #91908f; |
| 75 | + --nav-hover: #b4b3b0; |
| 76 | + --nav-faded: #4d4c4c; |
| 77 | + --nav-faded-hover: #6e6e6e; |
| 78 | + --selection: #445a9599; |
| 79 | + --errors-background: #62190f; |
| 80 | + --errors-background-2: #471610; |
| 81 | + --errors-background-3: #3f140f; |
| 82 | + --errors-text: #ffffffcc; |
| 83 | + --invalid-text: #fd7951; |
| 84 | + --success-background-3: #143f0f; |
| 85 | + --water-background-3: #0d3266; |
| 86 | + --lava-background-3: #662e0d; |
| 87 | + --text-saturation: 60%; |
| 88 | + --text-lightness: 45%; |
| 89 | + --editor-variable: #9CDCFE; |
| 90 | + --editor-string: #CE9178; |
| 91 | + --editor-constant: #569CD6; |
| 92 | + --editor-number: #B5CEA8; |
| 93 | + --diff-added: #3fb950; |
| 94 | + --diff-modified: #d29922; |
| 95 | + --diff-removed: #f85149; |
| 96 | + --diff-renamed: #7d8590; |
| 97 | + --diff-line-added: rgba(46, 160, 67, 0.15); |
| 98 | + --diff-line-removed: rgba(248, 81, 73, 0.1); |
| 99 | + --diff-line-separation: rgba(56, 139, 253, 0.1); |
| 100 | + --diff-numbers-added: rgba(63, 185, 80, 0.3); |
| 101 | + --diff-numbers-removed: rgba(248, 81, 73, 0.3); |
| 102 | + --diff-numbers-separation: rgba(56, 139, 253, 0.4); |
157 | 103 | }
|
158 | 104 |
|
159 | 105 | ::selection {
|
|
0 commit comments