jekyll-theme-doodle 5.2.2 → 5.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_sass/minima/_base.scss +23 -3
- data/_sass/minima/_blockquotes.scss +63 -28
- data/_sass/minima/_fonts.scss +20 -20
- data/_sass/minima/_footer.scss +81 -81
- data/_sass/minima/_header.scss +30 -30
- data/_sass/minima/_navigation-bar.scss +133 -133
- data/_sass/minima/_pinned-post.scss +100 -100
- data/_sass/minima/_posts.scss +122 -122
- data/_sass/minima/_theme-selector.scss +91 -91
- data/_sass/minima/_theme.scss +588 -588
- data/_sass/minima/_toc.scss +45 -45
- data/assets/theme-assets/theme-icons/moon.svg +2 -2
- data/assets/theme-assets/theme-icons/sun.svg +17 -17
- data/assets/theme-assets/theme-icons/warning.svg +1 -0
- data/assets/theme-assets/theme-images/box-filled-2.svg +9 -9
- data/assets/theme-assets/theme-images/box-filled.svg +18 -18
- metadata +4 -7
data/_sass/minima/_theme.scss
CHANGED
@@ -1,588 +1,588 @@
|
|
1
|
-
.light-mode {
|
2
|
-
--dark-pink: #f0b3e7;
|
3
|
-
--dark-green: #b1d18a;
|
4
|
-
--dark-yellow: #dbc66;
|
5
|
-
--dark-blue: #aac7ff;
|
6
|
-
--dark-cyan: #81d5cd;
|
7
|
-
}
|
8
|
-
.dark-mode {
|
9
|
-
--light-pink: #f0b3e7;
|
10
|
-
--light-greeN: #b1d18a;
|
11
|
-
--light-yellw: #dbc66;
|
12
|
-
--light-blue: #aac7ff;
|
13
|
-
--light-cyan: #81d5cd;
|
14
|
-
}
|
15
|
-
#pink-theme {
|
16
|
-
background-color: #f0b3e7;
|
17
|
-
}
|
18
|
-
#green-theme {
|
19
|
-
background-color: #b1d18a;
|
20
|
-
}
|
21
|
-
#yellow-theme {
|
22
|
-
background-color: #dbc66e;
|
23
|
-
}
|
24
|
-
#blue-theme {
|
25
|
-
background-color: #aac7ff;
|
26
|
-
}
|
27
|
-
#cyan-theme {
|
28
|
-
background-color: #81d5cd;
|
29
|
-
}
|
30
|
-
.dark-yellow {
|
31
|
-
--md-sys-color-primary: rgb(219 198 110);
|
32
|
-
--md-sys-color-surface-tint: rgb(219 198 110);
|
33
|
-
--md-sys-color-on-primary: rgb(58 48 0);
|
34
|
-
--md-sys-color-primary-container: rgb(83 70 0);
|
35
|
-
--md-sys-color-on-primary-container: rgb(248 226 135);
|
36
|
-
--md-sys-color-secondary: rgb(209 198 161);
|
37
|
-
--md-sys-color-on-secondary: rgb(54 48 22);
|
38
|
-
--md-sys-color-secondary-container: rgb(78 71 42);
|
39
|
-
--md-sys-color-on-secondary-container: rgb(238 226 188);
|
40
|
-
--md-sys-color-tertiary: rgb(169 208 179);
|
41
|
-
--md-sys-color-on-tertiary: rgb(20 55 35);
|
42
|
-
--md-sys-color-tertiary-container: rgb(44 78 56);
|
43
|
-
--md-sys-color-on-tertiary-container: rgb(197 236 206);
|
44
|
-
--md-sys-color-error: rgb(255 180 171);
|
45
|
-
--md-sys-color-on-error: rgb(105 0 5);
|
46
|
-
--md-sys-color-error-container: rgb(147 0 10);
|
47
|
-
--md-sys-color-on-error-container: rgb(255 218 214);
|
48
|
-
--md-sys-color-background: rgb(21 19 11);
|
49
|
-
--md-sys-color-on-background: rgb(232 226 212);
|
50
|
-
--md-sys-color-surface: rgb(21 19 11);
|
51
|
-
--md-sys-color-on-surface: #e8e2d4;
|
52
|
-
--on-surface-filter: invert(91%) sepia(15%) saturate(159%) hue-rotate(4deg)
|
53
|
-
brightness(99%) contrast(89%);
|
54
|
-
--md-sys-color-surface-variant: #4b4739;
|
55
|
-
--md-sys-color-on-surface-variant: rgb(205 198 180);
|
56
|
-
--md-sys-color-outline: #969080;
|
57
|
-
--outline-filter: brightness(0) saturate(100%) invert(64%) sepia(15%)
|
58
|
-
saturate(306%) hue-rotate(6deg) brightness(87%) contrast(85%);
|
59
|
-
--md-sys-color-outline-variant: rgb(75 71 57);
|
60
|
-
--md-sys-color-shadow: rgb(0 0 0);
|
61
|
-
--md-sys-color-scrim: rgb(0 0 0);
|
62
|
-
--md-sys-color-inverse-surface: rgb(232 226 212);
|
63
|
-
--md-sys-color-inverse-on-surface: rgb(51 48 39);
|
64
|
-
--md-sys-color-inverse-primary: rgb(109 94 15);
|
65
|
-
--md-sys-color-primary-fixed: rgb(248 226 135);
|
66
|
-
--md-sys-color-on-primary-fixed: rgb(34 27 0);
|
67
|
-
--md-sys-color-primary-fixed-dim: rgb(219 198 110);
|
68
|
-
--md-sys-color-on-primary-fixed-variant: rgb(83 70 0);
|
69
|
-
--md-sys-color-secondary-fixed: rgb(238 226 188);
|
70
|
-
--md-sys-color-on-secondary-fixed: rgb(33 27 4);
|
71
|
-
--md-sys-color-secondary-fixed-dim: rgb(209 198 161);
|
72
|
-
--md-sys-color-on-secondary-fixed-variant: rgb(78 71 42);
|
73
|
-
--md-sys-color-tertiary-fixed: rgb(197 236 206);
|
74
|
-
--md-sys-color-on-tertiary-fixed: rgb(0 33 15);
|
75
|
-
--md-sys-color-tertiary-fixed-dim: rgb(169 208 179);
|
76
|
-
--md-sys-color-on-tertiary-fixed-variant: rgb(44 78 56);
|
77
|
-
--md-sys-color-surface-dim: rgb(21 19 11);
|
78
|
-
--md-sys-color-surface-bright: rgb(60 57 48);
|
79
|
-
--md-sys-color-surface-container-lowest: rgb(16 14 7);
|
80
|
-
--md-sys-color-surface-container-low: rgb(30 27 19);
|
81
|
-
--md-sys-color-surface-container: rgb(34 32 23);
|
82
|
-
--md-sys-color-surface-container-high: rgb(45 42 33);
|
83
|
-
--md-sys-color-surface-container-highest: rgb(56 53 43);
|
84
|
-
}
|
85
|
-
.dark-blue {
|
86
|
-
--md-sys-color-primary: rgb(170 199 255);
|
87
|
-
--md-sys-color-surface-tint: rgb(170 199 255);
|
88
|
-
--md-sys-color-on-primary: rgb(10 48 95);
|
89
|
-
--md-sys-color-primary-container: rgb(40 71 119);
|
90
|
-
--md-sys-color-on-primary-container: rgb(214 227 255);
|
91
|
-
--md-sys-color-secondary: rgb(190 198 220);
|
92
|
-
--md-sys-color-on-secondary: rgb(40 49 65);
|
93
|
-
--md-sys-color-secondary-container: rgb(62 71 89);
|
94
|
-
--md-sys-color-on-secondary-container: rgb(218 226 249);
|
95
|
-
--md-sys-color-tertiary: rgb(221 188 224);
|
96
|
-
--md-sys-color-on-tertiary: rgb(63 40 68);
|
97
|
-
--md-sys-color-tertiary-container: rgb(87 62 92);
|
98
|
-
--md-sys-color-on-tertiary-container: rgb(250 216 253);
|
99
|
-
--md-sys-color-error: rgb(255 180 171);
|
100
|
-
--md-sys-color-on-error: rgb(105 0 5);
|
101
|
-
--md-sys-color-error-container: rgb(147 0 10);
|
102
|
-
--md-sys-color-on-error-container: rgb(255 218 214);
|
103
|
-
--md-sys-color-background: rgb(17 19 24);
|
104
|
-
--md-sys-color-on-background: rgb(226 226 233);
|
105
|
-
--md-sys-color-surface: rgb(17 19 24);
|
106
|
-
--md-sys-color-on-surface: #e2e2e9;
|
107
|
-
--on-surface-filter: invert(100%) sepia(5%) saturate(7075%) hue-rotate(180deg)
|
108
|
-
brightness(96%) contrast(89%);
|
109
|
-
--md-sys-color-surface-variant: rgb(68 71 78);
|
110
|
-
--md-sys-color-on-surface-variant: rgb(196 198 208);
|
111
|
-
--md-sys-color-outline: #8e9099;
|
112
|
-
--outline-filter: brightness(0) saturate(100%) invert(61%) sepia(5%)
|
113
|
-
saturate(424%) hue-rotate(192deg) brightness(92%) contrast(92%);
|
114
|
-
--md-sys-color-outline-variant: #44474e;
|
115
|
-
--md-sys-color-shadow: rgb(0 0 0);
|
116
|
-
--md-sys-color-scrim: rgb(0 0 0);
|
117
|
-
--md-sys-color-inverse-surface: rgb(226 226 233);
|
118
|
-
--md-sys-color-inverse-on-surface: rgb(46 48 54);
|
119
|
-
--md-sys-color-inverse-primary: rgb(65 95 145);
|
120
|
-
--md-sys-color-primary-fixed: rgb(214 227 255);
|
121
|
-
--md-sys-color-on-primary-fixed: rgb(0 27 62);
|
122
|
-
--md-sys-color-primary-fixed-dim: rgb(170 199 255);
|
123
|
-
--md-sys-color-on-primary-fixed-variant: rgb(40 71 119);
|
124
|
-
--md-sys-color-secondary-fixed: rgb(218 226 249);
|
125
|
-
--md-sys-color-on-secondary-fixed: rgb(19 28 43);
|
126
|
-
--md-sys-color-secondary-fixed-dim: rgb(190 198 220);
|
127
|
-
--md-sys-color-on-secondary-fixed-variant: rgb(62 71 89);
|
128
|
-
--md-sys-color-tertiary-fixed: rgb(250 216 253);
|
129
|
-
--md-sys-color-on-tertiary-fixed: rgb(40 19 46);
|
130
|
-
--md-sys-color-tertiary-fixed-dim: rgb(221 188 224);
|
131
|
-
--md-sys-color-on-tertiary-fixed-variant: rgb(87 62 92);
|
132
|
-
--md-sys-color-surface-dim: rgb(17 19 24);
|
133
|
-
--md-sys-color-surface-bright: rgb(55 57 62);
|
134
|
-
--md-sys-color-surface-container-lowest: rgb(12 14 19);
|
135
|
-
--md-sys-color-surface-container-low: rgb(25 28 32);
|
136
|
-
--md-sys-color-surface-container: rgb(29 32 36);
|
137
|
-
--md-sys-color-surface-container-high: rgb(40 42 47);
|
138
|
-
--md-sys-color-surface-container-highest: rgb(51 53 58);
|
139
|
-
}
|
140
|
-
.dark-cyan {
|
141
|
-
--md-sys-color-primary: rgb(129 213 205);
|
142
|
-
--md-sys-color-surface-tint: rgb(129 213 205);
|
143
|
-
--md-sys-color-on-primary: rgb(0 55 52);
|
144
|
-
--md-sys-color-primary-container: rgb(0 80 75);
|
145
|
-
--md-sys-color-on-primary-container: rgb(157 242 233);
|
146
|
-
--md-sys-color-secondary: rgb(176 204 200);
|
147
|
-
--md-sys-color-on-secondary: rgb(28 53 50);
|
148
|
-
--md-sys-color-secondary-container: rgb(50 75 73);
|
149
|
-
--md-sys-color-on-secondary-container: rgb(204 232 228);
|
150
|
-
--md-sys-color-tertiary: rgb(175 201 231);
|
151
|
-
--md-sys-color-on-tertiary: rgb(24 50 74);
|
152
|
-
--md-sys-color-tertiary-container: rgb(48 73 98);
|
153
|
-
--md-sys-color-on-tertiary-container: rgb(207 229 255);
|
154
|
-
--md-sys-color-error: rgb(255 180 171);
|
155
|
-
--md-sys-color-on-error: rgb(105 0 5);
|
156
|
-
--md-sys-color-error-container: rgb(147 0 10);
|
157
|
-
--md-sys-color-on-error-container: rgb(255 218 214);
|
158
|
-
--md-sys-color-background: rgb(14 21 20);
|
159
|
-
--md-sys-color-on-background: rgb(221 228 226);
|
160
|
-
--md-sys-color-surface: rgb(14 21 20);
|
161
|
-
--md-sys-color-on-surface: #dde4e2;
|
162
|
-
--on-surface-filter: invert(91%) sepia(6%) saturate(145%) hue-rotate(112deg)
|
163
|
-
brightness(102%) contrast(89%);
|
164
|
-
--md-sys-color-surface-variant: rgb(63 73 71);
|
165
|
-
--md-sys-color-on-surface-variant: rgb(190 201 198);
|
166
|
-
--md-sys-color-outline: #899391;
|
167
|
-
--outline-filter: brightness(0) saturate(100%) invert(66%) sepia(8%)
|
168
|
-
saturate(263%) hue-rotate(118deg) brightness(85%) contrast(87%);
|
169
|
-
--md-sys-color-outline-variant: rgb(63 73 71);
|
170
|
-
--md-sys-color-shadow: rgb(0 0 0);
|
171
|
-
--md-sys-color-scrim: rgb(0 0 0);
|
172
|
-
--md-sys-color-inverse-surface: rgb(221 228 226);
|
173
|
-
--md-sys-color-inverse-on-surface: rgb(43 50 49);
|
174
|
-
--md-sys-color-inverse-primary: rgb(0 106 100);
|
175
|
-
--md-sys-color-primary-fixed: rgb(157 242 233);
|
176
|
-
--md-sys-color-on-primary-fixed: rgb(0 32 30);
|
177
|
-
--md-sys-color-primary-fixed-dim: rgb(129 213 205);
|
178
|
-
--md-sys-color-on-primary-fixed-variant: rgb(0 80 75);
|
179
|
-
--md-sys-color-secondary-fixed: rgb(204 232 228);
|
180
|
-
--md-sys-color-on-secondary-fixed: rgb(5 31 29);
|
181
|
-
--md-sys-color-secondary-fixed-dim: rgb(176 204 200);
|
182
|
-
--md-sys-color-on-secondary-fixed-variant: rgb(50 75 73);
|
183
|
-
--md-sys-color-tertiary-fixed: rgb(207 229 255);
|
184
|
-
--md-sys-color-on-tertiary-fixed: rgb(0 29 51);
|
185
|
-
--md-sys-color-tertiary-fixed-dim: rgb(175 201 231);
|
186
|
-
--md-sys-color-on-tertiary-fixed-variant: rgb(48 73 98);
|
187
|
-
--md-sys-color-surface-dim: rgb(14 21 20);
|
188
|
-
--md-sys-color-surface-bright: rgb(52 58 57);
|
189
|
-
--md-sys-color-surface-container-lowest: rgb(9 15 15);
|
190
|
-
--md-sys-color-surface-container-low: rgb(22 29 28);
|
191
|
-
--md-sys-color-surface-container: rgb(26 33 32);
|
192
|
-
--md-sys-color-surface-container-high: rgb(37 43 42);
|
193
|
-
--md-sys-color-surface-container-highest: rgb(47 54 53);
|
194
|
-
}
|
195
|
-
.dark-green {
|
196
|
-
--md-sys-color-primary: rgb(177 209 138);
|
197
|
-
--md-sys-color-surface-tint: rgb(177 209 138);
|
198
|
-
--md-sys-color-on-primary: rgb(31 55 1);
|
199
|
-
--md-sys-color-primary-container: rgb(53 78 22);
|
200
|
-
|
201
|
-
--md-sys-color-on-primary-container: rgb(205 237 163);
|
202
|
-
--md-sys-color-secondary: rgb(191 203 173);
|
203
|
-
--md-sys-color-on-secondary: rgb(42 51 30);
|
204
|
-
--md-sys-color-secondary-container: rgb(64 74 51);
|
205
|
-
--md-sys-color-on-secondary-container: rgb(220 231 200);
|
206
|
-
--md-sys-color-tertiary: rgb(160 208 203);
|
207
|
-
--md-sys-color-on-tertiary: rgb(0 55 53);
|
208
|
-
--md-sys-color-tertiary-container: rgb(31 78 75);
|
209
|
-
--md-sys-color-on-tertiary-container: rgb(188 236 231);
|
210
|
-
--md-sys-color-error: rgb(255 180 171);
|
211
|
-
--md-sys-color-on-error: rgb(105 0 5);
|
212
|
-
--md-sys-color-error-container: rgb(147 0 10);
|
213
|
-
--md-sys-color-on-error-container: rgb(255 218 214);
|
214
|
-
--md-sys-color-background: rgb(18 20 14);
|
215
|
-
--md-sys-color-on-background: rgb(226 227 216);
|
216
|
-
--md-sys-color-surface: rgb(18 20 14);
|
217
|
-
--md-sys-color-on-surface: #e2e3d8;
|
218
|
-
--on-surface-filter: invert(85%) sepia(3%) saturate(447%) hue-rotate(26deg)
|
219
|
-
brightness(109%) contrast(89%);
|
220
|
-
--md-sys-color-surface-variant: rgb(68 72 61);
|
221
|
-
--md-sys-color-on-surface-variant: rgb(197 200 186);
|
222
|
-
--md-sys-color-outline: #8f9285;
|
223
|
-
--outline-filter: brightness(0) saturate(100%) invert(61%) sepia(6%)
|
224
|
-
saturate(487%) hue-rotate(33deg) brightness(92%) contrast(91%);
|
225
|
-
--md-sys-color-outline-variant: rgb(68 72 61);
|
226
|
-
--md-sys-color-shadow: rgb(0 0 0);
|
227
|
-
--md-sys-color-scrim: rgb(0 0 0);
|
228
|
-
--md-sys-color-inverse-surface: rgb(226 227 216);
|
229
|
-
--md-sys-color-inverse-on-surface: rgb(47 49 42);
|
230
|
-
--md-sys-color-inverse-primary: rgb(76 102 43);
|
231
|
-
--md-sys-color-primary-fixed: rgb(205 237 163);
|
232
|
-
--md-sys-color-on-primary-fixed: rgb(16 32 0);
|
233
|
-
--md-sys-color-primary-fixed-dim: rgb(177 209 138);
|
234
|
-
--md-sys-color-on-primary-fixed-variant: rgb(53 78 22);
|
235
|
-
--md-sys-color-secondary-fixed: rgb(220 231 200);
|
236
|
-
--md-sys-color-on-secondary-fixed: rgb(21 30 11);
|
237
|
-
--md-sys-color-secondary-fixed-dim: rgb(191 203 173);
|
238
|
-
--md-sys-color-on-secondary-fixed-variant: rgb(64 74 51);
|
239
|
-
--md-sys-color-tertiary-fixed: rgb(188 236 231);
|
240
|
-
--md-sys-color-on-tertiary-fixed: rgb(0 32 30);
|
241
|
-
--md-sys-color-tertiary-fixed-dim: rgb(160 208 203);
|
242
|
-
--md-sys-color-on-tertiary-fixed-variant: rgb(31 78 75);
|
243
|
-
--md-sys-color-surface-dim: rgb(18 20 14);
|
244
|
-
--md-sys-color-surface-bright: rgb(56 58 50);
|
245
|
-
--md-sys-color-surface-container-lowest: rgb(12 15 9);
|
246
|
-
--md-sys-color-surface-container-low: rgb(26 28 22);
|
247
|
-
--md-sys-color-surface-container: rgb(30 32 26);
|
248
|
-
--md-sys-color-surface-container-high: rgb(40 43 36);
|
249
|
-
--md-sys-color-surface-container-highest: rgb(51 54 46);
|
250
|
-
}
|
251
|
-
.dark-pink {
|
252
|
-
--filter-primary-container: brightness(0) saturate(100%) invert(33%)
|
253
|
-
sepia(34%) saturate(598%) hue-rotate(291deg) brightness(93%) contrast(94%);
|
254
|
-
--md-sys-color-primary: rgb(240 179 231);
|
255
|
-
--md-sys-color-surface-tint: rgb(240 179 231);
|
256
|
-
--md-sys-color-on-primary: rgb(75 31 74);
|
257
|
-
--md-sys-color-primary-container: rgb(101 54 98);
|
258
|
-
--md-sys-color-on-primary-container: rgb(255 215 247);
|
259
|
-
--md-sys-color-secondary: rgb(218 191 211);
|
260
|
-
--md-sys-color-on-secondary: rgb(61 43 58);
|
261
|
-
--md-sys-color-secondary-container: rgb(84 65 81);
|
262
|
-
--md-sys-color-on-secondary-container: rgb(247 218 239);
|
263
|
-
--md-sys-color-tertiary: rgb(246 184 168);
|
264
|
-
--md-sys-color-on-tertiary: rgb(76 38 27);
|
265
|
-
--md-sys-color-tertiary-container: rgb(102 59 48);
|
266
|
-
--md-sys-color-on-tertiary-container: rgb(255 219 209);
|
267
|
-
--md-sys-color-error: rgb(255 180 171);
|
268
|
-
--md-sys-color-on-error: rgb(105 0 5);
|
269
|
-
--md-sys-color-error-container: rgb(147 0 10);
|
270
|
-
--md-sys-color-on-error-container: rgb(255 218 214);
|
271
|
-
--md-sys-color-background: rgb(23 18 22);
|
272
|
-
--md-sys-color-on-background: rgb(235 223 230);
|
273
|
-
--md-sys-color-surface: rgb(23 18 22);
|
274
|
-
--md-sys-color-on-surface: #ebdfe6;
|
275
|
-
--on-surface-filter: invert(97%) sepia(3%) saturate(932%) hue-rotate(287deg)
|
276
|
-
brightness(92%) contrast(100%);
|
277
|
-
--md-sys-color-surface-variant: rgb(78 68 75);
|
278
|
-
--md-sys-color-on-surface-variant: rgb(209 195 203);
|
279
|
-
--md-sys-color-outline: #9a8d95;
|
280
|
-
--outline-filter: brightness(0) saturate(100%) invert(61%) sepia(13%)
|
281
|
-
saturate(228%) hue-rotate(270deg) brightness(93%) contrast(82%);
|
282
|
-
--md-sys-color-outline-variant: rgb(78 68 75);
|
283
|
-
--md-sys-color-shadow: rgb(0 0 0);
|
284
|
-
--md-sys-color-scrim: rgb(0 0 0);
|
285
|
-
--md-sys-color-inverse-surface: rgb(235 223 230);
|
286
|
-
--md-sys-color-inverse-on-surface: #352e33;
|
287
|
-
|
288
|
-
--md-sys-color-inverse-primary: rgb(127 77 123);
|
289
|
-
--md-sys-color-primary-fixed: rgb(255 215 247);
|
290
|
-
--md-sys-color-on-primary-fixed: rgb(51 8 51);
|
291
|
-
--md-sys-color-primary-fixed-dim: rgb(240 179 231);
|
292
|
-
--md-sys-color-on-primary-fixed-variant: rgb(101 54 98);
|
293
|
-
--md-sys-color-secondary-fixed: rgb(247 218 239);
|
294
|
-
--md-sys-color-on-secondary-fixed: rgb(38 22 37);
|
295
|
-
--md-sys-color-secondary-fixed-dim: rgb(218 191 211);
|
296
|
-
--md-sys-color-on-secondary-fixed-variant: rgb(84 65 81);
|
297
|
-
--md-sys-color-tertiary-fixed: rgb(255 219 209);
|
298
|
-
--md-sys-color-on-tertiary-fixed: rgb(50 18 9);
|
299
|
-
--md-sys-color-tertiary-fixed-dim: rgb(246 184 168);
|
300
|
-
--md-sys-color-on-tertiary-fixed-variant: rgb(102 59 48);
|
301
|
-
--md-sys-color-surface-dim: rgb(23 18 22);
|
302
|
-
--md-sys-color-surface-bright: rgb(62 55 60);
|
303
|
-
--md-sys-color-surface-container-lowest: rgb(18 13 17);
|
304
|
-
--md-sys-color-surface-container-low: rgb(32 26 30);
|
305
|
-
--md-sys-color-surface-container: rgb(36 30 34);
|
306
|
-
--md-sys-color-surface-container-high: #2f282d;
|
307
|
-
--md-sys-color-surface-container-highest: rgb(58 51 56);
|
308
|
-
}
|
309
|
-
.light-pink {
|
310
|
-
--light-filter: invert(93%) hue-rotate(180deg);
|
311
|
-
--md-sys-color-primary: rgb(127 77 122);
|
312
|
-
--md-sys-color-surface-tint: rgb(127 77 122);
|
313
|
-
--md-sys-color-on-primary: rgb(255 255 255);
|
314
|
-
--md-sys-color-primary-container: rgb(255 215 246);
|
315
|
-
--md-sys-color-on-primary-container: rgb(51 8 51);
|
316
|
-
--md-sys-color-secondary: rgb(109 88 105);
|
317
|
-
--md-sys-color-on-secondary: rgb(255 255 255);
|
318
|
-
--md-sys-color-secondary-container: rgb(247 218 239);
|
319
|
-
--md-sys-color-on-secondary-container: rgb(38 22 37);
|
320
|
-
--md-sys-color-tertiary: rgb(130 82 70);
|
321
|
-
--md-sys-color-on-tertiary: rgb(255 255 255);
|
322
|
-
--md-sys-color-tertiary-container: rgb(255 219 209);
|
323
|
-
--md-sys-color-on-tertiary-container: rgb(50 18 9);
|
324
|
-
--md-sys-color-error: rgb(186 26 26);
|
325
|
-
--md-sys-color-on-error: rgb(255 255 255);
|
326
|
-
--md-sys-color-error-container: rgb(255 218 214);
|
327
|
-
--md-sys-color-on-error-container: rgb(65 0 2);
|
328
|
-
--md-sys-color-background: rgb(255 247 249);
|
329
|
-
--md-sys-color-on-background: rgb(32 26 30);
|
330
|
-
--md-sys-color-surface: rgb(255 247 249);
|
331
|
-
--md-sys-color-on-surface: #201a1e;
|
332
|
-
--on-surface-filter: invert(8%) sepia(2%) saturate(3908%) hue-rotate(267deg)
|
333
|
-
brightness(94%) contrast(93%);
|
334
|
-
--md-sys-color-surface-variant: rgb(238 222 231);
|
335
|
-
--md-sys-color-on-surface-variant: rgb(78 68 75);
|
336
|
-
--md-sys-color-outline: rgb(127 116 124);
|
337
|
-
--md-sys-color-outline-variant: rgb(209 195 203);
|
338
|
-
--md-sys-color-shadow: rgb(0 0 0);
|
339
|
-
--md-sys-color-scrim: rgb(0 0 0);
|
340
|
-
--md-sys-color-inverse-surface: rgb(53 46 51);
|
341
|
-
--md-sys-color-inverse-on-surface: rgb(250 237 244);
|
342
|
-
--md-sys-color-inverse-primary: rgb(240 179 231);
|
343
|
-
--md-sys-color-primary-fixed: rgb(255 215 246);
|
344
|
-
--md-sys-color-on-primary-fixed: rgb(51 8 51);
|
345
|
-
--md-sys-color-primary-fixed-dim: rgb(240 179 231);
|
346
|
-
--md-sys-color-on-primary-fixed-variant: rgb(101 54 97);
|
347
|
-
--md-sys-color-secondary-fixed: rgb(247 218 239);
|
348
|
-
--md-sys-color-on-secondary-fixed: rgb(38 22 37);
|
349
|
-
--md-sys-color-secondary-fixed-dim: rgb(218 191 211);
|
350
|
-
--md-sys-color-on-secondary-fixed-variant: rgb(84 65 81);
|
351
|
-
--md-sys-color-tertiary-fixed: rgb(255 219 209);
|
352
|
-
--md-sys-color-on-tertiary-fixed: rgb(50 18 9);
|
353
|
-
--md-sys-color-tertiary-fixed-dim: rgb(246 184 168);
|
354
|
-
--md-sys-color-on-tertiary-fixed-variant: rgb(102 59 48);
|
355
|
-
--md-sys-color-surface-dim: rgb(227 215 221);
|
356
|
-
--md-sys-color-surface-bright: rgb(255 247 249);
|
357
|
-
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
358
|
-
--md-sys-color-surface-container-low: rgb(253 240 247);
|
359
|
-
--md-sys-color-surface-container: rgb(247 235 241);
|
360
|
-
--md-sys-color-surface-container-high: rgb(241 229 235);
|
361
|
-
--md-sys-color-surface-container-highest: rgb(235 223 230);
|
362
|
-
--outline-filter: brightness(0) saturate(100%) invert(61%) sepia(13%)
|
363
|
-
saturate(228%) hue-rotate(270deg) brightness(93%) contrast(82%);
|
364
|
-
}
|
365
|
-
.light-green {
|
366
|
-
--light-filter: invert(93%) hue-rotate(180deg);
|
367
|
-
--md-sys-color-primary: rgb(75 102 44);
|
368
|
-
--md-sys-color-surface-tint: rgb(75 102 44);
|
369
|
-
--md-sys-color-on-primary: rgb(255 255 255);
|
370
|
-
--md-sys-color-primary-container: rgb(204 237 164);
|
371
|
-
--md-sys-color-on-primary-container: rgb(15 32 0);
|
372
|
-
--md-sys-color-secondary: rgb(87 98 73);
|
373
|
-
--md-sys-color-on-secondary: rgb(255 255 255);
|
374
|
-
--md-sys-color-secondary-container: rgb(219 231 200);
|
375
|
-
--md-sys-color-on-secondary-container: rgb(21 30 11);
|
376
|
-
--md-sys-color-tertiary: rgb(56 102 99);
|
377
|
-
--md-sys-color-on-tertiary: rgb(255 255 255);
|
378
|
-
--md-sys-color-tertiary-container: rgb(187 236 232);
|
379
|
-
--md-sys-color-on-tertiary-container: rgb(0 32 30);
|
380
|
-
--md-sys-color-error: rgb(186 26 26);
|
381
|
-
--md-sys-color-on-error: rgb(255 255 255);
|
382
|
-
--md-sys-color-error-container: rgb(255 218 214);
|
383
|
-
--md-sys-color-on-error-container: rgb(65 0 2);
|
384
|
-
--md-sys-color-background: rgb(249 250 239);
|
385
|
-
--md-sys-color-on-background: rgb(26 28 22);
|
386
|
-
--md-sys-color-surface: rgb(249 250 239);
|
387
|
-
--md-sys-color-on-surface: #1a1c16;
|
388
|
-
--on-surface-filter: invert(9%) sepia(11%) saturate(780%) hue-rotate(39deg)
|
389
|
-
brightness(96%) contrast(95%);
|
390
|
-
--md-sys-color-surface-variant: rgb(225 228 213);
|
391
|
-
--md-sys-color-on-surface-variant: rgb(68 72 61);
|
392
|
-
--md-sys-color-outline: rgb(117 121 108);
|
393
|
-
--md-sys-color-outline-variant: rgb(197 200 186);
|
394
|
-
--md-sys-color-shadow: rgb(0 0 0);
|
395
|
-
--outline-filter: brightness(0) saturate(100%) invert(61%) sepia(6%)
|
396
|
-
saturate(487%) hue-rotate(33deg) brightness(92%) contrast(91%);
|
397
|
-
--md-sys-color-scrim: rgb(0 0 0);
|
398
|
-
--md-sys-color-inverse-surface: rgb(47 49 42);
|
399
|
-
--md-sys-color-inverse-on-surface: rgb(240 242 230);
|
400
|
-
--md-sys-color-inverse-primary: rgb(177 209 138);
|
401
|
-
--md-sys-color-primary-fixed: rgb(204 237 164);
|
402
|
-
--md-sys-color-on-primary-fixed: rgb(15 32 0);
|
403
|
-
--md-sys-color-primary-fixed-dim: rgb(177 209 138);
|
404
|
-
--md-sys-color-on-primary-fixed-variant: rgb(52 78 22);
|
405
|
-
--md-sys-color-secondary-fixed: rgb(219 231 200);
|
406
|
-
--md-sys-color-on-secondary-fixed: rgb(21 30 11);
|
407
|
-
--md-sys-color-secondary-fixed-dim: rgb(191 203 173);
|
408
|
-
--md-sys-color-on-secondary-fixed-variant: rgb(64 74 51);
|
409
|
-
--md-sys-color-tertiary-fixed: rgb(187 236 232);
|
410
|
-
--md-sys-color-on-tertiary-fixed: rgb(0 32 30);
|
411
|
-
--md-sys-color-tertiary-fixed-dim: rgb(160 208 204);
|
412
|
-
--md-sys-color-on-tertiary-fixed-variant: rgb(31 78 75);
|
413
|
-
--md-sys-color-surface-dim: rgb(218 219 208);
|
414
|
-
--md-sys-color-surface-bright: rgb(249 250 239);
|
415
|
-
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
416
|
-
--md-sys-color-surface-container-low: rgb(243 244 233);
|
417
|
-
--md-sys-color-surface-container: rgb(238 239 228);
|
418
|
-
--md-sys-color-surface-container-high: rgb(232 233 222);
|
419
|
-
--md-sys-color-surface-container-highest: rgb(226 227 216);
|
420
|
-
}
|
421
|
-
.light-yellow {
|
422
|
-
--light-filter: invert(93%) hue-rotate(180deg);
|
423
|
-
--md-sys-color-primary: rgb(109 94 15);
|
424
|
-
--md-sys-color-surface-tint: rgb(109 94 15);
|
425
|
-
--md-sys-color-on-primary: rgb(255 255 255);
|
426
|
-
--md-sys-color-primary-container: rgb(248 226 135);
|
427
|
-
--md-sys-color-on-primary-container: rgb(34 27 0);
|
428
|
-
--md-sys-color-secondary: rgb(102 94 64);
|
429
|
-
--md-sys-color-on-secondary: rgb(255 255 255);
|
430
|
-
--md-sys-color-secondary-container: rgb(238 226 188);
|
431
|
-
--md-sys-color-on-secondary-container: rgb(33 27 4);
|
432
|
-
--md-sys-color-tertiary: rgb(67 102 78);
|
433
|
-
--md-sys-color-on-tertiary: rgb(255 255 255);
|
434
|
-
--md-sys-color-tertiary-container: rgb(197 236 206);
|
435
|
-
--md-sys-color-on-tertiary-container: rgb(0 33 15);
|
436
|
-
--md-sys-color-error: rgb(186 26 26);
|
437
|
-
--md-sys-color-on-error: rgb(255 255 255);
|
438
|
-
--md-sys-color-error-container: rgb(255 218 214);
|
439
|
-
--md-sys-color-on-error-container: rgb(65 0 2);
|
440
|
-
--md-sys-color-background: rgb(255 249 238);
|
441
|
-
--md-sys-color-on-background: rgb(30 27 19);
|
442
|
-
--md-sys-color-surface: rgb(255 249 238);
|
443
|
-
--md-sys-color-on-surface: #1e1b13;
|
444
|
-
--on-surface-filter: invert(8%) sepia(20%) saturate(701%) hue-rotate(6deg)
|
445
|
-
brightness(101%) contrast(95%);
|
446
|
-
--md-sys-color-surface-variant: rgb(234 226 208);
|
447
|
-
--md-sys-color-on-surface-variant: rgb(75 71 57);
|
448
|
-
--md-sys-color-outline: rgb(124 119 103);
|
449
|
-
--md-sys-color-outline-variant: rgb(205 198 180);
|
450
|
-
--md-sys-color-shadow: rgb(0 0 0);
|
451
|
-
--md-sys-color-scrim: rgb(0 0 0);
|
452
|
-
--md-sys-color-inverse-surface: rgb(51 48 39);
|
453
|
-
--md-sys-color-inverse-on-surface: rgb(247 240 226);
|
454
|
-
--md-sys-color-inverse-primary: rgb(219 198 110);
|
455
|
-
--md-sys-color-primary-fixed: rgb(248 226 135);
|
456
|
-
--md-sys-color-on-primary-fixed: rgb(34 27 0);
|
457
|
-
--md-sys-color-primary-fixed-dim: rgb(219 198 110);
|
458
|
-
--md-sys-color-on-primary-fixed-variant: rgb(83 70 0);
|
459
|
-
--md-sys-color-secondary-fixed: rgb(238 226 188);
|
460
|
-
--md-sys-color-on-secondary-fixed: rgb(33 27 4);
|
461
|
-
--md-sys-color-secondary-fixed-dim: rgb(209 198 161);
|
462
|
-
--md-sys-color-on-secondary-fixed-variant: rgb(78 71 42);
|
463
|
-
--md-sys-color-tertiary-fixed: rgb(197 236 206);
|
464
|
-
--md-sys-color-on-tertiary-fixed: rgb(0 33 15);
|
465
|
-
--md-sys-color-tertiary-fixed-dim: rgb(169 208 179);
|
466
|
-
--md-sys-color-on-tertiary-fixed-variant: rgb(44 78 56);
|
467
|
-
--md-sys-color-surface-dim: rgb(224 217 204);
|
468
|
-
--md-sys-color-surface-bright: rgb(255 249 238);
|
469
|
-
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
470
|
-
--md-sys-color-surface-container-low: rgb(250 243 229);
|
471
|
-
--outline-filter: brightness(0) saturate(100%) invert(64%) sepia(15%)
|
472
|
-
saturate(306%) hue-rotate(6deg) brightness(87%) contrast(85%);
|
473
|
-
--md-sys-color-surface-container: rgb(244 237 223);
|
474
|
-
--md-sys-color-surface-container-high: rgb(238 232 218);
|
475
|
-
--md-sys-color-surface-container-highest: rgb(232 226 212);
|
476
|
-
}
|
477
|
-
.light-blue {
|
478
|
-
--light-filter: invert(93%) hue-rotate(180deg);
|
479
|
-
--md-sys-color-primary: rgb(65 95 145);
|
480
|
-
--md-sys-color-surface-tint: rgb(65 95 145);
|
481
|
-
--md-sys-color-on-primary: rgb(255 255 255);
|
482
|
-
--md-sys-color-primary-container: rgb(214 227 255);
|
483
|
-
--md-sys-color-on-primary-container: rgb(0 27 62);
|
484
|
-
--md-sys-color-secondary: rgb(86 94 113);
|
485
|
-
--md-sys-color-on-secondary: rgb(255 255 255);
|
486
|
-
--md-sys-color-secondary-container: rgb(218 226 249);
|
487
|
-
--md-sys-color-on-secondary-container: rgb(19 28 43);
|
488
|
-
--md-sys-color-tertiary: rgb(112 85 117);
|
489
|
-
--md-sys-color-on-tertiary: rgb(255 255 255);
|
490
|
-
--md-sys-color-tertiary-container: rgb(250 216 253);
|
491
|
-
--md-sys-color-on-tertiary-container: rgb(40 19 46);
|
492
|
-
--md-sys-color-error: rgb(186 26 26);
|
493
|
-
--md-sys-color-on-error: rgb(255 255 255);
|
494
|
-
--md-sys-color-error-container: rgb(255 218 214);
|
495
|
-
--md-sys-color-on-error-container: rgb(65 0 2);
|
496
|
-
--md-sys-color-background: rgb(249 249 255);
|
497
|
-
--md-sys-color-on-background: rgb(25 28 32);
|
498
|
-
--md-sys-color-surface: rgb(249 249 255);
|
499
|
-
--md-sys-color-on-surface: #191c20;
|
500
|
-
--on-surface-filter: invert(7%) sepia(25%) saturate(417%) hue-rotate(174deg)
|
501
|
-
brightness(93%) contrast(91%);
|
502
|
-
--md-sys-color-surface-variant: rgb(224 226 236);
|
503
|
-
--md-sys-color-on-surface-variant: rgb(68 71 78);
|
504
|
-
--md-sys-color-outline: rgb(116 119 127);
|
505
|
-
--md-sys-color-outline-variant: rgb(196 198 208);
|
506
|
-
--md-sys-color-shadow: rgb(0 0 0);
|
507
|
-
--md-sys-color-scrim: rgb(0 0 0);
|
508
|
-
--md-sys-color-inverse-surface: rgb(46 48 54);
|
509
|
-
--md-sys-color-inverse-on-surface: rgb(240 240 247);
|
510
|
-
--md-sys-color-inverse-primary: rgb(170 199 255);
|
511
|
-
--md-sys-color-primary-fixed: rgb(214 227 255);
|
512
|
-
--md-sys-color-on-primary-fixed: rgb(0 27 62);
|
513
|
-
--md-sys-color-primary-fixed-dim: rgb(170 199 255);
|
514
|
-
--md-sys-color-on-primary-fixed-variant: rgb(40 71 119);
|
515
|
-
--md-sys-color-secondary-fixed: rgb(218 226 249);
|
516
|
-
--md-sys-color-on-secondary-fixed: rgb(19 28 43);
|
517
|
-
--md-sys-color-secondary-fixed-dim: rgb(190 198 220);
|
518
|
-
--md-sys-color-on-secondary-fixed-variant: rgb(62 71 89);
|
519
|
-
--md-sys-color-tertiary-fixed: rgb(250 216 253);
|
520
|
-
--md-sys-color-on-tertiary-fixed: rgb(40 19 46);
|
521
|
-
--md-sys-color-tertiary-fixed-dim: rgb(221 188 224);
|
522
|
-
--md-sys-color-on-tertiary-fixed-variant: rgb(87 62 92);
|
523
|
-
--md-sys-color-surface-dim: rgb(217 217 224);
|
524
|
-
--md-sys-color-surface-bright: rgb(249 249 255);
|
525
|
-
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
526
|
-
--md-sys-color-surface-container-low: rgb(243 243 250);
|
527
|
-
--md-sys-color-surface-container: rgb(237 237 244);
|
528
|
-
--md-sys-color-surface-container-high: rgb(231 232 238);
|
529
|
-
--md-sys-color-surface-container-highest: rgb(226 226 233);
|
530
|
-
--outline-filter: brightness(0) saturate(100%) invert(61%) sepia(5%)
|
531
|
-
saturate(424%) hue-rotate(192deg) brightness(92%) contrast(92%);
|
532
|
-
}
|
533
|
-
.light-cyan {
|
534
|
-
--light-filter: invert(93%) hue-rotate(180deg);
|
535
|
-
--md-sys-color-primary: rgb(0 106 100);
|
536
|
-
--md-sys-color-surface-tint: rgb(0 106 100);
|
537
|
-
--md-sys-color-on-primary: rgb(255 255 255);
|
538
|
-
--md-sys-color-primary-container: rgb(157 242 233);
|
539
|
-
--md-sys-color-on-primary-container: rgb(0 32 30);
|
540
|
-
--md-sys-color-secondary: rgb(74 99 96);
|
541
|
-
--md-sys-color-on-secondary: rgb(255 255 255);
|
542
|
-
--md-sys-color-secondary-container: rgb(204 232 228);
|
543
|
-
--md-sys-color-on-secondary-container: rgb(5 31 29);
|
544
|
-
--md-sys-color-tertiary: rgb(72 97 122);
|
545
|
-
--md-sys-color-on-tertiary: rgb(255 255 255);
|
546
|
-
--md-sys-color-tertiary-container: rgb(207 229 255);
|
547
|
-
--md-sys-color-on-tertiary-container: rgb(0 29 52);
|
548
|
-
--md-sys-color-error: rgb(186 26 26);
|
549
|
-
--md-sys-color-on-error: rgb(255 255 255);
|
550
|
-
--md-sys-color-error-container: rgb(255 218 214);
|
551
|
-
--md-sys-color-on-error-container: rgb(65 0 2);
|
552
|
-
--md-sys-color-background: rgb(244 251 249);
|
553
|
-
--md-sys-color-on-background: rgb(22 29 28);
|
554
|
-
--md-sys-color-surface: rgb(244 251 249);
|
555
|
-
--md-sys-color-on-surface: #161d1c;
|
556
|
-
--on-surface-filter: invert(7%) sepia(7%) saturate(1616%) hue-rotate(122deg)
|
557
|
-
brightness(92%) contrast(90%);
|
558
|
-
--md-sys-color-surface-variant: rgb(218 229 226);
|
559
|
-
--md-sys-color-on-surface-variant: rgb(63 73 71);
|
560
|
-
--md-sys-color-outline: rgb(111 121 119);
|
561
|
-
--md-sys-color-outline-variant: rgb(190 201 198);
|
562
|
-
--md-sys-color-shadow: rgb(0 0 0);
|
563
|
-
--md-sys-color-scrim: rgb(0 0 0);
|
564
|
-
--md-sys-color-inverse-surface: rgb(43 50 49);
|
565
|
-
--outline-filter: brightness(0) saturate(100%) invert(66%) sepia(8%)
|
566
|
-
saturate(263%) hue-rotate(118deg) brightness(85%) contrast(87%);
|
567
|
-
--md-sys-color-inverse-on-surface: rgb(236 242 240);
|
568
|
-
--md-sys-color-inverse-primary: rgb(129 213 205);
|
569
|
-
--md-sys-color-primary-fixed: rgb(157 242 233);
|
570
|
-
--md-sys-color-on-primary-fixed: rgb(0 32 30);
|
571
|
-
--md-sys-color-primary-fixed-dim: rgb(129 213 205);
|
572
|
-
--md-sys-color-on-primary-fixed-variant: rgb(0 80 75);
|
573
|
-
--md-sys-color-secondary-fixed: rgb(204 232 228);
|
574
|
-
--md-sys-color-on-secondary-fixed: rgb(5 31 29);
|
575
|
-
--md-sys-color-secondary-fixed-dim: rgb(176 204 200);
|
576
|
-
--md-sys-color-on-secondary-fixed-variant: rgb(50 75 73);
|
577
|
-
--md-sys-color-tertiary-fixed: rgb(207 229 255);
|
578
|
-
--md-sys-color-on-tertiary-fixed: rgb(0 29 52);
|
579
|
-
--md-sys-color-tertiary-fixed-dim: rgb(175 201 231);
|
580
|
-
--md-sys-color-on-tertiary-fixed-variant: rgb(48 73 98);
|
581
|
-
--md-sys-color-surface-dim: rgb(213 219 218);
|
582
|
-
--md-sys-color-surface-bright: rgb(244 251 249);
|
583
|
-
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
584
|
-
--md-sys-color-surface-container-low: rgb(239 245 243);
|
585
|
-
--md-sys-color-surface-container: rgb(233 239 237);
|
586
|
-
--md-sys-color-surface-container-high: rgb(227 233 232);
|
587
|
-
--md-sys-color-surface-container-highest: rgb(221 228 226);
|
588
|
-
}
|
1
|
+
.light-mode {
|
2
|
+
--dark-pink: #f0b3e7;
|
3
|
+
--dark-green: #b1d18a;
|
4
|
+
--dark-yellow: #dbc66;
|
5
|
+
--dark-blue: #aac7ff;
|
6
|
+
--dark-cyan: #81d5cd;
|
7
|
+
}
|
8
|
+
.dark-mode {
|
9
|
+
--light-pink: #f0b3e7;
|
10
|
+
--light-greeN: #b1d18a;
|
11
|
+
--light-yellw: #dbc66;
|
12
|
+
--light-blue: #aac7ff;
|
13
|
+
--light-cyan: #81d5cd;
|
14
|
+
}
|
15
|
+
#pink-theme {
|
16
|
+
background-color: #f0b3e7;
|
17
|
+
}
|
18
|
+
#green-theme {
|
19
|
+
background-color: #b1d18a;
|
20
|
+
}
|
21
|
+
#yellow-theme {
|
22
|
+
background-color: #dbc66e;
|
23
|
+
}
|
24
|
+
#blue-theme {
|
25
|
+
background-color: #aac7ff;
|
26
|
+
}
|
27
|
+
#cyan-theme {
|
28
|
+
background-color: #81d5cd;
|
29
|
+
}
|
30
|
+
.dark-yellow {
|
31
|
+
--md-sys-color-primary: rgb(219 198 110);
|
32
|
+
--md-sys-color-surface-tint: rgb(219 198 110);
|
33
|
+
--md-sys-color-on-primary: rgb(58 48 0);
|
34
|
+
--md-sys-color-primary-container: rgb(83 70 0);
|
35
|
+
--md-sys-color-on-primary-container: rgb(248 226 135);
|
36
|
+
--md-sys-color-secondary: rgb(209 198 161);
|
37
|
+
--md-sys-color-on-secondary: rgb(54 48 22);
|
38
|
+
--md-sys-color-secondary-container: rgb(78 71 42);
|
39
|
+
--md-sys-color-on-secondary-container: rgb(238 226 188);
|
40
|
+
--md-sys-color-tertiary: rgb(169 208 179);
|
41
|
+
--md-sys-color-on-tertiary: rgb(20 55 35);
|
42
|
+
--md-sys-color-tertiary-container: rgb(44 78 56);
|
43
|
+
--md-sys-color-on-tertiary-container: rgb(197 236 206);
|
44
|
+
--md-sys-color-error: rgb(255 180 171);
|
45
|
+
--md-sys-color-on-error: rgb(105 0 5);
|
46
|
+
--md-sys-color-error-container: rgb(147 0 10);
|
47
|
+
--md-sys-color-on-error-container: rgb(255 218 214);
|
48
|
+
--md-sys-color-background: rgb(21 19 11);
|
49
|
+
--md-sys-color-on-background: rgb(232 226 212);
|
50
|
+
--md-sys-color-surface: rgb(21 19 11);
|
51
|
+
--md-sys-color-on-surface: #e8e2d4;
|
52
|
+
--on-surface-filter: invert(91%) sepia(15%) saturate(159%) hue-rotate(4deg)
|
53
|
+
brightness(99%) contrast(89%);
|
54
|
+
--md-sys-color-surface-variant: #4b4739;
|
55
|
+
--md-sys-color-on-surface-variant: rgb(205 198 180);
|
56
|
+
--md-sys-color-outline: #969080;
|
57
|
+
--outline-filter: brightness(0) saturate(100%) invert(64%) sepia(15%)
|
58
|
+
saturate(306%) hue-rotate(6deg) brightness(87%) contrast(85%);
|
59
|
+
--md-sys-color-outline-variant: rgb(75 71 57);
|
60
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
61
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
62
|
+
--md-sys-color-inverse-surface: rgb(232 226 212);
|
63
|
+
--md-sys-color-inverse-on-surface: rgb(51 48 39);
|
64
|
+
--md-sys-color-inverse-primary: rgb(109 94 15);
|
65
|
+
--md-sys-color-primary-fixed: rgb(248 226 135);
|
66
|
+
--md-sys-color-on-primary-fixed: rgb(34 27 0);
|
67
|
+
--md-sys-color-primary-fixed-dim: rgb(219 198 110);
|
68
|
+
--md-sys-color-on-primary-fixed-variant: rgb(83 70 0);
|
69
|
+
--md-sys-color-secondary-fixed: rgb(238 226 188);
|
70
|
+
--md-sys-color-on-secondary-fixed: rgb(33 27 4);
|
71
|
+
--md-sys-color-secondary-fixed-dim: rgb(209 198 161);
|
72
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(78 71 42);
|
73
|
+
--md-sys-color-tertiary-fixed: rgb(197 236 206);
|
74
|
+
--md-sys-color-on-tertiary-fixed: rgb(0 33 15);
|
75
|
+
--md-sys-color-tertiary-fixed-dim: rgb(169 208 179);
|
76
|
+
--md-sys-color-on-tertiary-fixed-variant: rgb(44 78 56);
|
77
|
+
--md-sys-color-surface-dim: rgb(21 19 11);
|
78
|
+
--md-sys-color-surface-bright: rgb(60 57 48);
|
79
|
+
--md-sys-color-surface-container-lowest: rgb(16 14 7);
|
80
|
+
--md-sys-color-surface-container-low: rgb(30 27 19);
|
81
|
+
--md-sys-color-surface-container: rgb(34 32 23);
|
82
|
+
--md-sys-color-surface-container-high: rgb(45 42 33);
|
83
|
+
--md-sys-color-surface-container-highest: rgb(56 53 43);
|
84
|
+
}
|
85
|
+
.dark-blue {
|
86
|
+
--md-sys-color-primary: rgb(170 199 255);
|
87
|
+
--md-sys-color-surface-tint: rgb(170 199 255);
|
88
|
+
--md-sys-color-on-primary: rgb(10 48 95);
|
89
|
+
--md-sys-color-primary-container: rgb(40 71 119);
|
90
|
+
--md-sys-color-on-primary-container: rgb(214 227 255);
|
91
|
+
--md-sys-color-secondary: rgb(190 198 220);
|
92
|
+
--md-sys-color-on-secondary: rgb(40 49 65);
|
93
|
+
--md-sys-color-secondary-container: rgb(62 71 89);
|
94
|
+
--md-sys-color-on-secondary-container: rgb(218 226 249);
|
95
|
+
--md-sys-color-tertiary: rgb(221 188 224);
|
96
|
+
--md-sys-color-on-tertiary: rgb(63 40 68);
|
97
|
+
--md-sys-color-tertiary-container: rgb(87 62 92);
|
98
|
+
--md-sys-color-on-tertiary-container: rgb(250 216 253);
|
99
|
+
--md-sys-color-error: rgb(255 180 171);
|
100
|
+
--md-sys-color-on-error: rgb(105 0 5);
|
101
|
+
--md-sys-color-error-container: rgb(147 0 10);
|
102
|
+
--md-sys-color-on-error-container: rgb(255 218 214);
|
103
|
+
--md-sys-color-background: rgb(17 19 24);
|
104
|
+
--md-sys-color-on-background: rgb(226 226 233);
|
105
|
+
--md-sys-color-surface: rgb(17 19 24);
|
106
|
+
--md-sys-color-on-surface: #e2e2e9;
|
107
|
+
--on-surface-filter: invert(100%) sepia(5%) saturate(7075%) hue-rotate(180deg)
|
108
|
+
brightness(96%) contrast(89%);
|
109
|
+
--md-sys-color-surface-variant: rgb(68 71 78);
|
110
|
+
--md-sys-color-on-surface-variant: rgb(196 198 208);
|
111
|
+
--md-sys-color-outline: #8e9099;
|
112
|
+
--outline-filter: brightness(0) saturate(100%) invert(61%) sepia(5%)
|
113
|
+
saturate(424%) hue-rotate(192deg) brightness(92%) contrast(92%);
|
114
|
+
--md-sys-color-outline-variant: #44474e;
|
115
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
116
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
117
|
+
--md-sys-color-inverse-surface: rgb(226 226 233);
|
118
|
+
--md-sys-color-inverse-on-surface: rgb(46 48 54);
|
119
|
+
--md-sys-color-inverse-primary: rgb(65 95 145);
|
120
|
+
--md-sys-color-primary-fixed: rgb(214 227 255);
|
121
|
+
--md-sys-color-on-primary-fixed: rgb(0 27 62);
|
122
|
+
--md-sys-color-primary-fixed-dim: rgb(170 199 255);
|
123
|
+
--md-sys-color-on-primary-fixed-variant: rgb(40 71 119);
|
124
|
+
--md-sys-color-secondary-fixed: rgb(218 226 249);
|
125
|
+
--md-sys-color-on-secondary-fixed: rgb(19 28 43);
|
126
|
+
--md-sys-color-secondary-fixed-dim: rgb(190 198 220);
|
127
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(62 71 89);
|
128
|
+
--md-sys-color-tertiary-fixed: rgb(250 216 253);
|
129
|
+
--md-sys-color-on-tertiary-fixed: rgb(40 19 46);
|
130
|
+
--md-sys-color-tertiary-fixed-dim: rgb(221 188 224);
|
131
|
+
--md-sys-color-on-tertiary-fixed-variant: rgb(87 62 92);
|
132
|
+
--md-sys-color-surface-dim: rgb(17 19 24);
|
133
|
+
--md-sys-color-surface-bright: rgb(55 57 62);
|
134
|
+
--md-sys-color-surface-container-lowest: rgb(12 14 19);
|
135
|
+
--md-sys-color-surface-container-low: rgb(25 28 32);
|
136
|
+
--md-sys-color-surface-container: rgb(29 32 36);
|
137
|
+
--md-sys-color-surface-container-high: rgb(40 42 47);
|
138
|
+
--md-sys-color-surface-container-highest: rgb(51 53 58);
|
139
|
+
}
|
140
|
+
.dark-cyan {
|
141
|
+
--md-sys-color-primary: rgb(129 213 205);
|
142
|
+
--md-sys-color-surface-tint: rgb(129 213 205);
|
143
|
+
--md-sys-color-on-primary: rgb(0 55 52);
|
144
|
+
--md-sys-color-primary-container: rgb(0 80 75);
|
145
|
+
--md-sys-color-on-primary-container: rgb(157 242 233);
|
146
|
+
--md-sys-color-secondary: rgb(176 204 200);
|
147
|
+
--md-sys-color-on-secondary: rgb(28 53 50);
|
148
|
+
--md-sys-color-secondary-container: rgb(50 75 73);
|
149
|
+
--md-sys-color-on-secondary-container: rgb(204 232 228);
|
150
|
+
--md-sys-color-tertiary: rgb(175 201 231);
|
151
|
+
--md-sys-color-on-tertiary: rgb(24 50 74);
|
152
|
+
--md-sys-color-tertiary-container: rgb(48 73 98);
|
153
|
+
--md-sys-color-on-tertiary-container: rgb(207 229 255);
|
154
|
+
--md-sys-color-error: rgb(255 180 171);
|
155
|
+
--md-sys-color-on-error: rgb(105 0 5);
|
156
|
+
--md-sys-color-error-container: rgb(147 0 10);
|
157
|
+
--md-sys-color-on-error-container: rgb(255 218 214);
|
158
|
+
--md-sys-color-background: rgb(14 21 20);
|
159
|
+
--md-sys-color-on-background: rgb(221 228 226);
|
160
|
+
--md-sys-color-surface: rgb(14 21 20);
|
161
|
+
--md-sys-color-on-surface: #dde4e2;
|
162
|
+
--on-surface-filter: invert(91%) sepia(6%) saturate(145%) hue-rotate(112deg)
|
163
|
+
brightness(102%) contrast(89%);
|
164
|
+
--md-sys-color-surface-variant: rgb(63 73 71);
|
165
|
+
--md-sys-color-on-surface-variant: rgb(190 201 198);
|
166
|
+
--md-sys-color-outline: #899391;
|
167
|
+
--outline-filter: brightness(0) saturate(100%) invert(66%) sepia(8%)
|
168
|
+
saturate(263%) hue-rotate(118deg) brightness(85%) contrast(87%);
|
169
|
+
--md-sys-color-outline-variant: rgb(63 73 71);
|
170
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
171
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
172
|
+
--md-sys-color-inverse-surface: rgb(221 228 226);
|
173
|
+
--md-sys-color-inverse-on-surface: rgb(43 50 49);
|
174
|
+
--md-sys-color-inverse-primary: rgb(0 106 100);
|
175
|
+
--md-sys-color-primary-fixed: rgb(157 242 233);
|
176
|
+
--md-sys-color-on-primary-fixed: rgb(0 32 30);
|
177
|
+
--md-sys-color-primary-fixed-dim: rgb(129 213 205);
|
178
|
+
--md-sys-color-on-primary-fixed-variant: rgb(0 80 75);
|
179
|
+
--md-sys-color-secondary-fixed: rgb(204 232 228);
|
180
|
+
--md-sys-color-on-secondary-fixed: rgb(5 31 29);
|
181
|
+
--md-sys-color-secondary-fixed-dim: rgb(176 204 200);
|
182
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(50 75 73);
|
183
|
+
--md-sys-color-tertiary-fixed: rgb(207 229 255);
|
184
|
+
--md-sys-color-on-tertiary-fixed: rgb(0 29 51);
|
185
|
+
--md-sys-color-tertiary-fixed-dim: rgb(175 201 231);
|
186
|
+
--md-sys-color-on-tertiary-fixed-variant: rgb(48 73 98);
|
187
|
+
--md-sys-color-surface-dim: rgb(14 21 20);
|
188
|
+
--md-sys-color-surface-bright: rgb(52 58 57);
|
189
|
+
--md-sys-color-surface-container-lowest: rgb(9 15 15);
|
190
|
+
--md-sys-color-surface-container-low: rgb(22 29 28);
|
191
|
+
--md-sys-color-surface-container: rgb(26 33 32);
|
192
|
+
--md-sys-color-surface-container-high: rgb(37 43 42);
|
193
|
+
--md-sys-color-surface-container-highest: rgb(47 54 53);
|
194
|
+
}
|
195
|
+
.dark-green {
|
196
|
+
--md-sys-color-primary: rgb(177 209 138);
|
197
|
+
--md-sys-color-surface-tint: rgb(177 209 138);
|
198
|
+
--md-sys-color-on-primary: rgb(31 55 1);
|
199
|
+
--md-sys-color-primary-container: rgb(53 78 22);
|
200
|
+
|
201
|
+
--md-sys-color-on-primary-container: rgb(205 237 163);
|
202
|
+
--md-sys-color-secondary: rgb(191 203 173);
|
203
|
+
--md-sys-color-on-secondary: rgb(42 51 30);
|
204
|
+
--md-sys-color-secondary-container: rgb(64 74 51);
|
205
|
+
--md-sys-color-on-secondary-container: rgb(220 231 200);
|
206
|
+
--md-sys-color-tertiary: rgb(160 208 203);
|
207
|
+
--md-sys-color-on-tertiary: rgb(0 55 53);
|
208
|
+
--md-sys-color-tertiary-container: rgb(31 78 75);
|
209
|
+
--md-sys-color-on-tertiary-container: rgb(188 236 231);
|
210
|
+
--md-sys-color-error: rgb(255 180 171);
|
211
|
+
--md-sys-color-on-error: rgb(105 0 5);
|
212
|
+
--md-sys-color-error-container: rgb(147 0 10);
|
213
|
+
--md-sys-color-on-error-container: rgb(255 218 214);
|
214
|
+
--md-sys-color-background: rgb(18 20 14);
|
215
|
+
--md-sys-color-on-background: rgb(226 227 216);
|
216
|
+
--md-sys-color-surface: rgb(18 20 14);
|
217
|
+
--md-sys-color-on-surface: #e2e3d8;
|
218
|
+
--on-surface-filter: invert(85%) sepia(3%) saturate(447%) hue-rotate(26deg)
|
219
|
+
brightness(109%) contrast(89%);
|
220
|
+
--md-sys-color-surface-variant: rgb(68 72 61);
|
221
|
+
--md-sys-color-on-surface-variant: rgb(197 200 186);
|
222
|
+
--md-sys-color-outline: #8f9285;
|
223
|
+
--outline-filter: brightness(0) saturate(100%) invert(61%) sepia(6%)
|
224
|
+
saturate(487%) hue-rotate(33deg) brightness(92%) contrast(91%);
|
225
|
+
--md-sys-color-outline-variant: rgb(68 72 61);
|
226
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
227
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
228
|
+
--md-sys-color-inverse-surface: rgb(226 227 216);
|
229
|
+
--md-sys-color-inverse-on-surface: rgb(47 49 42);
|
230
|
+
--md-sys-color-inverse-primary: rgb(76 102 43);
|
231
|
+
--md-sys-color-primary-fixed: rgb(205 237 163);
|
232
|
+
--md-sys-color-on-primary-fixed: rgb(16 32 0);
|
233
|
+
--md-sys-color-primary-fixed-dim: rgb(177 209 138);
|
234
|
+
--md-sys-color-on-primary-fixed-variant: rgb(53 78 22);
|
235
|
+
--md-sys-color-secondary-fixed: rgb(220 231 200);
|
236
|
+
--md-sys-color-on-secondary-fixed: rgb(21 30 11);
|
237
|
+
--md-sys-color-secondary-fixed-dim: rgb(191 203 173);
|
238
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(64 74 51);
|
239
|
+
--md-sys-color-tertiary-fixed: rgb(188 236 231);
|
240
|
+
--md-sys-color-on-tertiary-fixed: rgb(0 32 30);
|
241
|
+
--md-sys-color-tertiary-fixed-dim: rgb(160 208 203);
|
242
|
+
--md-sys-color-on-tertiary-fixed-variant: rgb(31 78 75);
|
243
|
+
--md-sys-color-surface-dim: rgb(18 20 14);
|
244
|
+
--md-sys-color-surface-bright: rgb(56 58 50);
|
245
|
+
--md-sys-color-surface-container-lowest: rgb(12 15 9);
|
246
|
+
--md-sys-color-surface-container-low: rgb(26 28 22);
|
247
|
+
--md-sys-color-surface-container: rgb(30 32 26);
|
248
|
+
--md-sys-color-surface-container-high: rgb(40 43 36);
|
249
|
+
--md-sys-color-surface-container-highest: rgb(51 54 46);
|
250
|
+
}
|
251
|
+
.dark-pink {
|
252
|
+
--filter-primary-container: brightness(0) saturate(100%) invert(33%)
|
253
|
+
sepia(34%) saturate(598%) hue-rotate(291deg) brightness(93%) contrast(94%);
|
254
|
+
--md-sys-color-primary: rgb(240 179 231);
|
255
|
+
--md-sys-color-surface-tint: rgb(240 179 231);
|
256
|
+
--md-sys-color-on-primary: rgb(75 31 74);
|
257
|
+
--md-sys-color-primary-container: rgb(101 54 98);
|
258
|
+
--md-sys-color-on-primary-container: rgb(255 215 247);
|
259
|
+
--md-sys-color-secondary: rgb(218 191 211);
|
260
|
+
--md-sys-color-on-secondary: rgb(61 43 58);
|
261
|
+
--md-sys-color-secondary-container: rgb(84 65 81);
|
262
|
+
--md-sys-color-on-secondary-container: rgb(247 218 239);
|
263
|
+
--md-sys-color-tertiary: rgb(246 184 168);
|
264
|
+
--md-sys-color-on-tertiary: rgb(76 38 27);
|
265
|
+
--md-sys-color-tertiary-container: rgb(102 59 48);
|
266
|
+
--md-sys-color-on-tertiary-container: rgb(255 219 209);
|
267
|
+
--md-sys-color-error: rgb(255 180 171);
|
268
|
+
--md-sys-color-on-error: rgb(105 0 5);
|
269
|
+
--md-sys-color-error-container: rgb(147 0 10);
|
270
|
+
--md-sys-color-on-error-container: rgb(255 218 214);
|
271
|
+
--md-sys-color-background: rgb(23 18 22);
|
272
|
+
--md-sys-color-on-background: rgb(235 223 230);
|
273
|
+
--md-sys-color-surface: rgb(23 18 22);
|
274
|
+
--md-sys-color-on-surface: #ebdfe6;
|
275
|
+
--on-surface-filter: invert(97%) sepia(3%) saturate(932%) hue-rotate(287deg)
|
276
|
+
brightness(92%) contrast(100%);
|
277
|
+
--md-sys-color-surface-variant: rgb(78 68 75);
|
278
|
+
--md-sys-color-on-surface-variant: rgb(209 195 203);
|
279
|
+
--md-sys-color-outline: #9a8d95;
|
280
|
+
--outline-filter: brightness(0) saturate(100%) invert(61%) sepia(13%)
|
281
|
+
saturate(228%) hue-rotate(270deg) brightness(93%) contrast(82%);
|
282
|
+
--md-sys-color-outline-variant: rgb(78 68 75);
|
283
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
284
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
285
|
+
--md-sys-color-inverse-surface: rgb(235 223 230);
|
286
|
+
--md-sys-color-inverse-on-surface: #352e33;
|
287
|
+
|
288
|
+
--md-sys-color-inverse-primary: rgb(127 77 123);
|
289
|
+
--md-sys-color-primary-fixed: rgb(255 215 247);
|
290
|
+
--md-sys-color-on-primary-fixed: rgb(51 8 51);
|
291
|
+
--md-sys-color-primary-fixed-dim: rgb(240 179 231);
|
292
|
+
--md-sys-color-on-primary-fixed-variant: rgb(101 54 98);
|
293
|
+
--md-sys-color-secondary-fixed: rgb(247 218 239);
|
294
|
+
--md-sys-color-on-secondary-fixed: rgb(38 22 37);
|
295
|
+
--md-sys-color-secondary-fixed-dim: rgb(218 191 211);
|
296
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(84 65 81);
|
297
|
+
--md-sys-color-tertiary-fixed: rgb(255 219 209);
|
298
|
+
--md-sys-color-on-tertiary-fixed: rgb(50 18 9);
|
299
|
+
--md-sys-color-tertiary-fixed-dim: rgb(246 184 168);
|
300
|
+
--md-sys-color-on-tertiary-fixed-variant: rgb(102 59 48);
|
301
|
+
--md-sys-color-surface-dim: rgb(23 18 22);
|
302
|
+
--md-sys-color-surface-bright: rgb(62 55 60);
|
303
|
+
--md-sys-color-surface-container-lowest: rgb(18 13 17);
|
304
|
+
--md-sys-color-surface-container-low: rgb(32 26 30);
|
305
|
+
--md-sys-color-surface-container: rgb(36 30 34);
|
306
|
+
--md-sys-color-surface-container-high: #2f282d;
|
307
|
+
--md-sys-color-surface-container-highest: rgb(58 51 56);
|
308
|
+
}
|
309
|
+
.light-pink {
|
310
|
+
--light-filter: invert(93%) hue-rotate(180deg);
|
311
|
+
--md-sys-color-primary: rgb(127 77 122);
|
312
|
+
--md-sys-color-surface-tint: rgb(127 77 122);
|
313
|
+
--md-sys-color-on-primary: rgb(255 255 255);
|
314
|
+
--md-sys-color-primary-container: rgb(255 215 246);
|
315
|
+
--md-sys-color-on-primary-container: rgb(51 8 51);
|
316
|
+
--md-sys-color-secondary: rgb(109 88 105);
|
317
|
+
--md-sys-color-on-secondary: rgb(255 255 255);
|
318
|
+
--md-sys-color-secondary-container: rgb(247 218 239);
|
319
|
+
--md-sys-color-on-secondary-container: rgb(38 22 37);
|
320
|
+
--md-sys-color-tertiary: rgb(130 82 70);
|
321
|
+
--md-sys-color-on-tertiary: rgb(255 255 255);
|
322
|
+
--md-sys-color-tertiary-container: rgb(255 219 209);
|
323
|
+
--md-sys-color-on-tertiary-container: rgb(50 18 9);
|
324
|
+
--md-sys-color-error: rgb(186 26 26);
|
325
|
+
--md-sys-color-on-error: rgb(255 255 255);
|
326
|
+
--md-sys-color-error-container: rgb(255 218 214);
|
327
|
+
--md-sys-color-on-error-container: rgb(65 0 2);
|
328
|
+
--md-sys-color-background: rgb(255 247 249);
|
329
|
+
--md-sys-color-on-background: rgb(32 26 30);
|
330
|
+
--md-sys-color-surface: rgb(255 247 249);
|
331
|
+
--md-sys-color-on-surface: #201a1e;
|
332
|
+
--on-surface-filter: invert(8%) sepia(2%) saturate(3908%) hue-rotate(267deg)
|
333
|
+
brightness(94%) contrast(93%);
|
334
|
+
--md-sys-color-surface-variant: rgb(238 222 231);
|
335
|
+
--md-sys-color-on-surface-variant: rgb(78 68 75);
|
336
|
+
--md-sys-color-outline: rgb(127 116 124);
|
337
|
+
--md-sys-color-outline-variant: rgb(209 195 203);
|
338
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
339
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
340
|
+
--md-sys-color-inverse-surface: rgb(53 46 51);
|
341
|
+
--md-sys-color-inverse-on-surface: rgb(250 237 244);
|
342
|
+
--md-sys-color-inverse-primary: rgb(240 179 231);
|
343
|
+
--md-sys-color-primary-fixed: rgb(255 215 246);
|
344
|
+
--md-sys-color-on-primary-fixed: rgb(51 8 51);
|
345
|
+
--md-sys-color-primary-fixed-dim: rgb(240 179 231);
|
346
|
+
--md-sys-color-on-primary-fixed-variant: rgb(101 54 97);
|
347
|
+
--md-sys-color-secondary-fixed: rgb(247 218 239);
|
348
|
+
--md-sys-color-on-secondary-fixed: rgb(38 22 37);
|
349
|
+
--md-sys-color-secondary-fixed-dim: rgb(218 191 211);
|
350
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(84 65 81);
|
351
|
+
--md-sys-color-tertiary-fixed: rgb(255 219 209);
|
352
|
+
--md-sys-color-on-tertiary-fixed: rgb(50 18 9);
|
353
|
+
--md-sys-color-tertiary-fixed-dim: rgb(246 184 168);
|
354
|
+
--md-sys-color-on-tertiary-fixed-variant: rgb(102 59 48);
|
355
|
+
--md-sys-color-surface-dim: rgb(227 215 221);
|
356
|
+
--md-sys-color-surface-bright: rgb(255 247 249);
|
357
|
+
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
358
|
+
--md-sys-color-surface-container-low: rgb(253 240 247);
|
359
|
+
--md-sys-color-surface-container: rgb(247 235 241);
|
360
|
+
--md-sys-color-surface-container-high: rgb(241 229 235);
|
361
|
+
--md-sys-color-surface-container-highest: rgb(235 223 230);
|
362
|
+
--outline-filter: brightness(0) saturate(100%) invert(61%) sepia(13%)
|
363
|
+
saturate(228%) hue-rotate(270deg) brightness(93%) contrast(82%);
|
364
|
+
}
|
365
|
+
.light-green {
|
366
|
+
--light-filter: invert(93%) hue-rotate(180deg);
|
367
|
+
--md-sys-color-primary: rgb(75 102 44);
|
368
|
+
--md-sys-color-surface-tint: rgb(75 102 44);
|
369
|
+
--md-sys-color-on-primary: rgb(255 255 255);
|
370
|
+
--md-sys-color-primary-container: rgb(204 237 164);
|
371
|
+
--md-sys-color-on-primary-container: rgb(15 32 0);
|
372
|
+
--md-sys-color-secondary: rgb(87 98 73);
|
373
|
+
--md-sys-color-on-secondary: rgb(255 255 255);
|
374
|
+
--md-sys-color-secondary-container: rgb(219 231 200);
|
375
|
+
--md-sys-color-on-secondary-container: rgb(21 30 11);
|
376
|
+
--md-sys-color-tertiary: rgb(56 102 99);
|
377
|
+
--md-sys-color-on-tertiary: rgb(255 255 255);
|
378
|
+
--md-sys-color-tertiary-container: rgb(187 236 232);
|
379
|
+
--md-sys-color-on-tertiary-container: rgb(0 32 30);
|
380
|
+
--md-sys-color-error: rgb(186 26 26);
|
381
|
+
--md-sys-color-on-error: rgb(255 255 255);
|
382
|
+
--md-sys-color-error-container: rgb(255 218 214);
|
383
|
+
--md-sys-color-on-error-container: rgb(65 0 2);
|
384
|
+
--md-sys-color-background: rgb(249 250 239);
|
385
|
+
--md-sys-color-on-background: rgb(26 28 22);
|
386
|
+
--md-sys-color-surface: rgb(249 250 239);
|
387
|
+
--md-sys-color-on-surface: #1a1c16;
|
388
|
+
--on-surface-filter: invert(9%) sepia(11%) saturate(780%) hue-rotate(39deg)
|
389
|
+
brightness(96%) contrast(95%);
|
390
|
+
--md-sys-color-surface-variant: rgb(225 228 213);
|
391
|
+
--md-sys-color-on-surface-variant: rgb(68 72 61);
|
392
|
+
--md-sys-color-outline: rgb(117 121 108);
|
393
|
+
--md-sys-color-outline-variant: rgb(197 200 186);
|
394
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
395
|
+
--outline-filter: brightness(0) saturate(100%) invert(61%) sepia(6%)
|
396
|
+
saturate(487%) hue-rotate(33deg) brightness(92%) contrast(91%);
|
397
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
398
|
+
--md-sys-color-inverse-surface: rgb(47 49 42);
|
399
|
+
--md-sys-color-inverse-on-surface: rgb(240 242 230);
|
400
|
+
--md-sys-color-inverse-primary: rgb(177 209 138);
|
401
|
+
--md-sys-color-primary-fixed: rgb(204 237 164);
|
402
|
+
--md-sys-color-on-primary-fixed: rgb(15 32 0);
|
403
|
+
--md-sys-color-primary-fixed-dim: rgb(177 209 138);
|
404
|
+
--md-sys-color-on-primary-fixed-variant: rgb(52 78 22);
|
405
|
+
--md-sys-color-secondary-fixed: rgb(219 231 200);
|
406
|
+
--md-sys-color-on-secondary-fixed: rgb(21 30 11);
|
407
|
+
--md-sys-color-secondary-fixed-dim: rgb(191 203 173);
|
408
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(64 74 51);
|
409
|
+
--md-sys-color-tertiary-fixed: rgb(187 236 232);
|
410
|
+
--md-sys-color-on-tertiary-fixed: rgb(0 32 30);
|
411
|
+
--md-sys-color-tertiary-fixed-dim: rgb(160 208 204);
|
412
|
+
--md-sys-color-on-tertiary-fixed-variant: rgb(31 78 75);
|
413
|
+
--md-sys-color-surface-dim: rgb(218 219 208);
|
414
|
+
--md-sys-color-surface-bright: rgb(249 250 239);
|
415
|
+
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
416
|
+
--md-sys-color-surface-container-low: rgb(243 244 233);
|
417
|
+
--md-sys-color-surface-container: rgb(238 239 228);
|
418
|
+
--md-sys-color-surface-container-high: rgb(232 233 222);
|
419
|
+
--md-sys-color-surface-container-highest: rgb(226 227 216);
|
420
|
+
}
|
421
|
+
.light-yellow {
|
422
|
+
--light-filter: invert(93%) hue-rotate(180deg);
|
423
|
+
--md-sys-color-primary: rgb(109 94 15);
|
424
|
+
--md-sys-color-surface-tint: rgb(109 94 15);
|
425
|
+
--md-sys-color-on-primary: rgb(255 255 255);
|
426
|
+
--md-sys-color-primary-container: rgb(248 226 135);
|
427
|
+
--md-sys-color-on-primary-container: rgb(34 27 0);
|
428
|
+
--md-sys-color-secondary: rgb(102 94 64);
|
429
|
+
--md-sys-color-on-secondary: rgb(255 255 255);
|
430
|
+
--md-sys-color-secondary-container: rgb(238 226 188);
|
431
|
+
--md-sys-color-on-secondary-container: rgb(33 27 4);
|
432
|
+
--md-sys-color-tertiary: rgb(67 102 78);
|
433
|
+
--md-sys-color-on-tertiary: rgb(255 255 255);
|
434
|
+
--md-sys-color-tertiary-container: rgb(197 236 206);
|
435
|
+
--md-sys-color-on-tertiary-container: rgb(0 33 15);
|
436
|
+
--md-sys-color-error: rgb(186 26 26);
|
437
|
+
--md-sys-color-on-error: rgb(255 255 255);
|
438
|
+
--md-sys-color-error-container: rgb(255 218 214);
|
439
|
+
--md-sys-color-on-error-container: rgb(65 0 2);
|
440
|
+
--md-sys-color-background: rgb(255 249 238);
|
441
|
+
--md-sys-color-on-background: rgb(30 27 19);
|
442
|
+
--md-sys-color-surface: rgb(255 249 238);
|
443
|
+
--md-sys-color-on-surface: #1e1b13;
|
444
|
+
--on-surface-filter: invert(8%) sepia(20%) saturate(701%) hue-rotate(6deg)
|
445
|
+
brightness(101%) contrast(95%);
|
446
|
+
--md-sys-color-surface-variant: rgb(234 226 208);
|
447
|
+
--md-sys-color-on-surface-variant: rgb(75 71 57);
|
448
|
+
--md-sys-color-outline: rgb(124 119 103);
|
449
|
+
--md-sys-color-outline-variant: rgb(205 198 180);
|
450
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
451
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
452
|
+
--md-sys-color-inverse-surface: rgb(51 48 39);
|
453
|
+
--md-sys-color-inverse-on-surface: rgb(247 240 226);
|
454
|
+
--md-sys-color-inverse-primary: rgb(219 198 110);
|
455
|
+
--md-sys-color-primary-fixed: rgb(248 226 135);
|
456
|
+
--md-sys-color-on-primary-fixed: rgb(34 27 0);
|
457
|
+
--md-sys-color-primary-fixed-dim: rgb(219 198 110);
|
458
|
+
--md-sys-color-on-primary-fixed-variant: rgb(83 70 0);
|
459
|
+
--md-sys-color-secondary-fixed: rgb(238 226 188);
|
460
|
+
--md-sys-color-on-secondary-fixed: rgb(33 27 4);
|
461
|
+
--md-sys-color-secondary-fixed-dim: rgb(209 198 161);
|
462
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(78 71 42);
|
463
|
+
--md-sys-color-tertiary-fixed: rgb(197 236 206);
|
464
|
+
--md-sys-color-on-tertiary-fixed: rgb(0 33 15);
|
465
|
+
--md-sys-color-tertiary-fixed-dim: rgb(169 208 179);
|
466
|
+
--md-sys-color-on-tertiary-fixed-variant: rgb(44 78 56);
|
467
|
+
--md-sys-color-surface-dim: rgb(224 217 204);
|
468
|
+
--md-sys-color-surface-bright: rgb(255 249 238);
|
469
|
+
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
470
|
+
--md-sys-color-surface-container-low: rgb(250 243 229);
|
471
|
+
--outline-filter: brightness(0) saturate(100%) invert(64%) sepia(15%)
|
472
|
+
saturate(306%) hue-rotate(6deg) brightness(87%) contrast(85%);
|
473
|
+
--md-sys-color-surface-container: rgb(244 237 223);
|
474
|
+
--md-sys-color-surface-container-high: rgb(238 232 218);
|
475
|
+
--md-sys-color-surface-container-highest: rgb(232 226 212);
|
476
|
+
}
|
477
|
+
.light-blue {
|
478
|
+
--light-filter: invert(93%) hue-rotate(180deg);
|
479
|
+
--md-sys-color-primary: rgb(65 95 145);
|
480
|
+
--md-sys-color-surface-tint: rgb(65 95 145);
|
481
|
+
--md-sys-color-on-primary: rgb(255 255 255);
|
482
|
+
--md-sys-color-primary-container: rgb(214 227 255);
|
483
|
+
--md-sys-color-on-primary-container: rgb(0 27 62);
|
484
|
+
--md-sys-color-secondary: rgb(86 94 113);
|
485
|
+
--md-sys-color-on-secondary: rgb(255 255 255);
|
486
|
+
--md-sys-color-secondary-container: rgb(218 226 249);
|
487
|
+
--md-sys-color-on-secondary-container: rgb(19 28 43);
|
488
|
+
--md-sys-color-tertiary: rgb(112 85 117);
|
489
|
+
--md-sys-color-on-tertiary: rgb(255 255 255);
|
490
|
+
--md-sys-color-tertiary-container: rgb(250 216 253);
|
491
|
+
--md-sys-color-on-tertiary-container: rgb(40 19 46);
|
492
|
+
--md-sys-color-error: rgb(186 26 26);
|
493
|
+
--md-sys-color-on-error: rgb(255 255 255);
|
494
|
+
--md-sys-color-error-container: rgb(255 218 214);
|
495
|
+
--md-sys-color-on-error-container: rgb(65 0 2);
|
496
|
+
--md-sys-color-background: rgb(249 249 255);
|
497
|
+
--md-sys-color-on-background: rgb(25 28 32);
|
498
|
+
--md-sys-color-surface: rgb(249 249 255);
|
499
|
+
--md-sys-color-on-surface: #191c20;
|
500
|
+
--on-surface-filter: invert(7%) sepia(25%) saturate(417%) hue-rotate(174deg)
|
501
|
+
brightness(93%) contrast(91%);
|
502
|
+
--md-sys-color-surface-variant: rgb(224 226 236);
|
503
|
+
--md-sys-color-on-surface-variant: rgb(68 71 78);
|
504
|
+
--md-sys-color-outline: rgb(116 119 127);
|
505
|
+
--md-sys-color-outline-variant: rgb(196 198 208);
|
506
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
507
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
508
|
+
--md-sys-color-inverse-surface: rgb(46 48 54);
|
509
|
+
--md-sys-color-inverse-on-surface: rgb(240 240 247);
|
510
|
+
--md-sys-color-inverse-primary: rgb(170 199 255);
|
511
|
+
--md-sys-color-primary-fixed: rgb(214 227 255);
|
512
|
+
--md-sys-color-on-primary-fixed: rgb(0 27 62);
|
513
|
+
--md-sys-color-primary-fixed-dim: rgb(170 199 255);
|
514
|
+
--md-sys-color-on-primary-fixed-variant: rgb(40 71 119);
|
515
|
+
--md-sys-color-secondary-fixed: rgb(218 226 249);
|
516
|
+
--md-sys-color-on-secondary-fixed: rgb(19 28 43);
|
517
|
+
--md-sys-color-secondary-fixed-dim: rgb(190 198 220);
|
518
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(62 71 89);
|
519
|
+
--md-sys-color-tertiary-fixed: rgb(250 216 253);
|
520
|
+
--md-sys-color-on-tertiary-fixed: rgb(40 19 46);
|
521
|
+
--md-sys-color-tertiary-fixed-dim: rgb(221 188 224);
|
522
|
+
--md-sys-color-on-tertiary-fixed-variant: rgb(87 62 92);
|
523
|
+
--md-sys-color-surface-dim: rgb(217 217 224);
|
524
|
+
--md-sys-color-surface-bright: rgb(249 249 255);
|
525
|
+
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
526
|
+
--md-sys-color-surface-container-low: rgb(243 243 250);
|
527
|
+
--md-sys-color-surface-container: rgb(237 237 244);
|
528
|
+
--md-sys-color-surface-container-high: rgb(231 232 238);
|
529
|
+
--md-sys-color-surface-container-highest: rgb(226 226 233);
|
530
|
+
--outline-filter: brightness(0) saturate(100%) invert(61%) sepia(5%)
|
531
|
+
saturate(424%) hue-rotate(192deg) brightness(92%) contrast(92%);
|
532
|
+
}
|
533
|
+
.light-cyan {
|
534
|
+
--light-filter: invert(93%) hue-rotate(180deg);
|
535
|
+
--md-sys-color-primary: rgb(0 106 100);
|
536
|
+
--md-sys-color-surface-tint: rgb(0 106 100);
|
537
|
+
--md-sys-color-on-primary: rgb(255 255 255);
|
538
|
+
--md-sys-color-primary-container: rgb(157 242 233);
|
539
|
+
--md-sys-color-on-primary-container: rgb(0 32 30);
|
540
|
+
--md-sys-color-secondary: rgb(74 99 96);
|
541
|
+
--md-sys-color-on-secondary: rgb(255 255 255);
|
542
|
+
--md-sys-color-secondary-container: rgb(204 232 228);
|
543
|
+
--md-sys-color-on-secondary-container: rgb(5 31 29);
|
544
|
+
--md-sys-color-tertiary: rgb(72 97 122);
|
545
|
+
--md-sys-color-on-tertiary: rgb(255 255 255);
|
546
|
+
--md-sys-color-tertiary-container: rgb(207 229 255);
|
547
|
+
--md-sys-color-on-tertiary-container: rgb(0 29 52);
|
548
|
+
--md-sys-color-error: rgb(186 26 26);
|
549
|
+
--md-sys-color-on-error: rgb(255 255 255);
|
550
|
+
--md-sys-color-error-container: rgb(255 218 214);
|
551
|
+
--md-sys-color-on-error-container: rgb(65 0 2);
|
552
|
+
--md-sys-color-background: rgb(244 251 249);
|
553
|
+
--md-sys-color-on-background: rgb(22 29 28);
|
554
|
+
--md-sys-color-surface: rgb(244 251 249);
|
555
|
+
--md-sys-color-on-surface: #161d1c;
|
556
|
+
--on-surface-filter: invert(7%) sepia(7%) saturate(1616%) hue-rotate(122deg)
|
557
|
+
brightness(92%) contrast(90%);
|
558
|
+
--md-sys-color-surface-variant: rgb(218 229 226);
|
559
|
+
--md-sys-color-on-surface-variant: rgb(63 73 71);
|
560
|
+
--md-sys-color-outline: rgb(111 121 119);
|
561
|
+
--md-sys-color-outline-variant: rgb(190 201 198);
|
562
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
563
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
564
|
+
--md-sys-color-inverse-surface: rgb(43 50 49);
|
565
|
+
--outline-filter: brightness(0) saturate(100%) invert(66%) sepia(8%)
|
566
|
+
saturate(263%) hue-rotate(118deg) brightness(85%) contrast(87%);
|
567
|
+
--md-sys-color-inverse-on-surface: rgb(236 242 240);
|
568
|
+
--md-sys-color-inverse-primary: rgb(129 213 205);
|
569
|
+
--md-sys-color-primary-fixed: rgb(157 242 233);
|
570
|
+
--md-sys-color-on-primary-fixed: rgb(0 32 30);
|
571
|
+
--md-sys-color-primary-fixed-dim: rgb(129 213 205);
|
572
|
+
--md-sys-color-on-primary-fixed-variant: rgb(0 80 75);
|
573
|
+
--md-sys-color-secondary-fixed: rgb(204 232 228);
|
574
|
+
--md-sys-color-on-secondary-fixed: rgb(5 31 29);
|
575
|
+
--md-sys-color-secondary-fixed-dim: rgb(176 204 200);
|
576
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(50 75 73);
|
577
|
+
--md-sys-color-tertiary-fixed: rgb(207 229 255);
|
578
|
+
--md-sys-color-on-tertiary-fixed: rgb(0 29 52);
|
579
|
+
--md-sys-color-tertiary-fixed-dim: rgb(175 201 231);
|
580
|
+
--md-sys-color-on-tertiary-fixed-variant: rgb(48 73 98);
|
581
|
+
--md-sys-color-surface-dim: rgb(213 219 218);
|
582
|
+
--md-sys-color-surface-bright: rgb(244 251 249);
|
583
|
+
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
584
|
+
--md-sys-color-surface-container-low: rgb(239 245 243);
|
585
|
+
--md-sys-color-surface-container: rgb(233 239 237);
|
586
|
+
--md-sys-color-surface-container-high: rgb(227 233 232);
|
587
|
+
--md-sys-color-surface-container-highest: rgb(221 228 226);
|
588
|
+
}
|