@typlog/ui 0.10.1 → 0.11.1
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.
- package/README.md +5 -75
- package/dist/addons.css +113 -0
- package/dist/addons.d.ts +48 -0
- package/dist/addons.js +442 -0
- package/dist/base.css +726 -832
- package/dist/components/accordion.css +149 -0
- package/dist/components/avatar.css +131 -0
- package/dist/components/badge.css +75 -0
- package/dist/components/button.css +317 -0
- package/dist/components/card.css +86 -0
- package/dist/components/checkbox.css +90 -0
- package/dist/components/collapsible.css +27 -0
- package/dist/components/combobox.css +388 -0
- package/dist/components/dialog.css +488 -0
- package/dist/components/dropdown.css +204 -0
- package/dist/components/editable.css +34 -0
- package/dist/components/icon.css +109 -0
- package/dist/components/inputs.css +570 -0
- package/dist/components/inset.css +73 -0
- package/dist/components/pagination.css +299 -0
- package/dist/components/popover.css +69 -0
- package/dist/components/quota.css +14 -0
- package/dist/components/radio.css +211 -0
- package/dist/components/scrollarea.css +107 -0
- package/dist/components/select.css +308 -0
- package/dist/components/separator.css +26 -0
- package/dist/components/spinner.css +36 -0
- package/dist/components/switch.css +176 -0
- package/dist/components/table.css +198 -0
- package/dist/components/tabs.css +122 -0
- package/dist/components/toggle.css +188 -0
- package/dist/components/tooltip.css +37 -0
- package/dist/components.css +3548 -0
- package/dist/{index.d.ts → components.d.ts} +131 -107
- package/dist/{index.js → components.js} +323 -681
- package/package.json +28 -14
- package/dist/style.css +0 -10467
package/dist/base.css
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
:root,
|
|
3
|
-
.light,
|
|
4
|
-
.light-theme {
|
|
1
|
+
:root, .light, .light-theme {
|
|
5
2
|
--gray-1: #fcfcfc;
|
|
6
3
|
--gray-2: #f9f9f9;
|
|
7
4
|
--gray-3: #f0f0f0;
|
|
@@ -15,11 +12,10 @@
|
|
|
15
12
|
--gray-11: #646464;
|
|
16
13
|
--gray-12: #202020;
|
|
17
14
|
}
|
|
15
|
+
|
|
18
16
|
@supports (color: color(display-p3 1 1 1)) {
|
|
19
17
|
@media (color-gamut: p3) {
|
|
20
|
-
:root,
|
|
21
|
-
.light,
|
|
22
|
-
.light-theme {
|
|
18
|
+
:root, .light, .light-theme {
|
|
23
19
|
--gray-1: color(display-p3 0.988 0.988 0.988);
|
|
24
20
|
--gray-2: color(display-p3 0.975 0.975 0.975);
|
|
25
21
|
--gray-3: color(display-p3 0.939 0.939 0.939);
|
|
@@ -36,9 +32,7 @@
|
|
|
36
32
|
}
|
|
37
33
|
}
|
|
38
34
|
|
|
39
|
-
|
|
40
|
-
.dark,
|
|
41
|
-
.dark-theme {
|
|
35
|
+
.dark, .dark-theme {
|
|
42
36
|
--gray-1: #111111;
|
|
43
37
|
--gray-2: #191919;
|
|
44
38
|
--gray-3: #222222;
|
|
@@ -52,10 +46,10 @@
|
|
|
52
46
|
--gray-11: #b4b4b4;
|
|
53
47
|
--gray-12: #eeeeee;
|
|
54
48
|
}
|
|
49
|
+
|
|
55
50
|
@supports (color: color(display-p3 1 1 1)) {
|
|
56
51
|
@media (color-gamut: p3) {
|
|
57
|
-
.dark,
|
|
58
|
-
.dark-theme {
|
|
52
|
+
.dark, .dark-theme {
|
|
59
53
|
--gray-1: color(display-p3 0.067 0.067 0.067);
|
|
60
54
|
--gray-2: color(display-p3 0.098 0.098 0.098);
|
|
61
55
|
--gray-3: color(display-p3 0.135 0.135 0.135);
|
|
@@ -72,10 +66,7 @@
|
|
|
72
66
|
}
|
|
73
67
|
}
|
|
74
68
|
|
|
75
|
-
|
|
76
|
-
:root,
|
|
77
|
-
.light,
|
|
78
|
-
.light-theme {
|
|
69
|
+
:root, .light, .light-theme {
|
|
79
70
|
--gray-a1: #00000003;
|
|
80
71
|
--gray-a2: #00000006;
|
|
81
72
|
--gray-a3: #0000000f;
|
|
@@ -89,11 +80,10 @@
|
|
|
89
80
|
--gray-a11: #0000009b;
|
|
90
81
|
--gray-a12: #000000df;
|
|
91
82
|
}
|
|
83
|
+
|
|
92
84
|
@supports (color: color(display-p3 1 1 1)) {
|
|
93
85
|
@media (color-gamut: p3) {
|
|
94
|
-
:root,
|
|
95
|
-
.light,
|
|
96
|
-
.light-theme {
|
|
86
|
+
:root, .light, .light-theme {
|
|
97
87
|
--gray-a1: color(display-p3 0 0 0 / 0.012);
|
|
98
88
|
--gray-a2: color(display-p3 0 0 0 / 0.024);
|
|
99
89
|
--gray-a3: color(display-p3 0 0 0 / 0.063);
|
|
@@ -110,9 +100,7 @@
|
|
|
110
100
|
}
|
|
111
101
|
}
|
|
112
102
|
|
|
113
|
-
|
|
114
|
-
.dark,
|
|
115
|
-
.dark-theme {
|
|
103
|
+
.dark, .dark-theme {
|
|
116
104
|
--gray-a1: #00000000;
|
|
117
105
|
--gray-a2: #ffffff09;
|
|
118
106
|
--gray-a3: #ffffff12;
|
|
@@ -126,10 +114,10 @@
|
|
|
126
114
|
--gray-a11: #ffffffaf;
|
|
127
115
|
--gray-a12: #ffffffed;
|
|
128
116
|
}
|
|
117
|
+
|
|
129
118
|
@supports (color: color(display-p3 1 1 1)) {
|
|
130
119
|
@media (color-gamut: p3) {
|
|
131
|
-
.dark,
|
|
132
|
-
.dark-theme {
|
|
120
|
+
.dark, .dark-theme {
|
|
133
121
|
--gray-a1: color(display-p3 0 0 0 / 0);
|
|
134
122
|
--gray-a2: color(display-p3 1 1 1 / 0.034);
|
|
135
123
|
--gray-a3: color(display-p3 1 1 1 / 0.071);
|
|
@@ -146,10 +134,10 @@
|
|
|
146
134
|
}
|
|
147
135
|
}
|
|
148
136
|
|
|
149
|
-
/* src/styles/colors/gray.css */
|
|
150
137
|
:root {
|
|
151
138
|
--gray-contrast: white;
|
|
152
139
|
}
|
|
140
|
+
|
|
153
141
|
:root,
|
|
154
142
|
.light,
|
|
155
143
|
.light-theme {
|
|
@@ -162,6 +150,7 @@
|
|
|
162
150
|
}
|
|
163
151
|
}
|
|
164
152
|
}
|
|
153
|
+
|
|
165
154
|
.dark,
|
|
166
155
|
.dark-theme {
|
|
167
156
|
--gray-surface: #21212180;
|
|
@@ -174,10 +163,7 @@
|
|
|
174
163
|
}
|
|
175
164
|
}
|
|
176
165
|
|
|
177
|
-
|
|
178
|
-
:root,
|
|
179
|
-
.light,
|
|
180
|
-
.light-theme {
|
|
166
|
+
:root, .light, .light-theme {
|
|
181
167
|
--mauve-1: #fdfcfd;
|
|
182
168
|
--mauve-2: #faf9fb;
|
|
183
169
|
--mauve-3: #f2eff3;
|
|
@@ -191,11 +177,10 @@
|
|
|
191
177
|
--mauve-11: #65636d;
|
|
192
178
|
--mauve-12: #211f26;
|
|
193
179
|
}
|
|
180
|
+
|
|
194
181
|
@supports (color: color(display-p3 1 1 1)) {
|
|
195
182
|
@media (color-gamut: p3) {
|
|
196
|
-
:root,
|
|
197
|
-
.light,
|
|
198
|
-
.light-theme {
|
|
183
|
+
:root, .light, .light-theme {
|
|
199
184
|
--mauve-1: color(display-p3 0.991 0.988 0.992);
|
|
200
185
|
--mauve-2: color(display-p3 0.98 0.976 0.984);
|
|
201
186
|
--mauve-3: color(display-p3 0.946 0.938 0.952);
|
|
@@ -212,9 +197,7 @@
|
|
|
212
197
|
}
|
|
213
198
|
}
|
|
214
199
|
|
|
215
|
-
|
|
216
|
-
.dark,
|
|
217
|
-
.dark-theme {
|
|
200
|
+
.dark, .dark-theme {
|
|
218
201
|
--mauve-1: #121113;
|
|
219
202
|
--mauve-2: #1a191b;
|
|
220
203
|
--mauve-3: #232225;
|
|
@@ -228,10 +211,10 @@
|
|
|
228
211
|
--mauve-11: #b5b2bc;
|
|
229
212
|
--mauve-12: #eeeef0;
|
|
230
213
|
}
|
|
214
|
+
|
|
231
215
|
@supports (color: color(display-p3 1 1 1)) {
|
|
232
216
|
@media (color-gamut: p3) {
|
|
233
|
-
.dark,
|
|
234
|
-
.dark-theme {
|
|
217
|
+
.dark, .dark-theme {
|
|
235
218
|
--mauve-1: color(display-p3 0.07 0.067 0.074);
|
|
236
219
|
--mauve-2: color(display-p3 0.101 0.098 0.105);
|
|
237
220
|
--mauve-3: color(display-p3 0.138 0.134 0.144);
|
|
@@ -248,10 +231,7 @@
|
|
|
248
231
|
}
|
|
249
232
|
}
|
|
250
233
|
|
|
251
|
-
|
|
252
|
-
:root,
|
|
253
|
-
.light,
|
|
254
|
-
.light-theme {
|
|
234
|
+
:root, .light, .light-theme {
|
|
255
235
|
--mauve-a1: #55005503;
|
|
256
236
|
--mauve-a2: #2b005506;
|
|
257
237
|
--mauve-a3: #30004010;
|
|
@@ -265,11 +245,10 @@
|
|
|
265
245
|
--mauve-a11: #0400119c;
|
|
266
246
|
--mauve-a12: #020008e0;
|
|
267
247
|
}
|
|
248
|
+
|
|
268
249
|
@supports (color: color(display-p3 1 1 1)) {
|
|
269
250
|
@media (color-gamut: p3) {
|
|
270
|
-
:root,
|
|
271
|
-
.light,
|
|
272
|
-
.light-theme {
|
|
251
|
+
:root, .light, .light-theme {
|
|
273
252
|
--mauve-a1: color(display-p3 0.349 0.024 0.349 / 0.012);
|
|
274
253
|
--mauve-a2: color(display-p3 0.184 0.024 0.349 / 0.024);
|
|
275
254
|
--mauve-a3: color(display-p3 0.129 0.008 0.255 / 0.063);
|
|
@@ -286,9 +265,7 @@
|
|
|
286
265
|
}
|
|
287
266
|
}
|
|
288
267
|
|
|
289
|
-
|
|
290
|
-
.dark,
|
|
291
|
-
.dark-theme {
|
|
268
|
+
.dark, .dark-theme {
|
|
292
269
|
--mauve-a1: #00000000;
|
|
293
270
|
--mauve-a2: #f5f4f609;
|
|
294
271
|
--mauve-a3: #ebeaf814;
|
|
@@ -302,10 +279,10 @@
|
|
|
302
279
|
--mauve-a11: #f5f1ffb7;
|
|
303
280
|
--mauve-a12: #fdfdffef;
|
|
304
281
|
}
|
|
282
|
+
|
|
305
283
|
@supports (color: color(display-p3 1 1 1)) {
|
|
306
284
|
@media (color-gamut: p3) {
|
|
307
|
-
.dark,
|
|
308
|
-
.dark-theme {
|
|
285
|
+
.dark, .dark-theme {
|
|
309
286
|
--mauve-a1: color(display-p3 0 0 0 / 0);
|
|
310
287
|
--mauve-a2: color(display-p3 0.996 0.992 1 / 0.034);
|
|
311
288
|
--mauve-a3: color(display-p3 0.937 0.933 0.992 / 0.077);
|
|
@@ -322,10 +299,10 @@
|
|
|
322
299
|
}
|
|
323
300
|
}
|
|
324
301
|
|
|
325
|
-
/* src/styles/colors/mauve.css */
|
|
326
302
|
:root {
|
|
327
303
|
--mauve-contrast: white;
|
|
328
304
|
}
|
|
305
|
+
|
|
329
306
|
:root,
|
|
330
307
|
.light,
|
|
331
308
|
.light-theme {
|
|
@@ -338,6 +315,7 @@
|
|
|
338
315
|
}
|
|
339
316
|
}
|
|
340
317
|
}
|
|
318
|
+
|
|
341
319
|
.dark,
|
|
342
320
|
.dark-theme {
|
|
343
321
|
--mauve-surface: #22212380;
|
|
@@ -350,10 +328,7 @@
|
|
|
350
328
|
}
|
|
351
329
|
}
|
|
352
330
|
|
|
353
|
-
|
|
354
|
-
:root,
|
|
355
|
-
.light,
|
|
356
|
-
.light-theme {
|
|
331
|
+
:root, .light, .light-theme {
|
|
357
332
|
--slate-1: #fcfcfd;
|
|
358
333
|
--slate-2: #f9f9fb;
|
|
359
334
|
--slate-3: #f0f0f3;
|
|
@@ -367,11 +342,10 @@
|
|
|
367
342
|
--slate-11: #60646c;
|
|
368
343
|
--slate-12: #1c2024;
|
|
369
344
|
}
|
|
345
|
+
|
|
370
346
|
@supports (color: color(display-p3 1 1 1)) {
|
|
371
347
|
@media (color-gamut: p3) {
|
|
372
|
-
:root,
|
|
373
|
-
.light,
|
|
374
|
-
.light-theme {
|
|
348
|
+
:root, .light, .light-theme {
|
|
375
349
|
--slate-1: color(display-p3 0.988 0.988 0.992);
|
|
376
350
|
--slate-2: color(display-p3 0.976 0.976 0.984);
|
|
377
351
|
--slate-3: color(display-p3 0.94 0.941 0.953);
|
|
@@ -388,9 +362,7 @@
|
|
|
388
362
|
}
|
|
389
363
|
}
|
|
390
364
|
|
|
391
|
-
|
|
392
|
-
.dark,
|
|
393
|
-
.dark-theme {
|
|
365
|
+
.dark, .dark-theme {
|
|
394
366
|
--slate-1: #111113;
|
|
395
367
|
--slate-2: #18191b;
|
|
396
368
|
--slate-3: #212225;
|
|
@@ -404,10 +376,10 @@
|
|
|
404
376
|
--slate-11: #b0b4ba;
|
|
405
377
|
--slate-12: #edeef0;
|
|
406
378
|
}
|
|
379
|
+
|
|
407
380
|
@supports (color: color(display-p3 1 1 1)) {
|
|
408
381
|
@media (color-gamut: p3) {
|
|
409
|
-
.dark,
|
|
410
|
-
.dark-theme {
|
|
382
|
+
.dark, .dark-theme {
|
|
411
383
|
--slate-1: color(display-p3 0.067 0.067 0.074);
|
|
412
384
|
--slate-2: color(display-p3 0.095 0.098 0.105);
|
|
413
385
|
--slate-3: color(display-p3 0.13 0.135 0.145);
|
|
@@ -424,10 +396,7 @@
|
|
|
424
396
|
}
|
|
425
397
|
}
|
|
426
398
|
|
|
427
|
-
|
|
428
|
-
:root,
|
|
429
|
-
.light,
|
|
430
|
-
.light-theme {
|
|
399
|
+
:root, .light, .light-theme {
|
|
431
400
|
--slate-a1: #00005503;
|
|
432
401
|
--slate-a2: #00005506;
|
|
433
402
|
--slate-a3: #0000330f;
|
|
@@ -441,11 +410,10 @@
|
|
|
441
410
|
--slate-a11: #0007149f;
|
|
442
411
|
--slate-a12: #000509e3;
|
|
443
412
|
}
|
|
413
|
+
|
|
444
414
|
@supports (color: color(display-p3 1 1 1)) {
|
|
445
415
|
@media (color-gamut: p3) {
|
|
446
|
-
:root,
|
|
447
|
-
.light,
|
|
448
|
-
.light-theme {
|
|
416
|
+
:root, .light, .light-theme {
|
|
449
417
|
--slate-a1: color(display-p3 0.024 0.024 0.349 / 0.012);
|
|
450
418
|
--slate-a2: color(display-p3 0.024 0.024 0.349 / 0.024);
|
|
451
419
|
--slate-a3: color(display-p3 0.004 0.004 0.204 / 0.059);
|
|
@@ -462,9 +430,7 @@
|
|
|
462
430
|
}
|
|
463
431
|
}
|
|
464
432
|
|
|
465
|
-
|
|
466
|
-
.dark,
|
|
467
|
-
.dark-theme {
|
|
433
|
+
.dark, .dark-theme {
|
|
468
434
|
--slate-a1: #00000000;
|
|
469
435
|
--slate-a2: #d8f4f609;
|
|
470
436
|
--slate-a3: #ddeaf814;
|
|
@@ -478,10 +444,10 @@
|
|
|
478
444
|
--slate-a11: #f1f7feb5;
|
|
479
445
|
--slate-a12: #fcfdffef;
|
|
480
446
|
}
|
|
447
|
+
|
|
481
448
|
@supports (color: color(display-p3 1 1 1)) {
|
|
482
449
|
@media (color-gamut: p3) {
|
|
483
|
-
.dark,
|
|
484
|
-
.dark-theme {
|
|
450
|
+
.dark, .dark-theme {
|
|
485
451
|
--slate-a1: color(display-p3 0 0 0 / 0);
|
|
486
452
|
--slate-a2: color(display-p3 0.875 0.992 1 / 0.034);
|
|
487
453
|
--slate-a3: color(display-p3 0.882 0.933 0.992 / 0.077);
|
|
@@ -498,10 +464,10 @@
|
|
|
498
464
|
}
|
|
499
465
|
}
|
|
500
466
|
|
|
501
|
-
/* src/styles/colors/slate.css */
|
|
502
467
|
:root {
|
|
503
468
|
--slate-contrast: white;
|
|
504
469
|
}
|
|
470
|
+
|
|
505
471
|
:root,
|
|
506
472
|
.light,
|
|
507
473
|
.light-theme {
|
|
@@ -514,6 +480,7 @@
|
|
|
514
480
|
}
|
|
515
481
|
}
|
|
516
482
|
}
|
|
483
|
+
|
|
517
484
|
.dark,
|
|
518
485
|
.dark-theme {
|
|
519
486
|
--slate-surface: #1f212380;
|
|
@@ -526,10 +493,7 @@
|
|
|
526
493
|
}
|
|
527
494
|
}
|
|
528
495
|
|
|
529
|
-
|
|
530
|
-
:root,
|
|
531
|
-
.light,
|
|
532
|
-
.light-theme {
|
|
496
|
+
:root, .light, .light-theme {
|
|
533
497
|
--sage-1: #fbfdfc;
|
|
534
498
|
--sage-2: #f7f9f8;
|
|
535
499
|
--sage-3: #eef1f0;
|
|
@@ -543,11 +507,10 @@
|
|
|
543
507
|
--sage-11: #5f6563;
|
|
544
508
|
--sage-12: #1a211e;
|
|
545
509
|
}
|
|
510
|
+
|
|
546
511
|
@supports (color: color(display-p3 1 1 1)) {
|
|
547
512
|
@media (color-gamut: p3) {
|
|
548
|
-
:root,
|
|
549
|
-
.light,
|
|
550
|
-
.light-theme {
|
|
513
|
+
:root, .light, .light-theme {
|
|
551
514
|
--sage-1: color(display-p3 0.986 0.992 0.988);
|
|
552
515
|
--sage-2: color(display-p3 0.97 0.977 0.974);
|
|
553
516
|
--sage-3: color(display-p3 0.935 0.944 0.94);
|
|
@@ -564,9 +527,7 @@
|
|
|
564
527
|
}
|
|
565
528
|
}
|
|
566
529
|
|
|
567
|
-
|
|
568
|
-
.dark,
|
|
569
|
-
.dark-theme {
|
|
530
|
+
.dark, .dark-theme {
|
|
570
531
|
--sage-1: #101211;
|
|
571
532
|
--sage-2: #171918;
|
|
572
533
|
--sage-3: #202221;
|
|
@@ -580,10 +541,10 @@
|
|
|
580
541
|
--sage-11: #adb5b2;
|
|
581
542
|
--sage-12: #eceeed;
|
|
582
543
|
}
|
|
544
|
+
|
|
583
545
|
@supports (color: color(display-p3 1 1 1)) {
|
|
584
546
|
@media (color-gamut: p3) {
|
|
585
|
-
.dark,
|
|
586
|
-
.dark-theme {
|
|
547
|
+
.dark, .dark-theme {
|
|
587
548
|
--sage-1: color(display-p3 0.064 0.07 0.067);
|
|
588
549
|
--sage-2: color(display-p3 0.092 0.098 0.094);
|
|
589
550
|
--sage-3: color(display-p3 0.128 0.135 0.131);
|
|
@@ -600,10 +561,7 @@
|
|
|
600
561
|
}
|
|
601
562
|
}
|
|
602
563
|
|
|
603
|
-
|
|
604
|
-
:root,
|
|
605
|
-
.light,
|
|
606
|
-
.light-theme {
|
|
564
|
+
:root, .light, .light-theme {
|
|
607
565
|
--sage-a1: #00804004;
|
|
608
566
|
--sage-a2: #00402008;
|
|
609
567
|
--sage-a3: #002d1e11;
|
|
@@ -617,11 +575,10 @@
|
|
|
617
575
|
--sage-a11: #000a07a0;
|
|
618
576
|
--sage-a12: #000805e5;
|
|
619
577
|
}
|
|
578
|
+
|
|
620
579
|
@supports (color: color(display-p3 1 1 1)) {
|
|
621
580
|
@media (color-gamut: p3) {
|
|
622
|
-
:root,
|
|
623
|
-
.light,
|
|
624
|
-
.light-theme {
|
|
581
|
+
:root, .light, .light-theme {
|
|
625
582
|
--sage-a1: color(display-p3 0.024 0.514 0.267 / 0.016);
|
|
626
583
|
--sage-a2: color(display-p3 0.02 0.267 0.145 / 0.032);
|
|
627
584
|
--sage-a3: color(display-p3 0.008 0.184 0.125 / 0.067);
|
|
@@ -638,9 +595,7 @@
|
|
|
638
595
|
}
|
|
639
596
|
}
|
|
640
597
|
|
|
641
|
-
|
|
642
|
-
.dark,
|
|
643
|
-
.dark-theme {
|
|
598
|
+
.dark, .dark-theme {
|
|
644
599
|
--sage-a1: #00000000;
|
|
645
600
|
--sage-a2: #f0f2f108;
|
|
646
601
|
--sage-a3: #f3f5f412;
|
|
@@ -654,10 +609,10 @@
|
|
|
654
609
|
--sage-a11: #f4fefbb0;
|
|
655
610
|
--sage-a12: #fdfffeed;
|
|
656
611
|
}
|
|
612
|
+
|
|
657
613
|
@supports (color: color(display-p3 1 1 1)) {
|
|
658
614
|
@media (color-gamut: p3) {
|
|
659
|
-
.dark,
|
|
660
|
-
.dark-theme {
|
|
615
|
+
.dark, .dark-theme {
|
|
661
616
|
--sage-a1: color(display-p3 0 0 0 / 0);
|
|
662
617
|
--sage-a2: color(display-p3 0.976 0.988 0.984 / 0.03);
|
|
663
618
|
--sage-a3: color(display-p3 0.992 0.945 0.941 / 0.072);
|
|
@@ -674,10 +629,10 @@
|
|
|
674
629
|
}
|
|
675
630
|
}
|
|
676
631
|
|
|
677
|
-
/* src/styles/colors/sage.css */
|
|
678
632
|
:root {
|
|
679
633
|
--sage-contrast: white;
|
|
680
634
|
}
|
|
635
|
+
|
|
681
636
|
:root,
|
|
682
637
|
.light,
|
|
683
638
|
.light-theme {
|
|
@@ -690,6 +645,7 @@
|
|
|
690
645
|
}
|
|
691
646
|
}
|
|
692
647
|
}
|
|
648
|
+
|
|
693
649
|
.dark,
|
|
694
650
|
.dark-theme {
|
|
695
651
|
--sage-surface: #1e201f80;
|
|
@@ -702,10 +658,7 @@
|
|
|
702
658
|
}
|
|
703
659
|
}
|
|
704
660
|
|
|
705
|
-
|
|
706
|
-
:root,
|
|
707
|
-
.light,
|
|
708
|
-
.light-theme {
|
|
661
|
+
:root, .light, .light-theme {
|
|
709
662
|
--olive-1: #fcfdfc;
|
|
710
663
|
--olive-2: #f8faf8;
|
|
711
664
|
--olive-3: #eff1ef;
|
|
@@ -719,11 +672,10 @@
|
|
|
719
672
|
--olive-11: #60655f;
|
|
720
673
|
--olive-12: #1d211c;
|
|
721
674
|
}
|
|
675
|
+
|
|
722
676
|
@supports (color: color(display-p3 1 1 1)) {
|
|
723
677
|
@media (color-gamut: p3) {
|
|
724
|
-
:root,
|
|
725
|
-
.light,
|
|
726
|
-
.light-theme {
|
|
678
|
+
:root, .light, .light-theme {
|
|
727
679
|
--olive-1: color(display-p3 0.989 0.992 0.989);
|
|
728
680
|
--olive-2: color(display-p3 0.974 0.98 0.973);
|
|
729
681
|
--olive-3: color(display-p3 0.939 0.945 0.937);
|
|
@@ -740,9 +692,7 @@
|
|
|
740
692
|
}
|
|
741
693
|
}
|
|
742
694
|
|
|
743
|
-
|
|
744
|
-
.dark,
|
|
745
|
-
.dark-theme {
|
|
695
|
+
.dark, .dark-theme {
|
|
746
696
|
--olive-1: #111210;
|
|
747
697
|
--olive-2: #181917;
|
|
748
698
|
--olive-3: #212220;
|
|
@@ -756,10 +706,10 @@
|
|
|
756
706
|
--olive-11: #afb5ad;
|
|
757
707
|
--olive-12: #eceeec;
|
|
758
708
|
}
|
|
709
|
+
|
|
759
710
|
@supports (color: color(display-p3 1 1 1)) {
|
|
760
711
|
@media (color-gamut: p3) {
|
|
761
|
-
.dark,
|
|
762
|
-
.dark-theme {
|
|
712
|
+
.dark, .dark-theme {
|
|
763
713
|
--olive-1: color(display-p3 0.067 0.07 0.063);
|
|
764
714
|
--olive-2: color(display-p3 0.095 0.098 0.091);
|
|
765
715
|
--olive-3: color(display-p3 0.131 0.135 0.126);
|
|
@@ -776,10 +726,7 @@
|
|
|
776
726
|
}
|
|
777
727
|
}
|
|
778
728
|
|
|
779
|
-
|
|
780
|
-
:root,
|
|
781
|
-
.light,
|
|
782
|
-
.light-theme {
|
|
729
|
+
:root, .light, .light-theme {
|
|
783
730
|
--olive-a1: #00550003;
|
|
784
731
|
--olive-a2: #00490007;
|
|
785
732
|
--olive-a3: #00200010;
|
|
@@ -793,11 +740,10 @@
|
|
|
793
740
|
--olive-a11: #020a00a0;
|
|
794
741
|
--olive-a12: #010600e3;
|
|
795
742
|
}
|
|
743
|
+
|
|
796
744
|
@supports (color: color(display-p3 1 1 1)) {
|
|
797
745
|
@media (color-gamut: p3) {
|
|
798
|
-
:root,
|
|
799
|
-
.light,
|
|
800
|
-
.light-theme {
|
|
746
|
+
:root, .light, .light-theme {
|
|
801
747
|
--olive-a1: color(display-p3 0.024 0.349 0.024 / 0.012);
|
|
802
748
|
--olive-a2: color(display-p3 0.024 0.302 0.024 / 0.028);
|
|
803
749
|
--olive-a3: color(display-p3 0.008 0.129 0.008 / 0.063);
|
|
@@ -814,9 +760,7 @@
|
|
|
814
760
|
}
|
|
815
761
|
}
|
|
816
762
|
|
|
817
|
-
|
|
818
|
-
.dark,
|
|
819
|
-
.dark-theme {
|
|
763
|
+
.dark, .dark-theme {
|
|
820
764
|
--olive-a1: #00000000;
|
|
821
765
|
--olive-a2: #f1f2f008;
|
|
822
766
|
--olive-a3: #f4f5f312;
|
|
@@ -830,10 +774,10 @@
|
|
|
830
774
|
--olive-a11: #f6fef4b0;
|
|
831
775
|
--olive-a12: #fdfffded;
|
|
832
776
|
}
|
|
777
|
+
|
|
833
778
|
@supports (color: color(display-p3 1 1 1)) {
|
|
834
779
|
@media (color-gamut: p3) {
|
|
835
|
-
.dark,
|
|
836
|
-
.dark-theme {
|
|
780
|
+
.dark, .dark-theme {
|
|
837
781
|
--olive-a1: color(display-p3 0 0 0 / 0);
|
|
838
782
|
--olive-a2: color(display-p3 0.984 0.988 0.976 / 0.03);
|
|
839
783
|
--olive-a3: color(display-p3 0.992 0.996 0.988 / 0.068);
|
|
@@ -850,10 +794,10 @@
|
|
|
850
794
|
}
|
|
851
795
|
}
|
|
852
796
|
|
|
853
|
-
/* src/styles/colors/olive.css */
|
|
854
797
|
:root {
|
|
855
798
|
--olive-contrast: white;
|
|
856
799
|
}
|
|
800
|
+
|
|
857
801
|
:root,
|
|
858
802
|
.light,
|
|
859
803
|
.light-theme {
|
|
@@ -866,6 +810,7 @@
|
|
|
866
810
|
}
|
|
867
811
|
}
|
|
868
812
|
}
|
|
813
|
+
|
|
869
814
|
.dark,
|
|
870
815
|
.dark-theme {
|
|
871
816
|
--olive-surface: #1f201e80;
|
|
@@ -878,10 +823,7 @@
|
|
|
878
823
|
}
|
|
879
824
|
}
|
|
880
825
|
|
|
881
|
-
|
|
882
|
-
:root,
|
|
883
|
-
.light,
|
|
884
|
-
.light-theme {
|
|
826
|
+
:root, .light, .light-theme {
|
|
885
827
|
--sand-1: #fdfdfc;
|
|
886
828
|
--sand-2: #f9f9f8;
|
|
887
829
|
--sand-3: #f1f0ef;
|
|
@@ -895,11 +837,10 @@
|
|
|
895
837
|
--sand-11: #63635e;
|
|
896
838
|
--sand-12: #21201c;
|
|
897
839
|
}
|
|
840
|
+
|
|
898
841
|
@supports (color: color(display-p3 1 1 1)) {
|
|
899
842
|
@media (color-gamut: p3) {
|
|
900
|
-
:root,
|
|
901
|
-
.light,
|
|
902
|
-
.light-theme {
|
|
843
|
+
:root, .light, .light-theme {
|
|
903
844
|
--sand-1: color(display-p3 0.992 0.992 0.989);
|
|
904
845
|
--sand-2: color(display-p3 0.977 0.977 0.973);
|
|
905
846
|
--sand-3: color(display-p3 0.943 0.942 0.936);
|
|
@@ -916,9 +857,7 @@
|
|
|
916
857
|
}
|
|
917
858
|
}
|
|
918
859
|
|
|
919
|
-
|
|
920
|
-
.dark,
|
|
921
|
-
.dark-theme {
|
|
860
|
+
.dark, .dark-theme {
|
|
922
861
|
--sand-1: #111110;
|
|
923
862
|
--sand-2: #191918;
|
|
924
863
|
--sand-3: #222221;
|
|
@@ -932,10 +871,10 @@
|
|
|
932
871
|
--sand-11: #b5b3ad;
|
|
933
872
|
--sand-12: #eeeeec;
|
|
934
873
|
}
|
|
874
|
+
|
|
935
875
|
@supports (color: color(display-p3 1 1 1)) {
|
|
936
876
|
@media (color-gamut: p3) {
|
|
937
|
-
.dark,
|
|
938
|
-
.dark-theme {
|
|
877
|
+
.dark, .dark-theme {
|
|
939
878
|
--sand-1: color(display-p3 0.067 0.067 0.063);
|
|
940
879
|
--sand-2: color(display-p3 0.098 0.098 0.094);
|
|
941
880
|
--sand-3: color(display-p3 0.135 0.135 0.129);
|
|
@@ -952,10 +891,7 @@
|
|
|
952
891
|
}
|
|
953
892
|
}
|
|
954
893
|
|
|
955
|
-
|
|
956
|
-
:root,
|
|
957
|
-
.light,
|
|
958
|
-
.light-theme {
|
|
894
|
+
:root, .light, .light-theme {
|
|
959
895
|
--sand-a1: #55550003;
|
|
960
896
|
--sand-a2: #25250007;
|
|
961
897
|
--sand-a3: #20100010;
|
|
@@ -969,11 +905,10 @@
|
|
|
969
905
|
--sand-a11: #080800a1;
|
|
970
906
|
--sand-a12: #060500e3;
|
|
971
907
|
}
|
|
908
|
+
|
|
972
909
|
@supports (color: color(display-p3 1 1 1)) {
|
|
973
910
|
@media (color-gamut: p3) {
|
|
974
|
-
:root,
|
|
975
|
-
.light,
|
|
976
|
-
.light-theme {
|
|
911
|
+
:root, .light, .light-theme {
|
|
977
912
|
--sand-a1: color(display-p3 0.349 0.349 0.024 / 0.012);
|
|
978
913
|
--sand-a2: color(display-p3 0.161 0.161 0.024 / 0.028);
|
|
979
914
|
--sand-a3: color(display-p3 0.067 0.067 0.008 / 0.063);
|
|
@@ -990,9 +925,7 @@
|
|
|
990
925
|
}
|
|
991
926
|
}
|
|
992
927
|
|
|
993
|
-
|
|
994
|
-
.dark,
|
|
995
|
-
.dark-theme {
|
|
928
|
+
.dark, .dark-theme {
|
|
996
929
|
--sand-a1: #00000000;
|
|
997
930
|
--sand-a2: #f4f4f309;
|
|
998
931
|
--sand-a3: #f6f6f513;
|
|
@@ -1006,10 +939,10 @@
|
|
|
1006
939
|
--sand-a11: #fffcf4b0;
|
|
1007
940
|
--sand-a12: #fffffded;
|
|
1008
941
|
}
|
|
942
|
+
|
|
1009
943
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1010
944
|
@media (color-gamut: p3) {
|
|
1011
|
-
.dark,
|
|
1012
|
-
.dark-theme {
|
|
945
|
+
.dark, .dark-theme {
|
|
1013
946
|
--sand-a1: color(display-p3 0 0 0 / 0);
|
|
1014
947
|
--sand-a2: color(display-p3 0.992 0.992 0.988 / 0.034);
|
|
1015
948
|
--sand-a3: color(display-p3 0.996 0.996 0.992 / 0.072);
|
|
@@ -1026,10 +959,10 @@
|
|
|
1026
959
|
}
|
|
1027
960
|
}
|
|
1028
961
|
|
|
1029
|
-
/* src/styles/colors/sand.css */
|
|
1030
962
|
:root {
|
|
1031
963
|
--sand-contrast: white;
|
|
1032
964
|
}
|
|
965
|
+
|
|
1033
966
|
:root,
|
|
1034
967
|
.light,
|
|
1035
968
|
.light-theme {
|
|
@@ -1042,6 +975,7 @@
|
|
|
1042
975
|
}
|
|
1043
976
|
}
|
|
1044
977
|
}
|
|
978
|
+
|
|
1045
979
|
.dark,
|
|
1046
980
|
.dark-theme {
|
|
1047
981
|
--sand-surface: #21212080;
|
|
@@ -1054,10 +988,7 @@
|
|
|
1054
988
|
}
|
|
1055
989
|
}
|
|
1056
990
|
|
|
1057
|
-
|
|
1058
|
-
:root,
|
|
1059
|
-
.light,
|
|
1060
|
-
.light-theme {
|
|
991
|
+
:root, .light, .light-theme {
|
|
1061
992
|
--amber-1: #fefdfb;
|
|
1062
993
|
--amber-2: #fefbe9;
|
|
1063
994
|
--amber-3: #fff7c2;
|
|
@@ -1071,11 +1002,10 @@
|
|
|
1071
1002
|
--amber-11: #ab6400;
|
|
1072
1003
|
--amber-12: #4f3422;
|
|
1073
1004
|
}
|
|
1005
|
+
|
|
1074
1006
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1075
1007
|
@media (color-gamut: p3) {
|
|
1076
|
-
:root,
|
|
1077
|
-
.light,
|
|
1078
|
-
.light-theme {
|
|
1008
|
+
:root, .light, .light-theme {
|
|
1079
1009
|
--amber-1: color(display-p3 0.995 0.992 0.985);
|
|
1080
1010
|
--amber-2: color(display-p3 0.994 0.986 0.921);
|
|
1081
1011
|
--amber-3: color(display-p3 0.994 0.969 0.782);
|
|
@@ -1092,9 +1022,7 @@
|
|
|
1092
1022
|
}
|
|
1093
1023
|
}
|
|
1094
1024
|
|
|
1095
|
-
|
|
1096
|
-
.dark,
|
|
1097
|
-
.dark-theme {
|
|
1025
|
+
.dark, .dark-theme {
|
|
1098
1026
|
--amber-1: #16120c;
|
|
1099
1027
|
--amber-2: #1d180f;
|
|
1100
1028
|
--amber-3: #302008;
|
|
@@ -1108,10 +1036,10 @@
|
|
|
1108
1036
|
--amber-11: #ffca16;
|
|
1109
1037
|
--amber-12: #ffe7b3;
|
|
1110
1038
|
}
|
|
1039
|
+
|
|
1111
1040
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1112
1041
|
@media (color-gamut: p3) {
|
|
1113
|
-
.dark,
|
|
1114
|
-
.dark-theme {
|
|
1042
|
+
.dark, .dark-theme {
|
|
1115
1043
|
--amber-1: color(display-p3 0.082 0.07 0.05);
|
|
1116
1044
|
--amber-2: color(display-p3 0.111 0.094 0.064);
|
|
1117
1045
|
--amber-3: color(display-p3 0.178 0.128 0.049);
|
|
@@ -1128,10 +1056,7 @@
|
|
|
1128
1056
|
}
|
|
1129
1057
|
}
|
|
1130
1058
|
|
|
1131
|
-
|
|
1132
|
-
:root,
|
|
1133
|
-
.light,
|
|
1134
|
-
.light-theme {
|
|
1059
|
+
:root, .light, .light-theme {
|
|
1135
1060
|
--amber-a1: #c0800004;
|
|
1136
1061
|
--amber-a2: #f4d10016;
|
|
1137
1062
|
--amber-a3: #ffde003d;
|
|
@@ -1145,11 +1070,10 @@
|
|
|
1145
1070
|
--amber-a11: #ab6400;
|
|
1146
1071
|
--amber-a12: #341500dd;
|
|
1147
1072
|
}
|
|
1073
|
+
|
|
1148
1074
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1149
1075
|
@media (color-gamut: p3) {
|
|
1150
|
-
:root,
|
|
1151
|
-
.light,
|
|
1152
|
-
.light-theme {
|
|
1076
|
+
:root, .light, .light-theme {
|
|
1153
1077
|
--amber-a1: color(display-p3 0.757 0.514 0.024 / 0.016);
|
|
1154
1078
|
--amber-a2: color(display-p3 0.902 0.804 0.008 / 0.079);
|
|
1155
1079
|
--amber-a3: color(display-p3 0.965 0.859 0.004 / 0.22);
|
|
@@ -1166,9 +1090,7 @@
|
|
|
1166
1090
|
}
|
|
1167
1091
|
}
|
|
1168
1092
|
|
|
1169
|
-
|
|
1170
|
-
.dark,
|
|
1171
|
-
.dark-theme {
|
|
1093
|
+
.dark, .dark-theme {
|
|
1172
1094
|
--amber-a1: #e63c0006;
|
|
1173
1095
|
--amber-a2: #fd9b000d;
|
|
1174
1096
|
--amber-a3: #fa820022;
|
|
@@ -1182,10 +1104,10 @@
|
|
|
1182
1104
|
--amber-a11: #ffca16;
|
|
1183
1105
|
--amber-a12: #ffe7b3;
|
|
1184
1106
|
}
|
|
1107
|
+
|
|
1185
1108
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1186
1109
|
@media (color-gamut: p3) {
|
|
1187
|
-
.dark,
|
|
1188
|
-
.dark-theme {
|
|
1110
|
+
.dark, .dark-theme {
|
|
1189
1111
|
--amber-a1: color(display-p3 0.992 0.298 0 / 0.017);
|
|
1190
1112
|
--amber-a2: color(display-p3 0.988 0.651 0 / 0.047);
|
|
1191
1113
|
--amber-a3: color(display-p3 1 0.6 0 / 0.118);
|
|
@@ -1202,10 +1124,10 @@
|
|
|
1202
1124
|
}
|
|
1203
1125
|
}
|
|
1204
1126
|
|
|
1205
|
-
/* src/styles/colors/amber.css */
|
|
1206
1127
|
:root {
|
|
1207
|
-
--amber-contrast: #21201c;
|
|
1128
|
+
--amber-contrast: #21201c; /* light mode sand 12 */
|
|
1208
1129
|
}
|
|
1130
|
+
|
|
1209
1131
|
:root,
|
|
1210
1132
|
.light,
|
|
1211
1133
|
.light-theme {
|
|
@@ -1218,6 +1140,7 @@
|
|
|
1218
1140
|
}
|
|
1219
1141
|
}
|
|
1220
1142
|
}
|
|
1143
|
+
|
|
1221
1144
|
.dark,
|
|
1222
1145
|
.dark-theme {
|
|
1223
1146
|
--amber-surface: #271f1380;
|
|
@@ -1233,10 +1156,7 @@
|
|
|
1233
1156
|
}
|
|
1234
1157
|
}
|
|
1235
1158
|
|
|
1236
|
-
|
|
1237
|
-
:root,
|
|
1238
|
-
.light,
|
|
1239
|
-
.light-theme {
|
|
1159
|
+
:root, .light, .light-theme {
|
|
1240
1160
|
--blue-1: #fbfdff;
|
|
1241
1161
|
--blue-2: #f4faff;
|
|
1242
1162
|
--blue-3: #e6f4fe;
|
|
@@ -1250,11 +1170,10 @@
|
|
|
1250
1170
|
--blue-11: #0d74ce;
|
|
1251
1171
|
--blue-12: #113264;
|
|
1252
1172
|
}
|
|
1173
|
+
|
|
1253
1174
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1254
1175
|
@media (color-gamut: p3) {
|
|
1255
|
-
:root,
|
|
1256
|
-
.light,
|
|
1257
|
-
.light-theme {
|
|
1176
|
+
:root, .light, .light-theme {
|
|
1258
1177
|
--blue-1: color(display-p3 0.986 0.992 0.999);
|
|
1259
1178
|
--blue-2: color(display-p3 0.96 0.979 0.998);
|
|
1260
1179
|
--blue-3: color(display-p3 0.912 0.956 0.991);
|
|
@@ -1271,9 +1190,7 @@
|
|
|
1271
1190
|
}
|
|
1272
1191
|
}
|
|
1273
1192
|
|
|
1274
|
-
|
|
1275
|
-
.dark,
|
|
1276
|
-
.dark-theme {
|
|
1193
|
+
.dark, .dark-theme {
|
|
1277
1194
|
--blue-1: #0d1520;
|
|
1278
1195
|
--blue-2: #111927;
|
|
1279
1196
|
--blue-3: #0d2847;
|
|
@@ -1287,10 +1204,10 @@
|
|
|
1287
1204
|
--blue-11: #70b8ff;
|
|
1288
1205
|
--blue-12: #c2e6ff;
|
|
1289
1206
|
}
|
|
1207
|
+
|
|
1290
1208
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1291
1209
|
@media (color-gamut: p3) {
|
|
1292
|
-
.dark,
|
|
1293
|
-
.dark-theme {
|
|
1210
|
+
.dark, .dark-theme {
|
|
1294
1211
|
--blue-1: color(display-p3 0.057 0.081 0.122);
|
|
1295
1212
|
--blue-2: color(display-p3 0.072 0.098 0.147);
|
|
1296
1213
|
--blue-3: color(display-p3 0.078 0.154 0.27);
|
|
@@ -1307,10 +1224,7 @@
|
|
|
1307
1224
|
}
|
|
1308
1225
|
}
|
|
1309
1226
|
|
|
1310
|
-
|
|
1311
|
-
:root,
|
|
1312
|
-
.light,
|
|
1313
|
-
.light-theme {
|
|
1227
|
+
:root, .light, .light-theme {
|
|
1314
1228
|
--blue-a1: #0080ff04;
|
|
1315
1229
|
--blue-a2: #008cff0b;
|
|
1316
1230
|
--blue-a3: #008ff519;
|
|
@@ -1324,11 +1238,10 @@
|
|
|
1324
1238
|
--blue-a11: #006dcbf2;
|
|
1325
1239
|
--blue-a12: #002359ee;
|
|
1326
1240
|
}
|
|
1241
|
+
|
|
1327
1242
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1328
1243
|
@media (color-gamut: p3) {
|
|
1329
|
-
:root,
|
|
1330
|
-
.light,
|
|
1331
|
-
.light-theme {
|
|
1244
|
+
:root, .light, .light-theme {
|
|
1332
1245
|
--blue-a1: color(display-p3 0.024 0.514 1 / 0.016);
|
|
1333
1246
|
--blue-a2: color(display-p3 0.024 0.514 0.906 / 0.04);
|
|
1334
1247
|
--blue-a3: color(display-p3 0.012 0.506 0.914 / 0.087);
|
|
@@ -1345,9 +1258,7 @@
|
|
|
1345
1258
|
}
|
|
1346
1259
|
}
|
|
1347
1260
|
|
|
1348
|
-
|
|
1349
|
-
.dark,
|
|
1350
|
-
.dark-theme {
|
|
1261
|
+
.dark, .dark-theme {
|
|
1351
1262
|
--blue-a1: #004df211;
|
|
1352
1263
|
--blue-a2: #1166fb18;
|
|
1353
1264
|
--blue-a3: #0077ff3a;
|
|
@@ -1361,10 +1272,10 @@
|
|
|
1361
1272
|
--blue-a11: #70b8ff;
|
|
1362
1273
|
--blue-a12: #c2e6ff;
|
|
1363
1274
|
}
|
|
1275
|
+
|
|
1364
1276
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1365
1277
|
@media (color-gamut: p3) {
|
|
1366
|
-
.dark,
|
|
1367
|
-
.dark-theme {
|
|
1278
|
+
.dark, .dark-theme {
|
|
1368
1279
|
--blue-a1: color(display-p3 0 0.333 1 / 0.059);
|
|
1369
1280
|
--blue-a2: color(display-p3 0.114 0.435 0.988 / 0.085);
|
|
1370
1281
|
--blue-a3: color(display-p3 0.122 0.463 1 / 0.219);
|
|
@@ -1381,10 +1292,10 @@
|
|
|
1381
1292
|
}
|
|
1382
1293
|
}
|
|
1383
1294
|
|
|
1384
|
-
/* src/styles/colors/blue.css */
|
|
1385
1295
|
:root {
|
|
1386
1296
|
--blue-contrast: white;
|
|
1387
1297
|
}
|
|
1298
|
+
|
|
1388
1299
|
:root,
|
|
1389
1300
|
.light,
|
|
1390
1301
|
.light-theme {
|
|
@@ -1397,6 +1308,7 @@
|
|
|
1397
1308
|
}
|
|
1398
1309
|
}
|
|
1399
1310
|
}
|
|
1311
|
+
|
|
1400
1312
|
.dark,
|
|
1401
1313
|
.dark-theme {
|
|
1402
1314
|
--blue-surface: #11213d80;
|
|
@@ -1409,10 +1321,7 @@
|
|
|
1409
1321
|
}
|
|
1410
1322
|
}
|
|
1411
1323
|
|
|
1412
|
-
|
|
1413
|
-
:root,
|
|
1414
|
-
.light,
|
|
1415
|
-
.light-theme {
|
|
1324
|
+
:root, .light, .light-theme {
|
|
1416
1325
|
--bronze-1: #fdfcfc;
|
|
1417
1326
|
--bronze-2: #fdf7f5;
|
|
1418
1327
|
--bronze-3: #f6edea;
|
|
@@ -1426,11 +1335,10 @@
|
|
|
1426
1335
|
--bronze-11: #7d5e54;
|
|
1427
1336
|
--bronze-12: #43302b;
|
|
1428
1337
|
}
|
|
1338
|
+
|
|
1429
1339
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1430
1340
|
@media (color-gamut: p3) {
|
|
1431
|
-
:root,
|
|
1432
|
-
.light,
|
|
1433
|
-
.light-theme {
|
|
1341
|
+
:root, .light, .light-theme {
|
|
1434
1342
|
--bronze-1: color(display-p3 0.991 0.988 0.988);
|
|
1435
1343
|
--bronze-2: color(display-p3 0.989 0.97 0.961);
|
|
1436
1344
|
--bronze-3: color(display-p3 0.958 0.932 0.919);
|
|
@@ -1447,9 +1355,7 @@
|
|
|
1447
1355
|
}
|
|
1448
1356
|
}
|
|
1449
1357
|
|
|
1450
|
-
|
|
1451
|
-
.dark,
|
|
1452
|
-
.dark-theme {
|
|
1358
|
+
.dark, .dark-theme {
|
|
1453
1359
|
--bronze-1: #141110;
|
|
1454
1360
|
--bronze-2: #1c1917;
|
|
1455
1361
|
--bronze-3: #262220;
|
|
@@ -1463,10 +1369,10 @@
|
|
|
1463
1369
|
--bronze-11: #d4b3a5;
|
|
1464
1370
|
--bronze-12: #ede0d9;
|
|
1465
1371
|
}
|
|
1372
|
+
|
|
1466
1373
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1467
1374
|
@media (color-gamut: p3) {
|
|
1468
|
-
.dark,
|
|
1469
|
-
.dark-theme {
|
|
1375
|
+
.dark, .dark-theme {
|
|
1470
1376
|
--bronze-1: color(display-p3 0.076 0.067 0.063);
|
|
1471
1377
|
--bronze-2: color(display-p3 0.106 0.097 0.093);
|
|
1472
1378
|
--bronze-3: color(display-p3 0.147 0.132 0.125);
|
|
@@ -1483,10 +1389,7 @@
|
|
|
1483
1389
|
}
|
|
1484
1390
|
}
|
|
1485
1391
|
|
|
1486
|
-
|
|
1487
|
-
:root,
|
|
1488
|
-
.light,
|
|
1489
|
-
.light-theme {
|
|
1392
|
+
:root, .light, .light-theme {
|
|
1490
1393
|
--bronze-a1: #55000003;
|
|
1491
1394
|
--bronze-a2: #cc33000a;
|
|
1492
1395
|
--bronze-a3: #92250015;
|
|
@@ -1500,11 +1403,10 @@
|
|
|
1500
1403
|
--bronze-a11: #3d0f00ab;
|
|
1501
1404
|
--bronze-a12: #1d0600d4;
|
|
1502
1405
|
}
|
|
1406
|
+
|
|
1503
1407
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1504
1408
|
@media (color-gamut: p3) {
|
|
1505
|
-
:root,
|
|
1506
|
-
.light,
|
|
1507
|
-
.light-theme {
|
|
1409
|
+
:root, .light, .light-theme {
|
|
1508
1410
|
--bronze-a1: color(display-p3 0.349 0.024 0.024 / 0.012);
|
|
1509
1411
|
--bronze-a2: color(display-p3 0.71 0.22 0.024 / 0.04);
|
|
1510
1412
|
--bronze-a3: color(display-p3 0.482 0.2 0.008 / 0.083);
|
|
@@ -1521,9 +1423,7 @@
|
|
|
1521
1423
|
}
|
|
1522
1424
|
}
|
|
1523
1425
|
|
|
1524
|
-
|
|
1525
|
-
.dark,
|
|
1526
|
-
.dark-theme {
|
|
1426
|
+
.dark, .dark-theme {
|
|
1527
1427
|
--bronze-a1: #d1110004;
|
|
1528
1428
|
--bronze-a2: #fbbc910c;
|
|
1529
1429
|
--bronze-a3: #faceb817;
|
|
@@ -1537,10 +1437,10 @@
|
|
|
1537
1437
|
--bronze-a11: #ffd7c6d1;
|
|
1538
1438
|
--bronze-a12: #fff1e9ec;
|
|
1539
1439
|
}
|
|
1440
|
+
|
|
1540
1441
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1541
1442
|
@media (color-gamut: p3) {
|
|
1542
|
-
.dark,
|
|
1543
|
-
.dark-theme {
|
|
1443
|
+
.dark, .dark-theme {
|
|
1544
1444
|
--bronze-a1: color(display-p3 0.941 0.067 0 / 0.009);
|
|
1545
1445
|
--bronze-a2: color(display-p3 0.98 0.8 0.706 / 0.043);
|
|
1546
1446
|
--bronze-a3: color(display-p3 0.988 0.851 0.761 / 0.085);
|
|
@@ -1557,10 +1457,10 @@
|
|
|
1557
1457
|
}
|
|
1558
1458
|
}
|
|
1559
1459
|
|
|
1560
|
-
/* src/styles/colors/bronze.css */
|
|
1561
1460
|
:root {
|
|
1562
1461
|
--bronze-contrast: white;
|
|
1563
1462
|
}
|
|
1463
|
+
|
|
1564
1464
|
:root,
|
|
1565
1465
|
.light,
|
|
1566
1466
|
.light-theme {
|
|
@@ -1573,6 +1473,7 @@
|
|
|
1573
1473
|
}
|
|
1574
1474
|
}
|
|
1575
1475
|
}
|
|
1476
|
+
|
|
1576
1477
|
.dark,
|
|
1577
1478
|
.dark-theme {
|
|
1578
1479
|
--bronze-surface: #27211d80;
|
|
@@ -1585,10 +1486,7 @@
|
|
|
1585
1486
|
}
|
|
1586
1487
|
}
|
|
1587
1488
|
|
|
1588
|
-
|
|
1589
|
-
:root,
|
|
1590
|
-
.light,
|
|
1591
|
-
.light-theme {
|
|
1489
|
+
:root, .light, .light-theme {
|
|
1592
1490
|
--brown-1: #fefdfc;
|
|
1593
1491
|
--brown-2: #fcf9f6;
|
|
1594
1492
|
--brown-3: #f6eee7;
|
|
@@ -1602,11 +1500,10 @@
|
|
|
1602
1500
|
--brown-11: #815e46;
|
|
1603
1501
|
--brown-12: #3e332e;
|
|
1604
1502
|
}
|
|
1503
|
+
|
|
1605
1504
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1606
1505
|
@media (color-gamut: p3) {
|
|
1607
|
-
:root,
|
|
1608
|
-
.light,
|
|
1609
|
-
.light-theme {
|
|
1506
|
+
:root, .light, .light-theme {
|
|
1610
1507
|
--brown-1: color(display-p3 0.995 0.992 0.989);
|
|
1611
1508
|
--brown-2: color(display-p3 0.987 0.976 0.964);
|
|
1612
1509
|
--brown-3: color(display-p3 0.959 0.936 0.909);
|
|
@@ -1623,9 +1520,7 @@
|
|
|
1623
1520
|
}
|
|
1624
1521
|
}
|
|
1625
1522
|
|
|
1626
|
-
|
|
1627
|
-
.dark,
|
|
1628
|
-
.dark-theme {
|
|
1523
|
+
.dark, .dark-theme {
|
|
1629
1524
|
--brown-1: #12110f;
|
|
1630
1525
|
--brown-2: #1c1816;
|
|
1631
1526
|
--brown-3: #28211d;
|
|
@@ -1639,10 +1534,10 @@
|
|
|
1639
1534
|
--brown-11: #dbb594;
|
|
1640
1535
|
--brown-12: #f2e1ca;
|
|
1641
1536
|
}
|
|
1537
|
+
|
|
1642
1538
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1643
1539
|
@media (color-gamut: p3) {
|
|
1644
|
-
.dark,
|
|
1645
|
-
.dark-theme {
|
|
1540
|
+
.dark, .dark-theme {
|
|
1646
1541
|
--brown-1: color(display-p3 0.071 0.067 0.059);
|
|
1647
1542
|
--brown-2: color(display-p3 0.107 0.095 0.087);
|
|
1648
1543
|
--brown-3: color(display-p3 0.151 0.13 0.115);
|
|
@@ -1659,10 +1554,7 @@
|
|
|
1659
1554
|
}
|
|
1660
1555
|
}
|
|
1661
1556
|
|
|
1662
|
-
|
|
1663
|
-
:root,
|
|
1664
|
-
.light,
|
|
1665
|
-
.light-theme {
|
|
1557
|
+
:root, .light, .light-theme {
|
|
1666
1558
|
--brown-a1: #aa550003;
|
|
1667
1559
|
--brown-a2: #aa550009;
|
|
1668
1560
|
--brown-a3: #a04b0018;
|
|
@@ -1676,11 +1568,10 @@
|
|
|
1676
1568
|
--brown-a11: #522100b9;
|
|
1677
1569
|
--brown-a12: #140600d1;
|
|
1678
1570
|
}
|
|
1571
|
+
|
|
1679
1572
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1680
1573
|
@media (color-gamut: p3) {
|
|
1681
|
-
:root,
|
|
1682
|
-
.light,
|
|
1683
|
-
.light-theme {
|
|
1574
|
+
:root, .light, .light-theme {
|
|
1684
1575
|
--brown-a1: color(display-p3 0.675 0.349 0.024 / 0.012);
|
|
1685
1576
|
--brown-a2: color(display-p3 0.675 0.349 0.024 / 0.036);
|
|
1686
1577
|
--brown-a3: color(display-p3 0.573 0.314 0.012 / 0.091);
|
|
@@ -1697,9 +1588,7 @@
|
|
|
1697
1588
|
}
|
|
1698
1589
|
}
|
|
1699
1590
|
|
|
1700
|
-
|
|
1701
|
-
.dark,
|
|
1702
|
-
.dark-theme {
|
|
1591
|
+
.dark, .dark-theme {
|
|
1703
1592
|
--brown-a1: #91110002;
|
|
1704
1593
|
--brown-a2: #fba67c0c;
|
|
1705
1594
|
--brown-a3: #fcb58c19;
|
|
@@ -1713,10 +1602,10 @@
|
|
|
1713
1602
|
--brown-a11: #fed1aad9;
|
|
1714
1603
|
--brown-a12: #feecd4f2;
|
|
1715
1604
|
}
|
|
1605
|
+
|
|
1716
1606
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1717
1607
|
@media (color-gamut: p3) {
|
|
1718
|
-
.dark,
|
|
1719
|
-
.dark-theme {
|
|
1608
|
+
.dark, .dark-theme {
|
|
1720
1609
|
--brown-a1: color(display-p3 0.855 0.071 0 / 0.005);
|
|
1721
1610
|
--brown-a2: color(display-p3 0.98 0.706 0.525 / 0.043);
|
|
1722
1611
|
--brown-a3: color(display-p3 0.996 0.745 0.576 / 0.093);
|
|
@@ -1733,10 +1622,10 @@
|
|
|
1733
1622
|
}
|
|
1734
1623
|
}
|
|
1735
1624
|
|
|
1736
|
-
/* src/styles/colors/brown.css */
|
|
1737
1625
|
:root {
|
|
1738
1626
|
--brown-contrast: white;
|
|
1739
1627
|
}
|
|
1628
|
+
|
|
1740
1629
|
:root,
|
|
1741
1630
|
.light,
|
|
1742
1631
|
.light-theme {
|
|
@@ -1749,6 +1638,7 @@
|
|
|
1749
1638
|
}
|
|
1750
1639
|
}
|
|
1751
1640
|
}
|
|
1641
|
+
|
|
1752
1642
|
.dark,
|
|
1753
1643
|
.dark-theme {
|
|
1754
1644
|
--brown-surface: #271f1b80;
|
|
@@ -1761,10 +1651,7 @@
|
|
|
1761
1651
|
}
|
|
1762
1652
|
}
|
|
1763
1653
|
|
|
1764
|
-
|
|
1765
|
-
:root,
|
|
1766
|
-
.light,
|
|
1767
|
-
.light-theme {
|
|
1654
|
+
:root, .light, .light-theme {
|
|
1768
1655
|
--crimson-1: #fffcfd;
|
|
1769
1656
|
--crimson-2: #fef7f9;
|
|
1770
1657
|
--crimson-3: #ffe9f0;
|
|
@@ -1778,11 +1665,10 @@
|
|
|
1778
1665
|
--crimson-11: #cb1d63;
|
|
1779
1666
|
--crimson-12: #621639;
|
|
1780
1667
|
}
|
|
1668
|
+
|
|
1781
1669
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1782
1670
|
@media (color-gamut: p3) {
|
|
1783
|
-
:root,
|
|
1784
|
-
.light,
|
|
1785
|
-
.light-theme {
|
|
1671
|
+
:root, .light, .light-theme {
|
|
1786
1672
|
--crimson-1: color(display-p3 0.998 0.989 0.992);
|
|
1787
1673
|
--crimson-2: color(display-p3 0.991 0.969 0.976);
|
|
1788
1674
|
--crimson-3: color(display-p3 0.987 0.917 0.941);
|
|
@@ -1799,9 +1685,7 @@
|
|
|
1799
1685
|
}
|
|
1800
1686
|
}
|
|
1801
1687
|
|
|
1802
|
-
|
|
1803
|
-
.dark,
|
|
1804
|
-
.dark-theme {
|
|
1688
|
+
.dark, .dark-theme {
|
|
1805
1689
|
--crimson-1: #191114;
|
|
1806
1690
|
--crimson-2: #201318;
|
|
1807
1691
|
--crimson-3: #381525;
|
|
@@ -1815,10 +1699,10 @@
|
|
|
1815
1699
|
--crimson-11: #ff92ad;
|
|
1816
1700
|
--crimson-12: #fdd3e8;
|
|
1817
1701
|
}
|
|
1702
|
+
|
|
1818
1703
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1819
1704
|
@media (color-gamut: p3) {
|
|
1820
|
-
.dark,
|
|
1821
|
-
.dark-theme {
|
|
1705
|
+
.dark, .dark-theme {
|
|
1822
1706
|
--crimson-1: color(display-p3 0.093 0.068 0.078);
|
|
1823
1707
|
--crimson-2: color(display-p3 0.117 0.078 0.095);
|
|
1824
1708
|
--crimson-3: color(display-p3 0.203 0.091 0.143);
|
|
@@ -1835,10 +1719,7 @@
|
|
|
1835
1719
|
}
|
|
1836
1720
|
}
|
|
1837
1721
|
|
|
1838
|
-
|
|
1839
|
-
:root,
|
|
1840
|
-
.light,
|
|
1841
|
-
.light-theme {
|
|
1722
|
+
:root, .light, .light-theme {
|
|
1842
1723
|
--crimson-a1: #ff005503;
|
|
1843
1724
|
--crimson-a2: #e0004008;
|
|
1844
1725
|
--crimson-a3: #ff005216;
|
|
@@ -1852,11 +1733,10 @@
|
|
|
1852
1733
|
--crimson-a11: #c4004fe2;
|
|
1853
1734
|
--crimson-a12: #530026e9;
|
|
1854
1735
|
}
|
|
1736
|
+
|
|
1855
1737
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1856
1738
|
@media (color-gamut: p3) {
|
|
1857
|
-
:root,
|
|
1858
|
-
.light,
|
|
1859
|
-
.light-theme {
|
|
1739
|
+
:root, .light, .light-theme {
|
|
1860
1740
|
--crimson-a1: color(display-p3 0.675 0.024 0.349 / 0.012);
|
|
1861
1741
|
--crimson-a2: color(display-p3 0.757 0.02 0.267 / 0.032);
|
|
1862
1742
|
--crimson-a3: color(display-p3 0.859 0.008 0.294 / 0.083);
|
|
@@ -1873,9 +1753,7 @@
|
|
|
1873
1753
|
}
|
|
1874
1754
|
}
|
|
1875
1755
|
|
|
1876
|
-
|
|
1877
|
-
.dark,
|
|
1878
|
-
.dark-theme {
|
|
1756
|
+
.dark, .dark-theme {
|
|
1879
1757
|
--crimson-a1: #f4126709;
|
|
1880
1758
|
--crimson-a2: #f22f7a11;
|
|
1881
1759
|
--crimson-a3: #fe2a8b2a;
|
|
@@ -1889,10 +1767,10 @@
|
|
|
1889
1767
|
--crimson-a11: #ff92ad;
|
|
1890
1768
|
--crimson-a12: #ffd5eafd;
|
|
1891
1769
|
}
|
|
1770
|
+
|
|
1892
1771
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1893
1772
|
@media (color-gamut: p3) {
|
|
1894
|
-
.dark,
|
|
1895
|
-
.dark-theme {
|
|
1773
|
+
.dark, .dark-theme {
|
|
1896
1774
|
--crimson-a1: color(display-p3 0.984 0.071 0.463 / 0.03);
|
|
1897
1775
|
--crimson-a2: color(display-p3 0.996 0.282 0.569 / 0.055);
|
|
1898
1776
|
--crimson-a3: color(display-p3 0.996 0.227 0.573 / 0.148);
|
|
@@ -1909,10 +1787,10 @@
|
|
|
1909
1787
|
}
|
|
1910
1788
|
}
|
|
1911
1789
|
|
|
1912
|
-
/* src/styles/colors/crimson.css */
|
|
1913
1790
|
:root {
|
|
1914
1791
|
--crimson-contrast: white;
|
|
1915
1792
|
}
|
|
1793
|
+
|
|
1916
1794
|
:root,
|
|
1917
1795
|
.light,
|
|
1918
1796
|
.light-theme {
|
|
@@ -1925,6 +1803,7 @@
|
|
|
1925
1803
|
}
|
|
1926
1804
|
}
|
|
1927
1805
|
}
|
|
1806
|
+
|
|
1928
1807
|
.dark,
|
|
1929
1808
|
.dark-theme {
|
|
1930
1809
|
--crimson-surface: #2f151f80;
|
|
@@ -1937,10 +1816,7 @@
|
|
|
1937
1816
|
}
|
|
1938
1817
|
}
|
|
1939
1818
|
|
|
1940
|
-
|
|
1941
|
-
:root,
|
|
1942
|
-
.light,
|
|
1943
|
-
.light-theme {
|
|
1819
|
+
:root, .light, .light-theme {
|
|
1944
1820
|
--cyan-1: #fafdfe;
|
|
1945
1821
|
--cyan-2: #f2fafb;
|
|
1946
1822
|
--cyan-3: #def7f9;
|
|
@@ -1954,11 +1830,10 @@
|
|
|
1954
1830
|
--cyan-11: #107d98;
|
|
1955
1831
|
--cyan-12: #0d3c48;
|
|
1956
1832
|
}
|
|
1833
|
+
|
|
1957
1834
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1958
1835
|
@media (color-gamut: p3) {
|
|
1959
|
-
:root,
|
|
1960
|
-
.light,
|
|
1961
|
-
.light-theme {
|
|
1836
|
+
:root, .light, .light-theme {
|
|
1962
1837
|
--cyan-1: color(display-p3 0.982 0.992 0.996);
|
|
1963
1838
|
--cyan-2: color(display-p3 0.955 0.981 0.984);
|
|
1964
1839
|
--cyan-3: color(display-p3 0.888 0.965 0.975);
|
|
@@ -1975,9 +1850,7 @@
|
|
|
1975
1850
|
}
|
|
1976
1851
|
}
|
|
1977
1852
|
|
|
1978
|
-
|
|
1979
|
-
.dark,
|
|
1980
|
-
.dark-theme {
|
|
1853
|
+
.dark, .dark-theme {
|
|
1981
1854
|
--cyan-1: #0b161a;
|
|
1982
1855
|
--cyan-2: #101b20;
|
|
1983
1856
|
--cyan-3: #082c36;
|
|
@@ -1991,10 +1864,10 @@
|
|
|
1991
1864
|
--cyan-11: #4ccce6;
|
|
1992
1865
|
--cyan-12: #b6ecf7;
|
|
1993
1866
|
}
|
|
1867
|
+
|
|
1994
1868
|
@supports (color: color(display-p3 1 1 1)) {
|
|
1995
1869
|
@media (color-gamut: p3) {
|
|
1996
|
-
.dark,
|
|
1997
|
-
.dark-theme {
|
|
1870
|
+
.dark, .dark-theme {
|
|
1998
1871
|
--cyan-1: color(display-p3 0.053 0.085 0.098);
|
|
1999
1872
|
--cyan-2: color(display-p3 0.072 0.105 0.122);
|
|
2000
1873
|
--cyan-3: color(display-p3 0.073 0.168 0.209);
|
|
@@ -2011,10 +1884,7 @@
|
|
|
2011
1884
|
}
|
|
2012
1885
|
}
|
|
2013
1886
|
|
|
2014
|
-
|
|
2015
|
-
:root,
|
|
2016
|
-
.light,
|
|
2017
|
-
.light-theme {
|
|
1887
|
+
:root, .light, .light-theme {
|
|
2018
1888
|
--cyan-a1: #0099cc05;
|
|
2019
1889
|
--cyan-a2: #009db10d;
|
|
2020
1890
|
--cyan-a3: #00c2d121;
|
|
@@ -2028,11 +1898,10 @@
|
|
|
2028
1898
|
--cyan-a11: #007491ef;
|
|
2029
1899
|
--cyan-a12: #00323ef2;
|
|
2030
1900
|
}
|
|
1901
|
+
|
|
2031
1902
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2032
1903
|
@media (color-gamut: p3) {
|
|
2033
|
-
:root,
|
|
2034
|
-
.light,
|
|
2035
|
-
.light-theme {
|
|
1904
|
+
:root, .light, .light-theme {
|
|
2036
1905
|
--cyan-a1: color(display-p3 0.02 0.608 0.804 / 0.02);
|
|
2037
1906
|
--cyan-a2: color(display-p3 0.02 0.557 0.647 / 0.044);
|
|
2038
1907
|
--cyan-a3: color(display-p3 0.004 0.694 0.796 / 0.114);
|
|
@@ -2049,9 +1918,7 @@
|
|
|
2049
1918
|
}
|
|
2050
1919
|
}
|
|
2051
1920
|
|
|
2052
|
-
|
|
2053
|
-
.dark,
|
|
2054
|
-
.dark-theme {
|
|
1921
|
+
.dark, .dark-theme {
|
|
2055
1922
|
--cyan-a1: #0091f70a;
|
|
2056
1923
|
--cyan-a2: #02a7f211;
|
|
2057
1924
|
--cyan-a3: #00befd28;
|
|
@@ -2065,10 +1932,10 @@
|
|
|
2065
1932
|
--cyan-a11: #52e1fee5;
|
|
2066
1933
|
--cyan-a12: #bbf3fef7;
|
|
2067
1934
|
}
|
|
1935
|
+
|
|
2068
1936
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2069
1937
|
@media (color-gamut: p3) {
|
|
2070
|
-
.dark,
|
|
2071
|
-
.dark-theme {
|
|
1938
|
+
.dark, .dark-theme {
|
|
2072
1939
|
--cyan-a1: color(display-p3 0 0.647 0.992 / 0.034);
|
|
2073
1940
|
--cyan-a2: color(display-p3 0.133 0.733 1 / 0.059);
|
|
2074
1941
|
--cyan-a3: color(display-p3 0.122 0.741 0.996 / 0.152);
|
|
@@ -2085,10 +1952,10 @@
|
|
|
2085
1952
|
}
|
|
2086
1953
|
}
|
|
2087
1954
|
|
|
2088
|
-
/* src/styles/colors/cyan.css */
|
|
2089
1955
|
:root {
|
|
2090
1956
|
--cyan-contrast: white;
|
|
2091
1957
|
}
|
|
1958
|
+
|
|
2092
1959
|
:root,
|
|
2093
1960
|
.light,
|
|
2094
1961
|
.light-theme {
|
|
@@ -2101,6 +1968,7 @@
|
|
|
2101
1968
|
}
|
|
2102
1969
|
}
|
|
2103
1970
|
}
|
|
1971
|
+
|
|
2104
1972
|
.dark,
|
|
2105
1973
|
.dark-theme {
|
|
2106
1974
|
--cyan-surface: #11252d80;
|
|
@@ -2113,10 +1981,7 @@
|
|
|
2113
1981
|
}
|
|
2114
1982
|
}
|
|
2115
1983
|
|
|
2116
|
-
|
|
2117
|
-
:root,
|
|
2118
|
-
.light,
|
|
2119
|
-
.light-theme {
|
|
1984
|
+
:root, .light, .light-theme {
|
|
2120
1985
|
--gold-1: #fdfdfc;
|
|
2121
1986
|
--gold-2: #faf9f2;
|
|
2122
1987
|
--gold-3: #f2f0e7;
|
|
@@ -2130,11 +1995,10 @@
|
|
|
2130
1995
|
--gold-11: #71624b;
|
|
2131
1996
|
--gold-12: #3b352b;
|
|
2132
1997
|
}
|
|
1998
|
+
|
|
2133
1999
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2134
2000
|
@media (color-gamut: p3) {
|
|
2135
|
-
:root,
|
|
2136
|
-
.light,
|
|
2137
|
-
.light-theme {
|
|
2001
|
+
:root, .light, .light-theme {
|
|
2138
2002
|
--gold-1: color(display-p3 0.992 0.992 0.989);
|
|
2139
2003
|
--gold-2: color(display-p3 0.98 0.976 0.953);
|
|
2140
2004
|
--gold-3: color(display-p3 0.947 0.94 0.909);
|
|
@@ -2151,9 +2015,7 @@
|
|
|
2151
2015
|
}
|
|
2152
2016
|
}
|
|
2153
2017
|
|
|
2154
|
-
|
|
2155
|
-
.dark,
|
|
2156
|
-
.dark-theme {
|
|
2018
|
+
.dark, .dark-theme {
|
|
2157
2019
|
--gold-1: #121211;
|
|
2158
2020
|
--gold-2: #1b1a17;
|
|
2159
2021
|
--gold-3: #24231f;
|
|
@@ -2167,10 +2029,10 @@
|
|
|
2167
2029
|
--gold-11: #cbb99f;
|
|
2168
2030
|
--gold-12: #e8e2d9;
|
|
2169
2031
|
}
|
|
2032
|
+
|
|
2170
2033
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2171
2034
|
@media (color-gamut: p3) {
|
|
2172
|
-
.dark,
|
|
2173
|
-
.dark-theme {
|
|
2035
|
+
.dark, .dark-theme {
|
|
2174
2036
|
--gold-1: color(display-p3 0.071 0.071 0.067);
|
|
2175
2037
|
--gold-2: color(display-p3 0.104 0.101 0.09);
|
|
2176
2038
|
--gold-3: color(display-p3 0.141 0.136 0.122);
|
|
@@ -2187,10 +2049,7 @@
|
|
|
2187
2049
|
}
|
|
2188
2050
|
}
|
|
2189
2051
|
|
|
2190
|
-
|
|
2191
|
-
:root,
|
|
2192
|
-
.light,
|
|
2193
|
-
.light-theme {
|
|
2052
|
+
:root, .light, .light-theme {
|
|
2194
2053
|
--gold-a1: #55550003;
|
|
2195
2054
|
--gold-a2: #9d8a000d;
|
|
2196
2055
|
--gold-a3: #75600018;
|
|
@@ -2204,11 +2063,10 @@
|
|
|
2204
2063
|
--gold-a11: #362100b4;
|
|
2205
2064
|
--gold-a12: #130c00d4;
|
|
2206
2065
|
}
|
|
2066
|
+
|
|
2207
2067
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2208
2068
|
@media (color-gamut: p3) {
|
|
2209
|
-
:root,
|
|
2210
|
-
.light,
|
|
2211
|
-
.light-theme {
|
|
2069
|
+
:root, .light, .light-theme {
|
|
2212
2070
|
--gold-a1: color(display-p3 0.349 0.349 0.024 / 0.012);
|
|
2213
2071
|
--gold-a2: color(display-p3 0.592 0.514 0.024 / 0.048);
|
|
2214
2072
|
--gold-a3: color(display-p3 0.4 0.357 0.012 / 0.091);
|
|
@@ -2225,9 +2083,7 @@
|
|
|
2225
2083
|
}
|
|
2226
2084
|
}
|
|
2227
2085
|
|
|
2228
|
-
|
|
2229
|
-
.dark,
|
|
2230
|
-
.dark-theme {
|
|
2086
|
+
.dark, .dark-theme {
|
|
2231
2087
|
--gold-a1: #91911102;
|
|
2232
2088
|
--gold-a2: #f9e29d0b;
|
|
2233
2089
|
--gold-a3: #f8ecbb15;
|
|
@@ -2241,10 +2097,10 @@
|
|
|
2241
2097
|
--gold-a11: #fee7c6c8;
|
|
2242
2098
|
--gold-a12: #fef7ede7;
|
|
2243
2099
|
}
|
|
2100
|
+
|
|
2244
2101
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2245
2102
|
@media (color-gamut: p3) {
|
|
2246
|
-
.dark,
|
|
2247
|
-
.dark-theme {
|
|
2103
|
+
.dark, .dark-theme {
|
|
2248
2104
|
--gold-a1: color(display-p3 0.855 0.855 0.071 / 0.005);
|
|
2249
2105
|
--gold-a2: color(display-p3 0.98 0.89 0.616 / 0.043);
|
|
2250
2106
|
--gold-a3: color(display-p3 1 0.949 0.753 / 0.08);
|
|
@@ -2261,10 +2117,10 @@
|
|
|
2261
2117
|
}
|
|
2262
2118
|
}
|
|
2263
2119
|
|
|
2264
|
-
/* src/styles/colors/gold.css */
|
|
2265
2120
|
:root {
|
|
2266
2121
|
--gold-contrast: white;
|
|
2267
2122
|
}
|
|
2123
|
+
|
|
2268
2124
|
:root,
|
|
2269
2125
|
.light,
|
|
2270
2126
|
.light-theme {
|
|
@@ -2277,6 +2133,7 @@
|
|
|
2277
2133
|
}
|
|
2278
2134
|
}
|
|
2279
2135
|
}
|
|
2136
|
+
|
|
2280
2137
|
.dark,
|
|
2281
2138
|
.dark-theme {
|
|
2282
2139
|
--gold-surface: #25231d80;
|
|
@@ -2289,10 +2146,7 @@
|
|
|
2289
2146
|
}
|
|
2290
2147
|
}
|
|
2291
2148
|
|
|
2292
|
-
|
|
2293
|
-
:root,
|
|
2294
|
-
.light,
|
|
2295
|
-
.light-theme {
|
|
2149
|
+
:root, .light, .light-theme {
|
|
2296
2150
|
--grass-1: #fbfefb;
|
|
2297
2151
|
--grass-2: #f5fbf5;
|
|
2298
2152
|
--grass-3: #e9f6e9;
|
|
@@ -2306,11 +2160,10 @@
|
|
|
2306
2160
|
--grass-11: #2a7e3b;
|
|
2307
2161
|
--grass-12: #203c25;
|
|
2308
2162
|
}
|
|
2163
|
+
|
|
2309
2164
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2310
2165
|
@media (color-gamut: p3) {
|
|
2311
|
-
:root,
|
|
2312
|
-
.light,
|
|
2313
|
-
.light-theme {
|
|
2166
|
+
:root, .light, .light-theme {
|
|
2314
2167
|
--grass-1: color(display-p3 0.986 0.996 0.985);
|
|
2315
2168
|
--grass-2: color(display-p3 0.966 0.983 0.964);
|
|
2316
2169
|
--grass-3: color(display-p3 0.923 0.965 0.917);
|
|
@@ -2327,9 +2180,7 @@
|
|
|
2327
2180
|
}
|
|
2328
2181
|
}
|
|
2329
2182
|
|
|
2330
|
-
|
|
2331
|
-
.dark,
|
|
2332
|
-
.dark-theme {
|
|
2183
|
+
.dark, .dark-theme {
|
|
2333
2184
|
--grass-1: #0e1511;
|
|
2334
2185
|
--grass-2: #141a15;
|
|
2335
2186
|
--grass-3: #1b2a1e;
|
|
@@ -2343,10 +2194,10 @@
|
|
|
2343
2194
|
--grass-11: #71d083;
|
|
2344
2195
|
--grass-12: #c2f0c2;
|
|
2345
2196
|
}
|
|
2197
|
+
|
|
2346
2198
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2347
2199
|
@media (color-gamut: p3) {
|
|
2348
|
-
.dark,
|
|
2349
|
-
.dark-theme {
|
|
2200
|
+
.dark, .dark-theme {
|
|
2350
2201
|
--grass-1: color(display-p3 0.062 0.083 0.067);
|
|
2351
2202
|
--grass-2: color(display-p3 0.083 0.103 0.085);
|
|
2352
2203
|
--grass-3: color(display-p3 0.118 0.163 0.122);
|
|
@@ -2363,10 +2214,7 @@
|
|
|
2363
2214
|
}
|
|
2364
2215
|
}
|
|
2365
2216
|
|
|
2366
|
-
|
|
2367
|
-
:root,
|
|
2368
|
-
.light,
|
|
2369
|
-
.light-theme {
|
|
2217
|
+
:root, .light, .light-theme {
|
|
2370
2218
|
--grass-a1: #00c00004;
|
|
2371
2219
|
--grass-a2: #0099000a;
|
|
2372
2220
|
--grass-a3: #00970016;
|
|
@@ -2380,11 +2228,10 @@
|
|
|
2380
2228
|
--grass-a11: #006514d5;
|
|
2381
2229
|
--grass-a12: #002006df;
|
|
2382
2230
|
}
|
|
2231
|
+
|
|
2383
2232
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2384
2233
|
@media (color-gamut: p3) {
|
|
2385
|
-
:root,
|
|
2386
|
-
.light,
|
|
2387
|
-
.light-theme {
|
|
2234
|
+
:root, .light, .light-theme {
|
|
2388
2235
|
--grass-a1: color(display-p3 0.024 0.757 0.024 / 0.016);
|
|
2389
2236
|
--grass-a2: color(display-p3 0.024 0.565 0.024 / 0.036);
|
|
2390
2237
|
--grass-a3: color(display-p3 0.059 0.576 0.008 / 0.083);
|
|
@@ -2401,9 +2248,7 @@
|
|
|
2401
2248
|
}
|
|
2402
2249
|
}
|
|
2403
2250
|
|
|
2404
|
-
|
|
2405
|
-
.dark,
|
|
2406
|
-
.dark-theme {
|
|
2251
|
+
.dark, .dark-theme {
|
|
2407
2252
|
--grass-a1: #00de1205;
|
|
2408
2253
|
--grass-a2: #5ef7780a;
|
|
2409
2254
|
--grass-a3: #70fe8c1b;
|
|
@@ -2417,10 +2262,10 @@
|
|
|
2417
2262
|
--grass-a11: #89ff9fcd;
|
|
2418
2263
|
--grass-a12: #ceffceef;
|
|
2419
2264
|
}
|
|
2265
|
+
|
|
2420
2266
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2421
2267
|
@media (color-gamut: p3) {
|
|
2422
|
-
.dark,
|
|
2423
|
-
.dark-theme {
|
|
2268
|
+
.dark, .dark-theme {
|
|
2424
2269
|
--grass-a1: color(display-p3 0 0.992 0.071 / 0.017);
|
|
2425
2270
|
--grass-a2: color(display-p3 0.482 0.996 0.584 / 0.038);
|
|
2426
2271
|
--grass-a3: color(display-p3 0.549 0.992 0.588 / 0.106);
|
|
@@ -2437,10 +2282,10 @@
|
|
|
2437
2282
|
}
|
|
2438
2283
|
}
|
|
2439
2284
|
|
|
2440
|
-
/* src/styles/colors/grass.css */
|
|
2441
2285
|
:root {
|
|
2442
2286
|
--grass-contrast: white;
|
|
2443
2287
|
}
|
|
2288
|
+
|
|
2444
2289
|
:root,
|
|
2445
2290
|
.light,
|
|
2446
2291
|
.light-theme {
|
|
@@ -2453,6 +2298,7 @@
|
|
|
2453
2298
|
}
|
|
2454
2299
|
}
|
|
2455
2300
|
}
|
|
2301
|
+
|
|
2456
2302
|
.dark,
|
|
2457
2303
|
.dark-theme {
|
|
2458
2304
|
--grass-surface: #19231b80;
|
|
@@ -2465,10 +2311,7 @@
|
|
|
2465
2311
|
}
|
|
2466
2312
|
}
|
|
2467
2313
|
|
|
2468
|
-
|
|
2469
|
-
:root,
|
|
2470
|
-
.light,
|
|
2471
|
-
.light-theme {
|
|
2314
|
+
:root, .light, .light-theme {
|
|
2472
2315
|
--green-1: #fbfefc;
|
|
2473
2316
|
--green-2: #f4fbf6;
|
|
2474
2317
|
--green-3: #e6f6eb;
|
|
@@ -2482,11 +2325,10 @@
|
|
|
2482
2325
|
--green-11: #218358;
|
|
2483
2326
|
--green-12: #193b2d;
|
|
2484
2327
|
}
|
|
2328
|
+
|
|
2485
2329
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2486
2330
|
@media (color-gamut: p3) {
|
|
2487
|
-
:root,
|
|
2488
|
-
.light,
|
|
2489
|
-
.light-theme {
|
|
2331
|
+
:root, .light, .light-theme {
|
|
2490
2332
|
--green-1: color(display-p3 0.986 0.996 0.989);
|
|
2491
2333
|
--green-2: color(display-p3 0.963 0.983 0.967);
|
|
2492
2334
|
--green-3: color(display-p3 0.913 0.964 0.925);
|
|
@@ -2503,9 +2345,7 @@
|
|
|
2503
2345
|
}
|
|
2504
2346
|
}
|
|
2505
2347
|
|
|
2506
|
-
|
|
2507
|
-
.dark,
|
|
2508
|
-
.dark-theme {
|
|
2348
|
+
.dark, .dark-theme {
|
|
2509
2349
|
--green-1: #0e1512;
|
|
2510
2350
|
--green-2: #121b17;
|
|
2511
2351
|
--green-3: #132d21;
|
|
@@ -2519,10 +2359,10 @@
|
|
|
2519
2359
|
--green-11: #3dd68c;
|
|
2520
2360
|
--green-12: #b1f1cb;
|
|
2521
2361
|
}
|
|
2362
|
+
|
|
2522
2363
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2523
2364
|
@media (color-gamut: p3) {
|
|
2524
|
-
.dark,
|
|
2525
|
-
.dark-theme {
|
|
2365
|
+
.dark, .dark-theme {
|
|
2526
2366
|
--green-1: color(display-p3 0.062 0.083 0.071);
|
|
2527
2367
|
--green-2: color(display-p3 0.079 0.106 0.09);
|
|
2528
2368
|
--green-3: color(display-p3 0.1 0.173 0.133);
|
|
@@ -2539,10 +2379,7 @@
|
|
|
2539
2379
|
}
|
|
2540
2380
|
}
|
|
2541
2381
|
|
|
2542
|
-
|
|
2543
|
-
:root,
|
|
2544
|
-
.light,
|
|
2545
|
-
.light-theme {
|
|
2382
|
+
:root, .light, .light-theme {
|
|
2546
2383
|
--green-a1: #00c04004;
|
|
2547
2384
|
--green-a2: #00a32f0b;
|
|
2548
2385
|
--green-a3: #00a43319;
|
|
@@ -2556,11 +2393,10 @@
|
|
|
2556
2393
|
--green-a11: #00713fde;
|
|
2557
2394
|
--green-a12: #002616e6;
|
|
2558
2395
|
}
|
|
2396
|
+
|
|
2559
2397
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2560
2398
|
@media (color-gamut: p3) {
|
|
2561
|
-
:root,
|
|
2562
|
-
.light,
|
|
2563
|
-
.light-theme {
|
|
2399
|
+
:root, .light, .light-theme {
|
|
2564
2400
|
--green-a1: color(display-p3 0.024 0.757 0.267 / 0.016);
|
|
2565
2401
|
--green-a2: color(display-p3 0.024 0.565 0.129 / 0.036);
|
|
2566
2402
|
--green-a3: color(display-p3 0.012 0.596 0.145 / 0.087);
|
|
@@ -2577,9 +2413,7 @@
|
|
|
2577
2413
|
}
|
|
2578
2414
|
}
|
|
2579
2415
|
|
|
2580
|
-
|
|
2581
|
-
.dark,
|
|
2582
|
-
.dark-theme {
|
|
2416
|
+
.dark, .dark-theme {
|
|
2583
2417
|
--green-a1: #00de4505;
|
|
2584
2418
|
--green-a2: #29f99d0b;
|
|
2585
2419
|
--green-a3: #22ff991e;
|
|
@@ -2593,10 +2427,10 @@
|
|
|
2593
2427
|
--green-a11: #46fea5d4;
|
|
2594
2428
|
--green-a12: #bbffd7f0;
|
|
2595
2429
|
}
|
|
2430
|
+
|
|
2596
2431
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2597
2432
|
@media (color-gamut: p3) {
|
|
2598
|
-
.dark,
|
|
2599
|
-
.dark-theme {
|
|
2433
|
+
.dark, .dark-theme {
|
|
2600
2434
|
--green-a1: color(display-p3 0 0.992 0.298 / 0.017);
|
|
2601
2435
|
--green-a2: color(display-p3 0.341 0.98 0.616 / 0.043);
|
|
2602
2436
|
--green-a3: color(display-p3 0.376 0.996 0.655 / 0.114);
|
|
@@ -2613,10 +2447,10 @@
|
|
|
2613
2447
|
}
|
|
2614
2448
|
}
|
|
2615
2449
|
|
|
2616
|
-
/* src/styles/colors/green.css */
|
|
2617
2450
|
:root {
|
|
2618
2451
|
--green-contrast: white;
|
|
2619
2452
|
}
|
|
2453
|
+
|
|
2620
2454
|
:root,
|
|
2621
2455
|
.light,
|
|
2622
2456
|
.light-theme {
|
|
@@ -2629,6 +2463,7 @@
|
|
|
2629
2463
|
}
|
|
2630
2464
|
}
|
|
2631
2465
|
}
|
|
2466
|
+
|
|
2632
2467
|
.dark,
|
|
2633
2468
|
.dark-theme {
|
|
2634
2469
|
--green-surface: #15251d80;
|
|
@@ -2641,10 +2476,7 @@
|
|
|
2641
2476
|
}
|
|
2642
2477
|
}
|
|
2643
2478
|
|
|
2644
|
-
|
|
2645
|
-
:root,
|
|
2646
|
-
.light,
|
|
2647
|
-
.light-theme {
|
|
2479
|
+
:root, .light, .light-theme {
|
|
2648
2480
|
--indigo-1: #fdfdfe;
|
|
2649
2481
|
--indigo-2: #f7f9ff;
|
|
2650
2482
|
--indigo-3: #edf2fe;
|
|
@@ -2658,11 +2490,10 @@
|
|
|
2658
2490
|
--indigo-11: #3a5bc7;
|
|
2659
2491
|
--indigo-12: #1f2d5c;
|
|
2660
2492
|
}
|
|
2493
|
+
|
|
2661
2494
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2662
2495
|
@media (color-gamut: p3) {
|
|
2663
|
-
:root,
|
|
2664
|
-
.light,
|
|
2665
|
-
.light-theme {
|
|
2496
|
+
:root, .light, .light-theme {
|
|
2666
2497
|
--indigo-1: color(display-p3 0.992 0.992 0.996);
|
|
2667
2498
|
--indigo-2: color(display-p3 0.971 0.977 0.998);
|
|
2668
2499
|
--indigo-3: color(display-p3 0.933 0.948 0.992);
|
|
@@ -2679,9 +2510,7 @@
|
|
|
2679
2510
|
}
|
|
2680
2511
|
}
|
|
2681
2512
|
|
|
2682
|
-
|
|
2683
|
-
.dark,
|
|
2684
|
-
.dark-theme {
|
|
2513
|
+
.dark, .dark-theme {
|
|
2685
2514
|
--indigo-1: #11131f;
|
|
2686
2515
|
--indigo-2: #141726;
|
|
2687
2516
|
--indigo-3: #182449;
|
|
@@ -2695,10 +2524,10 @@
|
|
|
2695
2524
|
--indigo-11: #9eb1ff;
|
|
2696
2525
|
--indigo-12: #d6e1ff;
|
|
2697
2526
|
}
|
|
2527
|
+
|
|
2698
2528
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2699
2529
|
@media (color-gamut: p3) {
|
|
2700
|
-
.dark,
|
|
2701
|
-
.dark-theme {
|
|
2530
|
+
.dark, .dark-theme {
|
|
2702
2531
|
--indigo-1: color(display-p3 0.068 0.074 0.118);
|
|
2703
2532
|
--indigo-2: color(display-p3 0.081 0.089 0.144);
|
|
2704
2533
|
--indigo-3: color(display-p3 0.105 0.141 0.275);
|
|
@@ -2715,10 +2544,7 @@
|
|
|
2715
2544
|
}
|
|
2716
2545
|
}
|
|
2717
2546
|
|
|
2718
|
-
|
|
2719
|
-
:root,
|
|
2720
|
-
.light,
|
|
2721
|
-
.light-theme {
|
|
2547
|
+
:root, .light, .light-theme {
|
|
2722
2548
|
--indigo-a1: #00008002;
|
|
2723
2549
|
--indigo-a2: #0040ff08;
|
|
2724
2550
|
--indigo-a3: #0047f112;
|
|
@@ -2732,11 +2558,10 @@
|
|
|
2732
2558
|
--indigo-a11: #002bb7c5;
|
|
2733
2559
|
--indigo-a12: #001046e0;
|
|
2734
2560
|
}
|
|
2561
|
+
|
|
2735
2562
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2736
2563
|
@media (color-gamut: p3) {
|
|
2737
|
-
:root,
|
|
2738
|
-
.light,
|
|
2739
|
-
.light-theme {
|
|
2564
|
+
:root, .light, .light-theme {
|
|
2740
2565
|
--indigo-a1: color(display-p3 0.02 0.02 0.51 / 0.008);
|
|
2741
2566
|
--indigo-a2: color(display-p3 0.024 0.161 0.863 / 0.028);
|
|
2742
2567
|
--indigo-a3: color(display-p3 0.008 0.239 0.886 / 0.067);
|
|
@@ -2753,9 +2578,7 @@
|
|
|
2753
2578
|
}
|
|
2754
2579
|
}
|
|
2755
2580
|
|
|
2756
|
-
|
|
2757
|
-
.dark,
|
|
2758
|
-
.dark-theme {
|
|
2581
|
+
.dark, .dark-theme {
|
|
2759
2582
|
--indigo-a1: #1133ff0f;
|
|
2760
2583
|
--indigo-a2: #3354fa17;
|
|
2761
2584
|
--indigo-a3: #2f62ff3c;
|
|
@@ -2769,10 +2592,10 @@
|
|
|
2769
2592
|
--indigo-a11: #9eb1ff;
|
|
2770
2593
|
--indigo-a12: #d6e1ff;
|
|
2771
2594
|
}
|
|
2595
|
+
|
|
2772
2596
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2773
2597
|
@media (color-gamut: p3) {
|
|
2774
|
-
.dark,
|
|
2775
|
-
.dark-theme {
|
|
2598
|
+
.dark, .dark-theme {
|
|
2776
2599
|
--indigo-a1: color(display-p3 0.071 0.212 0.996 / 0.055);
|
|
2777
2600
|
--indigo-a2: color(display-p3 0.251 0.345 0.988 / 0.085);
|
|
2778
2601
|
--indigo-a3: color(display-p3 0.243 0.404 1 / 0.223);
|
|
@@ -2789,10 +2612,10 @@
|
|
|
2789
2612
|
}
|
|
2790
2613
|
}
|
|
2791
2614
|
|
|
2792
|
-
/* src/styles/colors/indigo.css */
|
|
2793
2615
|
:root {
|
|
2794
2616
|
--indigo-contrast: white;
|
|
2795
2617
|
}
|
|
2618
|
+
|
|
2796
2619
|
:root,
|
|
2797
2620
|
.light,
|
|
2798
2621
|
.light-theme {
|
|
@@ -2805,6 +2628,7 @@
|
|
|
2805
2628
|
}
|
|
2806
2629
|
}
|
|
2807
2630
|
}
|
|
2631
|
+
|
|
2808
2632
|
.dark,
|
|
2809
2633
|
.dark-theme {
|
|
2810
2634
|
--indigo-surface: #171d3b80;
|
|
@@ -2817,10 +2641,7 @@
|
|
|
2817
2641
|
}
|
|
2818
2642
|
}
|
|
2819
2643
|
|
|
2820
|
-
|
|
2821
|
-
:root,
|
|
2822
|
-
.light,
|
|
2823
|
-
.light-theme {
|
|
2644
|
+
:root, .light, .light-theme {
|
|
2824
2645
|
--iris-1: #fdfdff;
|
|
2825
2646
|
--iris-2: #f8f8ff;
|
|
2826
2647
|
--iris-3: #f0f1fe;
|
|
@@ -2834,11 +2655,10 @@
|
|
|
2834
2655
|
--iris-11: #5753c6;
|
|
2835
2656
|
--iris-12: #272962;
|
|
2836
2657
|
}
|
|
2658
|
+
|
|
2837
2659
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2838
2660
|
@media (color-gamut: p3) {
|
|
2839
|
-
:root,
|
|
2840
|
-
.light,
|
|
2841
|
-
.light-theme {
|
|
2661
|
+
:root, .light, .light-theme {
|
|
2842
2662
|
--iris-1: color(display-p3 0.992 0.992 0.999);
|
|
2843
2663
|
--iris-2: color(display-p3 0.972 0.973 0.998);
|
|
2844
2664
|
--iris-3: color(display-p3 0.943 0.945 0.992);
|
|
@@ -2855,9 +2675,7 @@
|
|
|
2855
2675
|
}
|
|
2856
2676
|
}
|
|
2857
2677
|
|
|
2858
|
-
|
|
2859
|
-
.dark,
|
|
2860
|
-
.dark-theme {
|
|
2678
|
+
.dark, .dark-theme {
|
|
2861
2679
|
--iris-1: #13131e;
|
|
2862
2680
|
--iris-2: #171625;
|
|
2863
2681
|
--iris-3: #202248;
|
|
@@ -2871,10 +2689,10 @@
|
|
|
2871
2689
|
--iris-11: #b1a9ff;
|
|
2872
2690
|
--iris-12: #e0dffe;
|
|
2873
2691
|
}
|
|
2692
|
+
|
|
2874
2693
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2875
2694
|
@media (color-gamut: p3) {
|
|
2876
|
-
.dark,
|
|
2877
|
-
.dark-theme {
|
|
2695
|
+
.dark, .dark-theme {
|
|
2878
2696
|
--iris-1: color(display-p3 0.075 0.075 0.114);
|
|
2879
2697
|
--iris-2: color(display-p3 0.089 0.086 0.14);
|
|
2880
2698
|
--iris-3: color(display-p3 0.128 0.134 0.272);
|
|
@@ -2891,10 +2709,7 @@
|
|
|
2891
2709
|
}
|
|
2892
2710
|
}
|
|
2893
2711
|
|
|
2894
|
-
|
|
2895
|
-
:root,
|
|
2896
|
-
.light,
|
|
2897
|
-
.light-theme {
|
|
2712
|
+
:root, .light, .light-theme {
|
|
2898
2713
|
--iris-a1: #0000ff02;
|
|
2899
2714
|
--iris-a2: #0000ff07;
|
|
2900
2715
|
--iris-a3: #0011ee0f;
|
|
@@ -2908,11 +2723,10 @@
|
|
|
2908
2723
|
--iris-a11: #0600abac;
|
|
2909
2724
|
--iris-a12: #000246d8;
|
|
2910
2725
|
}
|
|
2726
|
+
|
|
2911
2727
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2912
2728
|
@media (color-gamut: p3) {
|
|
2913
|
-
:root,
|
|
2914
|
-
.light,
|
|
2915
|
-
.light-theme {
|
|
2729
|
+
:root, .light, .light-theme {
|
|
2916
2730
|
--iris-a1: color(display-p3 0.02 0.02 1 / 0.008);
|
|
2917
2731
|
--iris-a2: color(display-p3 0.024 0.024 0.863 / 0.028);
|
|
2918
2732
|
--iris-a3: color(display-p3 0.004 0.071 0.871 / 0.059);
|
|
@@ -2929,9 +2743,7 @@
|
|
|
2929
2743
|
}
|
|
2930
2744
|
}
|
|
2931
2745
|
|
|
2932
|
-
|
|
2933
|
-
.dark,
|
|
2934
|
-
.dark-theme {
|
|
2746
|
+
.dark, .dark-theme {
|
|
2935
2747
|
--iris-a1: #3636fe0e;
|
|
2936
2748
|
--iris-a2: #564bf916;
|
|
2937
2749
|
--iris-a3: #525bff3b;
|
|
@@ -2945,10 +2757,10 @@
|
|
|
2945
2757
|
--iris-a11: #b1a9ff;
|
|
2946
2758
|
--iris-a12: #e1e0fffe;
|
|
2947
2759
|
}
|
|
2760
|
+
|
|
2948
2761
|
@supports (color: color(display-p3 1 1 1)) {
|
|
2949
2762
|
@media (color-gamut: p3) {
|
|
2950
|
-
.dark,
|
|
2951
|
-
.dark-theme {
|
|
2763
|
+
.dark, .dark-theme {
|
|
2952
2764
|
--iris-a1: color(display-p3 0.224 0.224 0.992 / 0.051);
|
|
2953
2765
|
--iris-a2: color(display-p3 0.361 0.314 1 / 0.08);
|
|
2954
2766
|
--iris-a3: color(display-p3 0.357 0.373 1 / 0.219);
|
|
@@ -2965,10 +2777,10 @@
|
|
|
2965
2777
|
}
|
|
2966
2778
|
}
|
|
2967
2779
|
|
|
2968
|
-
/* src/styles/colors/iris.css */
|
|
2969
2780
|
:root {
|
|
2970
2781
|
--iris-contrast: white;
|
|
2971
2782
|
}
|
|
2783
|
+
|
|
2972
2784
|
:root,
|
|
2973
2785
|
.light,
|
|
2974
2786
|
.light-theme {
|
|
@@ -2981,6 +2793,7 @@
|
|
|
2981
2793
|
}
|
|
2982
2794
|
}
|
|
2983
2795
|
}
|
|
2796
|
+
|
|
2984
2797
|
.dark,
|
|
2985
2798
|
.dark-theme {
|
|
2986
2799
|
--iris-surface: #1d1b3980;
|
|
@@ -2993,10 +2806,7 @@
|
|
|
2993
2806
|
}
|
|
2994
2807
|
}
|
|
2995
2808
|
|
|
2996
|
-
|
|
2997
|
-
:root,
|
|
2998
|
-
.light,
|
|
2999
|
-
.light-theme {
|
|
2809
|
+
:root, .light, .light-theme {
|
|
3000
2810
|
--jade-1: #fbfefd;
|
|
3001
2811
|
--jade-2: #f4fbf7;
|
|
3002
2812
|
--jade-3: #e6f7ed;
|
|
@@ -3010,11 +2820,10 @@
|
|
|
3010
2820
|
--jade-11: #208368;
|
|
3011
2821
|
--jade-12: #1d3b31;
|
|
3012
2822
|
}
|
|
2823
|
+
|
|
3013
2824
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3014
2825
|
@media (color-gamut: p3) {
|
|
3015
|
-
:root,
|
|
3016
|
-
.light,
|
|
3017
|
-
.light-theme {
|
|
2826
|
+
:root, .light, .light-theme {
|
|
3018
2827
|
--jade-1: color(display-p3 0.986 0.996 0.992);
|
|
3019
2828
|
--jade-2: color(display-p3 0.962 0.983 0.969);
|
|
3020
2829
|
--jade-3: color(display-p3 0.912 0.965 0.932);
|
|
@@ -3031,9 +2840,7 @@
|
|
|
3031
2840
|
}
|
|
3032
2841
|
}
|
|
3033
2842
|
|
|
3034
|
-
|
|
3035
|
-
.dark,
|
|
3036
|
-
.dark-theme {
|
|
2843
|
+
.dark, .dark-theme {
|
|
3037
2844
|
--jade-1: #0d1512;
|
|
3038
2845
|
--jade-2: #121c18;
|
|
3039
2846
|
--jade-3: #0f2e22;
|
|
@@ -3047,10 +2854,10 @@
|
|
|
3047
2854
|
--jade-11: #1fd8a4;
|
|
3048
2855
|
--jade-12: #adf0d4;
|
|
3049
2856
|
}
|
|
2857
|
+
|
|
3050
2858
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3051
2859
|
@media (color-gamut: p3) {
|
|
3052
|
-
.dark,
|
|
3053
|
-
.dark-theme {
|
|
2860
|
+
.dark, .dark-theme {
|
|
3054
2861
|
--jade-1: color(display-p3 0.059 0.083 0.071);
|
|
3055
2862
|
--jade-2: color(display-p3 0.078 0.11 0.094);
|
|
3056
2863
|
--jade-3: color(display-p3 0.091 0.176 0.138);
|
|
@@ -3067,10 +2874,7 @@
|
|
|
3067
2874
|
}
|
|
3068
2875
|
}
|
|
3069
2876
|
|
|
3070
|
-
|
|
3071
|
-
:root,
|
|
3072
|
-
.light,
|
|
3073
|
-
.light-theme {
|
|
2877
|
+
:root, .light, .light-theme {
|
|
3074
2878
|
--jade-a1: #00c08004;
|
|
3075
2879
|
--jade-a2: #00a3460b;
|
|
3076
2880
|
--jade-a3: #00ae4819;
|
|
@@ -3084,11 +2888,10 @@
|
|
|
3084
2888
|
--jade-a11: #007152df;
|
|
3085
2889
|
--jade-a12: #002217e2;
|
|
3086
2890
|
}
|
|
2891
|
+
|
|
3087
2892
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3088
2893
|
@media (color-gamut: p3) {
|
|
3089
|
-
:root,
|
|
3090
|
-
.light,
|
|
3091
|
-
.light-theme {
|
|
2894
|
+
:root, .light, .light-theme {
|
|
3092
2895
|
--jade-a1: color(display-p3 0.024 0.757 0.514 / 0.016);
|
|
3093
2896
|
--jade-a2: color(display-p3 0.024 0.612 0.22 / 0.04);
|
|
3094
2897
|
--jade-a3: color(display-p3 0.012 0.596 0.235 / 0.087);
|
|
@@ -3105,9 +2908,7 @@
|
|
|
3105
2908
|
}
|
|
3106
2909
|
}
|
|
3107
2910
|
|
|
3108
|
-
|
|
3109
|
-
.dark,
|
|
3110
|
-
.dark-theme {
|
|
2911
|
+
.dark, .dark-theme {
|
|
3111
2912
|
--jade-a1: #00de4505;
|
|
3112
2913
|
--jade-a2: #27fba60c;
|
|
3113
2914
|
--jade-a3: #02f99920;
|
|
@@ -3121,10 +2922,10 @@
|
|
|
3121
2922
|
--jade-a11: #21fec0d6;
|
|
3122
2923
|
--jade-a12: #b8ffe1ef;
|
|
3123
2924
|
}
|
|
2925
|
+
|
|
3124
2926
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3125
2927
|
@media (color-gamut: p3) {
|
|
3126
|
-
.dark,
|
|
3127
|
-
.dark-theme {
|
|
2928
|
+
.dark, .dark-theme {
|
|
3128
2929
|
--jade-a1: color(display-p3 0 0.992 0.298 / 0.017);
|
|
3129
2930
|
--jade-a2: color(display-p3 0.318 0.988 0.651 / 0.047);
|
|
3130
2931
|
--jade-a3: color(display-p3 0.267 1 0.667 / 0.118);
|
|
@@ -3141,10 +2942,10 @@
|
|
|
3141
2942
|
}
|
|
3142
2943
|
}
|
|
3143
2944
|
|
|
3144
|
-
/* src/styles/colors/jade.css */
|
|
3145
2945
|
:root {
|
|
3146
2946
|
--jade-contrast: white;
|
|
3147
2947
|
}
|
|
2948
|
+
|
|
3148
2949
|
:root,
|
|
3149
2950
|
.light,
|
|
3150
2951
|
.light-theme {
|
|
@@ -3157,6 +2958,7 @@
|
|
|
3157
2958
|
}
|
|
3158
2959
|
}
|
|
3159
2960
|
}
|
|
2961
|
+
|
|
3160
2962
|
.dark,
|
|
3161
2963
|
.dark-theme {
|
|
3162
2964
|
--jade-surface: #13271f80;
|
|
@@ -3169,10 +2971,7 @@
|
|
|
3169
2971
|
}
|
|
3170
2972
|
}
|
|
3171
2973
|
|
|
3172
|
-
|
|
3173
|
-
:root,
|
|
3174
|
-
.light,
|
|
3175
|
-
.light-theme {
|
|
2974
|
+
:root, .light, .light-theme {
|
|
3176
2975
|
--lime-1: #fcfdfa;
|
|
3177
2976
|
--lime-2: #f8faf3;
|
|
3178
2977
|
--lime-3: #eef6d6;
|
|
@@ -3186,11 +2985,10 @@
|
|
|
3186
2985
|
--lime-11: #5c7c2f;
|
|
3187
2986
|
--lime-12: #37401c;
|
|
3188
2987
|
}
|
|
2988
|
+
|
|
3189
2989
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3190
2990
|
@media (color-gamut: p3) {
|
|
3191
|
-
:root,
|
|
3192
|
-
.light,
|
|
3193
|
-
.light-theme {
|
|
2991
|
+
:root, .light, .light-theme {
|
|
3194
2992
|
--lime-1: color(display-p3 0.989 0.992 0.981);
|
|
3195
2993
|
--lime-2: color(display-p3 0.975 0.98 0.954);
|
|
3196
2994
|
--lime-3: color(display-p3 0.939 0.965 0.851);
|
|
@@ -3207,9 +3005,7 @@
|
|
|
3207
3005
|
}
|
|
3208
3006
|
}
|
|
3209
3007
|
|
|
3210
|
-
|
|
3211
|
-
.dark,
|
|
3212
|
-
.dark-theme {
|
|
3008
|
+
.dark, .dark-theme {
|
|
3213
3009
|
--lime-1: #11130c;
|
|
3214
3010
|
--lime-2: #151a10;
|
|
3215
3011
|
--lime-3: #1f2917;
|
|
@@ -3223,10 +3019,10 @@
|
|
|
3223
3019
|
--lime-11: #bde56c;
|
|
3224
3020
|
--lime-12: #e3f7ba;
|
|
3225
3021
|
}
|
|
3022
|
+
|
|
3226
3023
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3227
3024
|
@media (color-gamut: p3) {
|
|
3228
|
-
.dark,
|
|
3229
|
-
.dark-theme {
|
|
3025
|
+
.dark, .dark-theme {
|
|
3230
3026
|
--lime-1: color(display-p3 0.067 0.073 0.048);
|
|
3231
3027
|
--lime-2: color(display-p3 0.086 0.1 0.067);
|
|
3232
3028
|
--lime-3: color(display-p3 0.13 0.16 0.099);
|
|
@@ -3243,10 +3039,7 @@
|
|
|
3243
3039
|
}
|
|
3244
3040
|
}
|
|
3245
3041
|
|
|
3246
|
-
|
|
3247
|
-
:root,
|
|
3248
|
-
.light,
|
|
3249
|
-
.light-theme {
|
|
3042
|
+
:root, .light, .light-theme {
|
|
3250
3043
|
--lime-a1: #66990005;
|
|
3251
3044
|
--lime-a2: #6b95000c;
|
|
3252
3045
|
--lime-a3: #96c80029;
|
|
@@ -3260,11 +3053,10 @@
|
|
|
3260
3053
|
--lime-a11: #375f00d0;
|
|
3261
3054
|
--lime-a12: #1e2900e3;
|
|
3262
3055
|
}
|
|
3056
|
+
|
|
3263
3057
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3264
3058
|
@media (color-gamut: p3) {
|
|
3265
|
-
:root,
|
|
3266
|
-
.light,
|
|
3267
|
-
.light-theme {
|
|
3059
|
+
:root, .light, .light-theme {
|
|
3268
3060
|
--lime-a1: color(display-p3 0.412 0.608 0.02 / 0.02);
|
|
3269
3061
|
--lime-a2: color(display-p3 0.514 0.592 0.024 / 0.048);
|
|
3270
3062
|
--lime-a3: color(display-p3 0.584 0.765 0.008 / 0.15);
|
|
@@ -3281,9 +3073,7 @@
|
|
|
3281
3073
|
}
|
|
3282
3074
|
}
|
|
3283
3075
|
|
|
3284
|
-
|
|
3285
|
-
.dark,
|
|
3286
|
-
.dark-theme {
|
|
3076
|
+
.dark, .dark-theme {
|
|
3287
3077
|
--lime-a1: #11bb0003;
|
|
3288
3078
|
--lime-a2: #78f7000a;
|
|
3289
3079
|
--lime-a3: #9bfd4c1a;
|
|
@@ -3297,10 +3087,10 @@
|
|
|
3297
3087
|
--lime-a11: #d1fe77e4;
|
|
3298
3088
|
--lime-a12: #e9febff7;
|
|
3299
3089
|
}
|
|
3090
|
+
|
|
3300
3091
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3301
3092
|
@media (color-gamut: p3) {
|
|
3302
|
-
.dark,
|
|
3303
|
-
.dark-theme {
|
|
3093
|
+
.dark, .dark-theme {
|
|
3304
3094
|
--lime-a1: color(display-p3 0.067 0.941 0 / 0.009);
|
|
3305
3095
|
--lime-a2: color(display-p3 0.584 0.996 0.071 / 0.038);
|
|
3306
3096
|
--lime-a3: color(display-p3 0.69 1 0.38 / 0.101);
|
|
@@ -3317,10 +3107,10 @@
|
|
|
3317
3107
|
}
|
|
3318
3108
|
}
|
|
3319
3109
|
|
|
3320
|
-
/* src/styles/colors/lime.css */
|
|
3321
3110
|
:root {
|
|
3322
|
-
--lime-contrast: #1d211c;
|
|
3111
|
+
--lime-contrast: #1d211c; /* light mode olive 12 */
|
|
3323
3112
|
}
|
|
3113
|
+
|
|
3324
3114
|
:root,
|
|
3325
3115
|
.light,
|
|
3326
3116
|
.light-theme {
|
|
@@ -3333,6 +3123,7 @@
|
|
|
3333
3123
|
}
|
|
3334
3124
|
}
|
|
3335
3125
|
}
|
|
3126
|
+
|
|
3336
3127
|
.dark,
|
|
3337
3128
|
.dark-theme {
|
|
3338
3129
|
--lime-surface: #1b211580;
|
|
@@ -3348,10 +3139,7 @@
|
|
|
3348
3139
|
}
|
|
3349
3140
|
}
|
|
3350
3141
|
|
|
3351
|
-
|
|
3352
|
-
:root,
|
|
3353
|
-
.light,
|
|
3354
|
-
.light-theme {
|
|
3142
|
+
:root, .light, .light-theme {
|
|
3355
3143
|
--mint-1: #f9fefd;
|
|
3356
3144
|
--mint-2: #f2fbf9;
|
|
3357
3145
|
--mint-3: #ddf9f2;
|
|
@@ -3365,11 +3153,10 @@
|
|
|
3365
3153
|
--mint-11: #027864;
|
|
3366
3154
|
--mint-12: #16433c;
|
|
3367
3155
|
}
|
|
3156
|
+
|
|
3368
3157
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3369
3158
|
@media (color-gamut: p3) {
|
|
3370
|
-
:root,
|
|
3371
|
-
.light,
|
|
3372
|
-
.light-theme {
|
|
3159
|
+
:root, .light, .light-theme {
|
|
3373
3160
|
--mint-1: color(display-p3 0.98 0.995 0.992);
|
|
3374
3161
|
--mint-2: color(display-p3 0.957 0.985 0.977);
|
|
3375
3162
|
--mint-3: color(display-p3 0.888 0.972 0.95);
|
|
@@ -3386,9 +3173,7 @@
|
|
|
3386
3173
|
}
|
|
3387
3174
|
}
|
|
3388
3175
|
|
|
3389
|
-
|
|
3390
|
-
.dark,
|
|
3391
|
-
.dark-theme {
|
|
3176
|
+
.dark, .dark-theme {
|
|
3392
3177
|
--mint-1: #0e1515;
|
|
3393
3178
|
--mint-2: #0f1b1b;
|
|
3394
3179
|
--mint-3: #092c2b;
|
|
@@ -3402,10 +3187,10 @@
|
|
|
3402
3187
|
--mint-11: #58d5ba;
|
|
3403
3188
|
--mint-12: #c4f5e1;
|
|
3404
3189
|
}
|
|
3190
|
+
|
|
3405
3191
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3406
3192
|
@media (color-gamut: p3) {
|
|
3407
|
-
.dark,
|
|
3408
|
-
.dark-theme {
|
|
3193
|
+
.dark, .dark-theme {
|
|
3409
3194
|
--mint-1: color(display-p3 0.059 0.082 0.081);
|
|
3410
3195
|
--mint-2: color(display-p3 0.068 0.104 0.105);
|
|
3411
3196
|
--mint-3: color(display-p3 0.077 0.17 0.168);
|
|
@@ -3422,10 +3207,7 @@
|
|
|
3422
3207
|
}
|
|
3423
3208
|
}
|
|
3424
3209
|
|
|
3425
|
-
|
|
3426
|
-
:root,
|
|
3427
|
-
.light,
|
|
3428
|
-
.light-theme {
|
|
3210
|
+
:root, .light, .light-theme {
|
|
3429
3211
|
--mint-a1: #00d5aa06;
|
|
3430
3212
|
--mint-a2: #00b18a0d;
|
|
3431
3213
|
--mint-a3: #00d29e22;
|
|
@@ -3439,11 +3221,10 @@
|
|
|
3439
3221
|
--mint-a11: #007763fd;
|
|
3440
3222
|
--mint-a12: #00312ae9;
|
|
3441
3223
|
}
|
|
3224
|
+
|
|
3442
3225
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3443
3226
|
@media (color-gamut: p3) {
|
|
3444
|
-
:root,
|
|
3445
|
-
.light,
|
|
3446
|
-
.light-theme {
|
|
3227
|
+
:root, .light, .light-theme {
|
|
3447
3228
|
--mint-a1: color(display-p3 0.02 0.804 0.608 / 0.02);
|
|
3448
3229
|
--mint-a2: color(display-p3 0.02 0.647 0.467 / 0.044);
|
|
3449
3230
|
--mint-a3: color(display-p3 0.004 0.761 0.553 / 0.114);
|
|
@@ -3460,9 +3241,7 @@
|
|
|
3460
3241
|
}
|
|
3461
3242
|
}
|
|
3462
3243
|
|
|
3463
|
-
|
|
3464
|
-
.dark,
|
|
3465
|
-
.dark-theme {
|
|
3244
|
+
.dark, .dark-theme {
|
|
3466
3245
|
--mint-a1: #00dede05;
|
|
3467
3246
|
--mint-a2: #00f9f90b;
|
|
3468
3247
|
--mint-a3: #00fff61d;
|
|
@@ -3476,10 +3255,10 @@
|
|
|
3476
3255
|
--mint-a11: #67ffded2;
|
|
3477
3256
|
--mint-a12: #cbfee9f5;
|
|
3478
3257
|
}
|
|
3258
|
+
|
|
3479
3259
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3480
3260
|
@media (color-gamut: p3) {
|
|
3481
|
-
.dark,
|
|
3482
|
-
.dark-theme {
|
|
3261
|
+
.dark, .dark-theme {
|
|
3483
3262
|
--mint-a1: color(display-p3 0 0.992 0.992 / 0.017);
|
|
3484
3263
|
--mint-a2: color(display-p3 0.071 0.98 0.98 / 0.043);
|
|
3485
3264
|
--mint-a3: color(display-p3 0.176 0.996 0.996 / 0.11);
|
|
@@ -3496,10 +3275,10 @@
|
|
|
3496
3275
|
}
|
|
3497
3276
|
}
|
|
3498
3277
|
|
|
3499
|
-
/* src/styles/colors/mint.css */
|
|
3500
3278
|
:root {
|
|
3501
|
-
--mint-contrast: #1a211e;
|
|
3279
|
+
--mint-contrast: #1a211e; /* light mode sage 12 */
|
|
3502
3280
|
}
|
|
3281
|
+
|
|
3503
3282
|
:root,
|
|
3504
3283
|
.light,
|
|
3505
3284
|
.light-theme {
|
|
@@ -3512,6 +3291,7 @@
|
|
|
3512
3291
|
}
|
|
3513
3292
|
}
|
|
3514
3293
|
}
|
|
3294
|
+
|
|
3515
3295
|
.dark,
|
|
3516
3296
|
.dark-theme {
|
|
3517
3297
|
--mint-surface: #15272780;
|
|
@@ -3527,10 +3307,7 @@
|
|
|
3527
3307
|
}
|
|
3528
3308
|
}
|
|
3529
3309
|
|
|
3530
|
-
|
|
3531
|
-
:root,
|
|
3532
|
-
.light,
|
|
3533
|
-
.light-theme {
|
|
3310
|
+
:root, .light, .light-theme {
|
|
3534
3311
|
--orange-1: #fefcfb;
|
|
3535
3312
|
--orange-2: #fff7ed;
|
|
3536
3313
|
--orange-3: #ffefd6;
|
|
@@ -3544,11 +3321,10 @@
|
|
|
3544
3321
|
--orange-11: #cc4e00;
|
|
3545
3322
|
--orange-12: #582d1d;
|
|
3546
3323
|
}
|
|
3324
|
+
|
|
3547
3325
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3548
3326
|
@media (color-gamut: p3) {
|
|
3549
|
-
:root,
|
|
3550
|
-
.light,
|
|
3551
|
-
.light-theme {
|
|
3327
|
+
:root, .light, .light-theme {
|
|
3552
3328
|
--orange-1: color(display-p3 0.995 0.988 0.985);
|
|
3553
3329
|
--orange-2: color(display-p3 0.994 0.968 0.934);
|
|
3554
3330
|
--orange-3: color(display-p3 0.989 0.938 0.85);
|
|
@@ -3565,9 +3341,7 @@
|
|
|
3565
3341
|
}
|
|
3566
3342
|
}
|
|
3567
3343
|
|
|
3568
|
-
|
|
3569
|
-
.dark,
|
|
3570
|
-
.dark-theme {
|
|
3344
|
+
.dark, .dark-theme {
|
|
3571
3345
|
--orange-1: #17120e;
|
|
3572
3346
|
--orange-2: #1e160f;
|
|
3573
3347
|
--orange-3: #331e0b;
|
|
@@ -3581,10 +3355,10 @@
|
|
|
3581
3355
|
--orange-11: #ffa057;
|
|
3582
3356
|
--orange-12: #ffe0c2;
|
|
3583
3357
|
}
|
|
3358
|
+
|
|
3584
3359
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3585
3360
|
@media (color-gamut: p3) {
|
|
3586
|
-
.dark,
|
|
3587
|
-
.dark-theme {
|
|
3361
|
+
.dark, .dark-theme {
|
|
3588
3362
|
--orange-1: color(display-p3 0.088 0.07 0.057);
|
|
3589
3363
|
--orange-2: color(display-p3 0.113 0.089 0.061);
|
|
3590
3364
|
--orange-3: color(display-p3 0.189 0.12 0.056);
|
|
@@ -3601,10 +3375,7 @@
|
|
|
3601
3375
|
}
|
|
3602
3376
|
}
|
|
3603
3377
|
|
|
3604
|
-
|
|
3605
|
-
:root,
|
|
3606
|
-
.light,
|
|
3607
|
-
.light-theme {
|
|
3378
|
+
:root, .light, .light-theme {
|
|
3608
3379
|
--orange-a1: #c0400004;
|
|
3609
3380
|
--orange-a2: #ff8e0012;
|
|
3610
3381
|
--orange-a3: #ff9c0029;
|
|
@@ -3618,11 +3389,10 @@
|
|
|
3618
3389
|
--orange-a11: #cc4e00;
|
|
3619
3390
|
--orange-a12: #431200e2;
|
|
3620
3391
|
}
|
|
3392
|
+
|
|
3621
3393
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3622
3394
|
@media (color-gamut: p3) {
|
|
3623
|
-
:root,
|
|
3624
|
-
.light,
|
|
3625
|
-
.light-theme {
|
|
3395
|
+
:root, .light, .light-theme {
|
|
3626
3396
|
--orange-a1: color(display-p3 0.757 0.267 0.024 / 0.016);
|
|
3627
3397
|
--orange-a2: color(display-p3 0.886 0.533 0.008 / 0.067);
|
|
3628
3398
|
--orange-a3: color(display-p3 0.922 0.584 0.008 / 0.15);
|
|
@@ -3639,9 +3409,7 @@
|
|
|
3639
3409
|
}
|
|
3640
3410
|
}
|
|
3641
3411
|
|
|
3642
|
-
|
|
3643
|
-
.dark,
|
|
3644
|
-
.dark-theme {
|
|
3412
|
+
.dark, .dark-theme {
|
|
3645
3413
|
--orange-a1: #ec360007;
|
|
3646
3414
|
--orange-a2: #fe6d000e;
|
|
3647
3415
|
--orange-a3: #fb6a0025;
|
|
@@ -3655,10 +3423,10 @@
|
|
|
3655
3423
|
--orange-a11: #ffa057;
|
|
3656
3424
|
--orange-a12: #ffe0c2;
|
|
3657
3425
|
}
|
|
3426
|
+
|
|
3658
3427
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3659
3428
|
@media (color-gamut: p3) {
|
|
3660
|
-
.dark,
|
|
3661
|
-
.dark-theme {
|
|
3429
|
+
.dark, .dark-theme {
|
|
3662
3430
|
--orange-a1: color(display-p3 0.961 0.247 0 / 0.022);
|
|
3663
3431
|
--orange-a2: color(display-p3 0.992 0.529 0 / 0.051);
|
|
3664
3432
|
--orange-a3: color(display-p3 0.996 0.486 0 / 0.131);
|
|
@@ -3675,10 +3443,10 @@
|
|
|
3675
3443
|
}
|
|
3676
3444
|
}
|
|
3677
3445
|
|
|
3678
|
-
/* src/styles/colors/orange.css */
|
|
3679
3446
|
:root {
|
|
3680
3447
|
--orange-contrast: white;
|
|
3681
3448
|
}
|
|
3449
|
+
|
|
3682
3450
|
:root,
|
|
3683
3451
|
.light,
|
|
3684
3452
|
.light-theme {
|
|
@@ -3691,6 +3459,7 @@
|
|
|
3691
3459
|
}
|
|
3692
3460
|
}
|
|
3693
3461
|
}
|
|
3462
|
+
|
|
3694
3463
|
.dark,
|
|
3695
3464
|
.dark-theme {
|
|
3696
3465
|
--orange-surface: #271d1380;
|
|
@@ -3703,10 +3472,7 @@
|
|
|
3703
3472
|
}
|
|
3704
3473
|
}
|
|
3705
3474
|
|
|
3706
|
-
|
|
3707
|
-
:root,
|
|
3708
|
-
.light,
|
|
3709
|
-
.light-theme {
|
|
3475
|
+
:root, .light, .light-theme {
|
|
3710
3476
|
--pink-1: #fffcfe;
|
|
3711
3477
|
--pink-2: #fef7fb;
|
|
3712
3478
|
--pink-3: #fee9f5;
|
|
@@ -3720,11 +3486,10 @@
|
|
|
3720
3486
|
--pink-11: #c2298a;
|
|
3721
3487
|
--pink-12: #651249;
|
|
3722
3488
|
}
|
|
3489
|
+
|
|
3723
3490
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3724
3491
|
@media (color-gamut: p3) {
|
|
3725
|
-
:root,
|
|
3726
|
-
.light,
|
|
3727
|
-
.light-theme {
|
|
3492
|
+
:root, .light, .light-theme {
|
|
3728
3493
|
--pink-1: color(display-p3 0.998 0.989 0.996);
|
|
3729
3494
|
--pink-2: color(display-p3 0.992 0.97 0.985);
|
|
3730
3495
|
--pink-3: color(display-p3 0.981 0.917 0.96);
|
|
@@ -3741,9 +3506,7 @@
|
|
|
3741
3506
|
}
|
|
3742
3507
|
}
|
|
3743
3508
|
|
|
3744
|
-
|
|
3745
|
-
.dark,
|
|
3746
|
-
.dark-theme {
|
|
3509
|
+
.dark, .dark-theme {
|
|
3747
3510
|
--pink-1: #191117;
|
|
3748
3511
|
--pink-2: #21121d;
|
|
3749
3512
|
--pink-3: #37172f;
|
|
@@ -3757,10 +3520,10 @@
|
|
|
3757
3520
|
--pink-11: #ff8dcc;
|
|
3758
3521
|
--pink-12: #fdd1ea;
|
|
3759
3522
|
}
|
|
3523
|
+
|
|
3760
3524
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3761
3525
|
@media (color-gamut: p3) {
|
|
3762
|
-
.dark,
|
|
3763
|
-
.dark-theme {
|
|
3526
|
+
.dark, .dark-theme {
|
|
3764
3527
|
--pink-1: color(display-p3 0.093 0.068 0.089);
|
|
3765
3528
|
--pink-2: color(display-p3 0.121 0.073 0.11);
|
|
3766
3529
|
--pink-3: color(display-p3 0.198 0.098 0.179);
|
|
@@ -3777,10 +3540,7 @@
|
|
|
3777
3540
|
}
|
|
3778
3541
|
}
|
|
3779
3542
|
|
|
3780
|
-
|
|
3781
|
-
:root,
|
|
3782
|
-
.light,
|
|
3783
|
-
.light-theme {
|
|
3543
|
+
:root, .light, .light-theme {
|
|
3784
3544
|
--pink-a1: #ff00aa03;
|
|
3785
3545
|
--pink-a2: #e0008008;
|
|
3786
3546
|
--pink-a3: #f4008c16;
|
|
@@ -3794,11 +3554,10 @@
|
|
|
3794
3554
|
--pink-a11: #b60074d6;
|
|
3795
3555
|
--pink-a12: #59003bed;
|
|
3796
3556
|
}
|
|
3557
|
+
|
|
3797
3558
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3798
3559
|
@media (color-gamut: p3) {
|
|
3799
|
-
:root,
|
|
3800
|
-
.light,
|
|
3801
|
-
.light-theme {
|
|
3560
|
+
:root, .light, .light-theme {
|
|
3802
3561
|
--pink-a1: color(display-p3 0.675 0.024 0.675 / 0.012);
|
|
3803
3562
|
--pink-a2: color(display-p3 0.757 0.02 0.51 / 0.032);
|
|
3804
3563
|
--pink-a3: color(display-p3 0.765 0.008 0.529 / 0.083);
|
|
@@ -3815,9 +3574,7 @@
|
|
|
3815
3574
|
}
|
|
3816
3575
|
}
|
|
3817
3576
|
|
|
3818
|
-
|
|
3819
|
-
.dark,
|
|
3820
|
-
.dark-theme {
|
|
3577
|
+
.dark, .dark-theme {
|
|
3821
3578
|
--pink-a1: #f412bc09;
|
|
3822
3579
|
--pink-a2: #f420bb12;
|
|
3823
3580
|
--pink-a3: #fe37cc29;
|
|
@@ -3831,10 +3588,10 @@
|
|
|
3831
3588
|
--pink-a11: #ff8dcc;
|
|
3832
3589
|
--pink-a12: #ffd3ecfd;
|
|
3833
3590
|
}
|
|
3591
|
+
|
|
3834
3592
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3835
3593
|
@media (color-gamut: p3) {
|
|
3836
|
-
.dark,
|
|
3837
|
-
.dark-theme {
|
|
3594
|
+
.dark, .dark-theme {
|
|
3838
3595
|
--pink-a1: color(display-p3 0.984 0.071 0.855 / 0.03);
|
|
3839
3596
|
--pink-a2: color(display-p3 1 0.2 0.8 / 0.059);
|
|
3840
3597
|
--pink-a3: color(display-p3 1 0.294 0.886 / 0.139);
|
|
@@ -3851,10 +3608,10 @@
|
|
|
3851
3608
|
}
|
|
3852
3609
|
}
|
|
3853
3610
|
|
|
3854
|
-
/* src/styles/colors/pink.css */
|
|
3855
3611
|
:root {
|
|
3856
3612
|
--pink-contrast: white;
|
|
3857
3613
|
}
|
|
3614
|
+
|
|
3858
3615
|
:root,
|
|
3859
3616
|
.light,
|
|
3860
3617
|
.light-theme {
|
|
@@ -3867,6 +3624,7 @@
|
|
|
3867
3624
|
}
|
|
3868
3625
|
}
|
|
3869
3626
|
}
|
|
3627
|
+
|
|
3870
3628
|
.dark,
|
|
3871
3629
|
.dark-theme {
|
|
3872
3630
|
--pink-surface: #31132980;
|
|
@@ -3879,10 +3637,7 @@
|
|
|
3879
3637
|
}
|
|
3880
3638
|
}
|
|
3881
3639
|
|
|
3882
|
-
|
|
3883
|
-
:root,
|
|
3884
|
-
.light,
|
|
3885
|
-
.light-theme {
|
|
3640
|
+
:root, .light, .light-theme {
|
|
3886
3641
|
--plum-1: #fefcff;
|
|
3887
3642
|
--plum-2: #fdf7fd;
|
|
3888
3643
|
--plum-3: #fbebfb;
|
|
@@ -3896,11 +3651,10 @@
|
|
|
3896
3651
|
--plum-11: #953ea3;
|
|
3897
3652
|
--plum-12: #53195d;
|
|
3898
3653
|
}
|
|
3654
|
+
|
|
3899
3655
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3900
3656
|
@media (color-gamut: p3) {
|
|
3901
|
-
:root,
|
|
3902
|
-
.light,
|
|
3903
|
-
.light-theme {
|
|
3657
|
+
:root, .light, .light-theme {
|
|
3904
3658
|
--plum-1: color(display-p3 0.995 0.988 0.999);
|
|
3905
3659
|
--plum-2: color(display-p3 0.988 0.971 0.99);
|
|
3906
3660
|
--plum-3: color(display-p3 0.973 0.923 0.98);
|
|
@@ -3917,9 +3671,7 @@
|
|
|
3917
3671
|
}
|
|
3918
3672
|
}
|
|
3919
3673
|
|
|
3920
|
-
|
|
3921
|
-
.dark,
|
|
3922
|
-
.dark-theme {
|
|
3674
|
+
.dark, .dark-theme {
|
|
3923
3675
|
--plum-1: #181118;
|
|
3924
3676
|
--plum-2: #201320;
|
|
3925
3677
|
--plum-3: #351a35;
|
|
@@ -3933,10 +3685,10 @@
|
|
|
3933
3685
|
--plum-11: #e796f3;
|
|
3934
3686
|
--plum-12: #f4d4f4;
|
|
3935
3687
|
}
|
|
3688
|
+
|
|
3936
3689
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3937
3690
|
@media (color-gamut: p3) {
|
|
3938
|
-
.dark,
|
|
3939
|
-
.dark-theme {
|
|
3691
|
+
.dark, .dark-theme {
|
|
3940
3692
|
--plum-1: color(display-p3 0.09 0.068 0.092);
|
|
3941
3693
|
--plum-2: color(display-p3 0.118 0.077 0.121);
|
|
3942
3694
|
--plum-3: color(display-p3 0.192 0.105 0.202);
|
|
@@ -3953,10 +3705,7 @@
|
|
|
3953
3705
|
}
|
|
3954
3706
|
}
|
|
3955
3707
|
|
|
3956
|
-
|
|
3957
|
-
:root,
|
|
3958
|
-
.light,
|
|
3959
|
-
.light-theme {
|
|
3708
|
+
:root, .light, .light-theme {
|
|
3960
3709
|
--plum-a1: #aa00ff03;
|
|
3961
3710
|
--plum-a2: #c000c008;
|
|
3962
3711
|
--plum-a3: #cc00cc14;
|
|
@@ -3970,11 +3719,10 @@
|
|
|
3970
3719
|
--plum-a11: #730086c1;
|
|
3971
3720
|
--plum-a12: #40004be6;
|
|
3972
3721
|
}
|
|
3722
|
+
|
|
3973
3723
|
@supports (color: color(display-p3 1 1 1)) {
|
|
3974
3724
|
@media (color-gamut: p3) {
|
|
3975
|
-
:root,
|
|
3976
|
-
.light,
|
|
3977
|
-
.light-theme {
|
|
3725
|
+
:root, .light, .light-theme {
|
|
3978
3726
|
--plum-a1: color(display-p3 0.675 0.024 1 / 0.012);
|
|
3979
3727
|
--plum-a2: color(display-p3 0.58 0.024 0.58 / 0.028);
|
|
3980
3728
|
--plum-a3: color(display-p3 0.655 0.008 0.753 / 0.079);
|
|
@@ -3991,9 +3739,7 @@
|
|
|
3991
3739
|
}
|
|
3992
3740
|
}
|
|
3993
3741
|
|
|
3994
|
-
|
|
3995
|
-
.dark,
|
|
3996
|
-
.dark-theme {
|
|
3742
|
+
.dark, .dark-theme {
|
|
3997
3743
|
--plum-a1: #f112f108;
|
|
3998
3744
|
--plum-a2: #f22ff211;
|
|
3999
3745
|
--plum-a3: #fd4cfd27;
|
|
@@ -4007,10 +3753,10 @@
|
|
|
4007
3753
|
--plum-a11: #f19cfef3;
|
|
4008
3754
|
--plum-a12: #feddfef4;
|
|
4009
3755
|
}
|
|
3756
|
+
|
|
4010
3757
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4011
3758
|
@media (color-gamut: p3) {
|
|
4012
|
-
.dark,
|
|
4013
|
-
.dark-theme {
|
|
3759
|
+
.dark, .dark-theme {
|
|
4014
3760
|
--plum-a1: color(display-p3 0.973 0.071 0.973 / 0.026);
|
|
4015
3761
|
--plum-a2: color(display-p3 0.933 0.267 1 / 0.059);
|
|
4016
3762
|
--plum-a3: color(display-p3 0.918 0.333 0.996 / 0.148);
|
|
@@ -4027,10 +3773,10 @@
|
|
|
4027
3773
|
}
|
|
4028
3774
|
}
|
|
4029
3775
|
|
|
4030
|
-
/* src/styles/colors/plum.css */
|
|
4031
3776
|
:root {
|
|
4032
3777
|
--plum-contrast: white;
|
|
4033
3778
|
}
|
|
3779
|
+
|
|
4034
3780
|
:root,
|
|
4035
3781
|
.light,
|
|
4036
3782
|
.light-theme {
|
|
@@ -4043,6 +3789,7 @@
|
|
|
4043
3789
|
}
|
|
4044
3790
|
}
|
|
4045
3791
|
}
|
|
3792
|
+
|
|
4046
3793
|
.dark,
|
|
4047
3794
|
.dark-theme {
|
|
4048
3795
|
--plum-surface: #2f152f80;
|
|
@@ -4055,10 +3802,7 @@
|
|
|
4055
3802
|
}
|
|
4056
3803
|
}
|
|
4057
3804
|
|
|
4058
|
-
|
|
4059
|
-
:root,
|
|
4060
|
-
.light,
|
|
4061
|
-
.light-theme {
|
|
3805
|
+
:root, .light, .light-theme {
|
|
4062
3806
|
--purple-1: #fefcfe;
|
|
4063
3807
|
--purple-2: #fbf7fe;
|
|
4064
3808
|
--purple-3: #f7edfe;
|
|
@@ -4072,11 +3816,10 @@
|
|
|
4072
3816
|
--purple-11: #8145b5;
|
|
4073
3817
|
--purple-12: #402060;
|
|
4074
3818
|
}
|
|
3819
|
+
|
|
4075
3820
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4076
3821
|
@media (color-gamut: p3) {
|
|
4077
|
-
:root,
|
|
4078
|
-
.light,
|
|
4079
|
-
.light-theme {
|
|
3822
|
+
:root, .light, .light-theme {
|
|
4080
3823
|
--purple-1: color(display-p3 0.995 0.988 0.996);
|
|
4081
3824
|
--purple-2: color(display-p3 0.983 0.971 0.993);
|
|
4082
3825
|
--purple-3: color(display-p3 0.963 0.931 0.989);
|
|
@@ -4093,9 +3836,7 @@
|
|
|
4093
3836
|
}
|
|
4094
3837
|
}
|
|
4095
3838
|
|
|
4096
|
-
|
|
4097
|
-
.dark,
|
|
4098
|
-
.dark-theme {
|
|
3839
|
+
.dark, .dark-theme {
|
|
4099
3840
|
--purple-1: #18111b;
|
|
4100
3841
|
--purple-2: #1e1523;
|
|
4101
3842
|
--purple-3: #301c3b;
|
|
@@ -4109,10 +3850,10 @@
|
|
|
4109
3850
|
--purple-11: #d19dff;
|
|
4110
3851
|
--purple-12: #ecd9fa;
|
|
4111
3852
|
}
|
|
3853
|
+
|
|
4112
3854
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4113
3855
|
@media (color-gamut: p3) {
|
|
4114
|
-
.dark,
|
|
4115
|
-
.dark-theme {
|
|
3856
|
+
.dark, .dark-theme {
|
|
4116
3857
|
--purple-1: color(display-p3 0.09 0.068 0.103);
|
|
4117
3858
|
--purple-2: color(display-p3 0.113 0.082 0.134);
|
|
4118
3859
|
--purple-3: color(display-p3 0.175 0.112 0.224);
|
|
@@ -4129,10 +3870,7 @@
|
|
|
4129
3870
|
}
|
|
4130
3871
|
}
|
|
4131
3872
|
|
|
4132
|
-
|
|
4133
|
-
:root,
|
|
4134
|
-
.light,
|
|
4135
|
-
.light-theme {
|
|
3873
|
+
:root, .light, .light-theme {
|
|
4136
3874
|
--purple-a1: #aa00aa03;
|
|
4137
3875
|
--purple-a2: #8000e008;
|
|
4138
3876
|
--purple-a3: #8e00f112;
|
|
@@ -4146,11 +3884,10 @@
|
|
|
4146
3884
|
--purple-a11: #52009aba;
|
|
4147
3885
|
--purple-a12: #250049df;
|
|
4148
3886
|
}
|
|
3887
|
+
|
|
4149
3888
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4150
3889
|
@media (color-gamut: p3) {
|
|
4151
|
-
:root,
|
|
4152
|
-
.light,
|
|
4153
|
-
.light-theme {
|
|
3890
|
+
:root, .light, .light-theme {
|
|
4154
3891
|
--purple-a1: color(display-p3 0.675 0.024 0.675 / 0.012);
|
|
4155
3892
|
--purple-a2: color(display-p3 0.443 0.024 0.722 / 0.028);
|
|
4156
3893
|
--purple-a3: color(display-p3 0.506 0.008 0.835 / 0.071);
|
|
@@ -4167,9 +3904,7 @@
|
|
|
4167
3904
|
}
|
|
4168
3905
|
}
|
|
4169
3906
|
|
|
4170
|
-
|
|
4171
|
-
.dark,
|
|
4172
|
-
.dark-theme {
|
|
3907
|
+
.dark, .dark-theme {
|
|
4173
3908
|
--purple-a1: #b412f90b;
|
|
4174
3909
|
--purple-a2: #b744f714;
|
|
4175
3910
|
--purple-a3: #c150ff2d;
|
|
@@ -4183,10 +3918,10 @@
|
|
|
4183
3918
|
--purple-a11: #d19dff;
|
|
4184
3919
|
--purple-a12: #f1ddfffa;
|
|
4185
3920
|
}
|
|
3921
|
+
|
|
4186
3922
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4187
3923
|
@media (color-gamut: p3) {
|
|
4188
|
-
.dark,
|
|
4189
|
-
.dark-theme {
|
|
3924
|
+
.dark, .dark-theme {
|
|
4190
3925
|
--purple-a1: color(display-p3 0.686 0.071 0.996 / 0.038);
|
|
4191
3926
|
--purple-a2: color(display-p3 0.722 0.286 0.996 / 0.072);
|
|
4192
3927
|
--purple-a3: color(display-p3 0.718 0.349 0.996 / 0.169);
|
|
@@ -4203,10 +3938,10 @@
|
|
|
4203
3938
|
}
|
|
4204
3939
|
}
|
|
4205
3940
|
|
|
4206
|
-
/* src/styles/colors/purple.css */
|
|
4207
3941
|
:root {
|
|
4208
3942
|
--purple-contrast: white;
|
|
4209
3943
|
}
|
|
3944
|
+
|
|
4210
3945
|
:root,
|
|
4211
3946
|
.light,
|
|
4212
3947
|
.light-theme {
|
|
@@ -4219,6 +3954,7 @@
|
|
|
4219
3954
|
}
|
|
4220
3955
|
}
|
|
4221
3956
|
}
|
|
3957
|
+
|
|
4222
3958
|
.dark,
|
|
4223
3959
|
.dark-theme {
|
|
4224
3960
|
--purple-surface: #2b173580;
|
|
@@ -4231,10 +3967,7 @@
|
|
|
4231
3967
|
}
|
|
4232
3968
|
}
|
|
4233
3969
|
|
|
4234
|
-
|
|
4235
|
-
:root,
|
|
4236
|
-
.light,
|
|
4237
|
-
.light-theme {
|
|
3970
|
+
:root, .light, .light-theme {
|
|
4238
3971
|
--red-1: #fffcfc;
|
|
4239
3972
|
--red-2: #fff7f7;
|
|
4240
3973
|
--red-3: #feebec;
|
|
@@ -4248,11 +3981,10 @@
|
|
|
4248
3981
|
--red-11: #ce2c31;
|
|
4249
3982
|
--red-12: #641723;
|
|
4250
3983
|
}
|
|
3984
|
+
|
|
4251
3985
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4252
3986
|
@media (color-gamut: p3) {
|
|
4253
|
-
:root,
|
|
4254
|
-
.light,
|
|
4255
|
-
.light-theme {
|
|
3987
|
+
:root, .light, .light-theme {
|
|
4256
3988
|
--red-1: color(display-p3 0.998 0.989 0.988);
|
|
4257
3989
|
--red-2: color(display-p3 0.995 0.971 0.971);
|
|
4258
3990
|
--red-3: color(display-p3 0.985 0.925 0.925);
|
|
@@ -4269,9 +4001,7 @@
|
|
|
4269
4001
|
}
|
|
4270
4002
|
}
|
|
4271
4003
|
|
|
4272
|
-
|
|
4273
|
-
.dark,
|
|
4274
|
-
.dark-theme {
|
|
4004
|
+
.dark, .dark-theme {
|
|
4275
4005
|
--red-1: #191111;
|
|
4276
4006
|
--red-2: #201314;
|
|
4277
4007
|
--red-3: #3b1219;
|
|
@@ -4285,10 +4015,10 @@
|
|
|
4285
4015
|
--red-11: #ff9592;
|
|
4286
4016
|
--red-12: #ffd1d9;
|
|
4287
4017
|
}
|
|
4018
|
+
|
|
4288
4019
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4289
4020
|
@media (color-gamut: p3) {
|
|
4290
|
-
.dark,
|
|
4291
|
-
.dark-theme {
|
|
4021
|
+
.dark, .dark-theme {
|
|
4292
4022
|
--red-1: color(display-p3 0.093 0.068 0.067);
|
|
4293
4023
|
--red-2: color(display-p3 0.118 0.077 0.079);
|
|
4294
4024
|
--red-3: color(display-p3 0.211 0.081 0.099);
|
|
@@ -4305,10 +4035,7 @@
|
|
|
4305
4035
|
}
|
|
4306
4036
|
}
|
|
4307
4037
|
|
|
4308
|
-
|
|
4309
|
-
:root,
|
|
4310
|
-
.light,
|
|
4311
|
-
.light-theme {
|
|
4038
|
+
:root, .light, .light-theme {
|
|
4312
4039
|
--red-a1: #ff000003;
|
|
4313
4040
|
--red-a2: #ff000008;
|
|
4314
4041
|
--red-a3: #f3000d14;
|
|
@@ -4322,11 +4049,10 @@
|
|
|
4322
4049
|
--red-a11: #c40006d3;
|
|
4323
4050
|
--red-a12: #55000de8;
|
|
4324
4051
|
}
|
|
4052
|
+
|
|
4325
4053
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4326
4054
|
@media (color-gamut: p3) {
|
|
4327
|
-
:root,
|
|
4328
|
-
.light,
|
|
4329
|
-
.light-theme {
|
|
4055
|
+
:root, .light, .light-theme {
|
|
4330
4056
|
--red-a1: color(display-p3 0.675 0.024 0.024 / 0.012);
|
|
4331
4057
|
--red-a2: color(display-p3 0.863 0.024 0.024 / 0.028);
|
|
4332
4058
|
--red-a3: color(display-p3 0.792 0.008 0.008 / 0.075);
|
|
@@ -4343,9 +4069,7 @@
|
|
|
4343
4069
|
}
|
|
4344
4070
|
}
|
|
4345
4071
|
|
|
4346
|
-
|
|
4347
|
-
.dark,
|
|
4348
|
-
.dark-theme {
|
|
4072
|
+
.dark, .dark-theme {
|
|
4349
4073
|
--red-a1: #f4121209;
|
|
4350
4074
|
--red-a2: #f22f3e11;
|
|
4351
4075
|
--red-a3: #ff173f2d;
|
|
@@ -4359,10 +4083,10 @@
|
|
|
4359
4083
|
--red-a11: #ff9592;
|
|
4360
4084
|
--red-a12: #ffd1d9;
|
|
4361
4085
|
}
|
|
4086
|
+
|
|
4362
4087
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4363
4088
|
@media (color-gamut: p3) {
|
|
4364
|
-
.dark,
|
|
4365
|
-
.dark-theme {
|
|
4089
|
+
.dark, .dark-theme {
|
|
4366
4090
|
--red-a1: color(display-p3 0.984 0.071 0.071 / 0.03);
|
|
4367
4091
|
--red-a2: color(display-p3 0.996 0.282 0.282 / 0.055);
|
|
4368
4092
|
--red-a3: color(display-p3 1 0.169 0.271 / 0.156);
|
|
@@ -4379,10 +4103,10 @@
|
|
|
4379
4103
|
}
|
|
4380
4104
|
}
|
|
4381
4105
|
|
|
4382
|
-
/* src/styles/colors/red.css */
|
|
4383
4106
|
:root {
|
|
4384
4107
|
--red-contrast: white;
|
|
4385
4108
|
}
|
|
4109
|
+
|
|
4386
4110
|
:root,
|
|
4387
4111
|
.light,
|
|
4388
4112
|
.light-theme {
|
|
@@ -4395,6 +4119,7 @@
|
|
|
4395
4119
|
}
|
|
4396
4120
|
}
|
|
4397
4121
|
}
|
|
4122
|
+
|
|
4398
4123
|
.dark,
|
|
4399
4124
|
.dark-theme {
|
|
4400
4125
|
--red-surface: #2f151780;
|
|
@@ -4407,10 +4132,7 @@
|
|
|
4407
4132
|
}
|
|
4408
4133
|
}
|
|
4409
4134
|
|
|
4410
|
-
|
|
4411
|
-
:root,
|
|
4412
|
-
.light,
|
|
4413
|
-
.light-theme {
|
|
4135
|
+
:root, .light, .light-theme {
|
|
4414
4136
|
--ruby-1: #fffcfd;
|
|
4415
4137
|
--ruby-2: #fff7f8;
|
|
4416
4138
|
--ruby-3: #feeaed;
|
|
@@ -4424,11 +4146,10 @@
|
|
|
4424
4146
|
--ruby-11: #ca244d;
|
|
4425
4147
|
--ruby-12: #64172b;
|
|
4426
4148
|
}
|
|
4149
|
+
|
|
4427
4150
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4428
4151
|
@media (color-gamut: p3) {
|
|
4429
|
-
:root,
|
|
4430
|
-
.light,
|
|
4431
|
-
.light-theme {
|
|
4152
|
+
:root, .light, .light-theme {
|
|
4432
4153
|
--ruby-1: color(display-p3 0.998 0.989 0.992);
|
|
4433
4154
|
--ruby-2: color(display-p3 0.995 0.971 0.974);
|
|
4434
4155
|
--ruby-3: color(display-p3 0.983 0.92 0.928);
|
|
@@ -4445,9 +4166,7 @@
|
|
|
4445
4166
|
}
|
|
4446
4167
|
}
|
|
4447
4168
|
|
|
4448
|
-
|
|
4449
|
-
.dark,
|
|
4450
|
-
.dark-theme {
|
|
4169
|
+
.dark, .dark-theme {
|
|
4451
4170
|
--ruby-1: #191113;
|
|
4452
4171
|
--ruby-2: #1e1517;
|
|
4453
4172
|
--ruby-3: #3a141e;
|
|
@@ -4461,10 +4180,10 @@
|
|
|
4461
4180
|
--ruby-11: #ff949d;
|
|
4462
4181
|
--ruby-12: #fed2e1;
|
|
4463
4182
|
}
|
|
4183
|
+
|
|
4464
4184
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4465
4185
|
@media (color-gamut: p3) {
|
|
4466
|
-
.dark,
|
|
4467
|
-
.dark-theme {
|
|
4186
|
+
.dark, .dark-theme {
|
|
4468
4187
|
--ruby-1: color(display-p3 0.093 0.068 0.074);
|
|
4469
4188
|
--ruby-2: color(display-p3 0.113 0.083 0.089);
|
|
4470
4189
|
--ruby-3: color(display-p3 0.208 0.088 0.117);
|
|
@@ -4481,10 +4200,7 @@
|
|
|
4481
4200
|
}
|
|
4482
4201
|
}
|
|
4483
4202
|
|
|
4484
|
-
|
|
4485
|
-
:root,
|
|
4486
|
-
.light,
|
|
4487
|
-
.light-theme {
|
|
4203
|
+
:root, .light, .light-theme {
|
|
4488
4204
|
--ruby-a1: #ff005503;
|
|
4489
4205
|
--ruby-a2: #ff002008;
|
|
4490
4206
|
--ruby-a3: #f3002515;
|
|
@@ -4498,11 +4214,10 @@
|
|
|
4498
4214
|
--ruby-a11: #c10030db;
|
|
4499
4215
|
--ruby-a12: #550016e8;
|
|
4500
4216
|
}
|
|
4217
|
+
|
|
4501
4218
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4502
4219
|
@media (color-gamut: p3) {
|
|
4503
|
-
:root,
|
|
4504
|
-
.light,
|
|
4505
|
-
.light-theme {
|
|
4220
|
+
:root, .light, .light-theme {
|
|
4506
4221
|
--ruby-a1: color(display-p3 0.675 0.024 0.349 / 0.012);
|
|
4507
4222
|
--ruby-a2: color(display-p3 0.863 0.024 0.024 / 0.028);
|
|
4508
4223
|
--ruby-a3: color(display-p3 0.804 0.008 0.11 / 0.079);
|
|
@@ -4519,9 +4234,7 @@
|
|
|
4519
4234
|
}
|
|
4520
4235
|
}
|
|
4521
4236
|
|
|
4522
|
-
|
|
4523
|
-
.dark,
|
|
4524
|
-
.dark-theme {
|
|
4237
|
+
.dark, .dark-theme {
|
|
4525
4238
|
--ruby-a1: #f4124a09;
|
|
4526
4239
|
--ruby-a2: #fe5a7f0e;
|
|
4527
4240
|
--ruby-a3: #ff235d2c;
|
|
@@ -4535,10 +4248,10 @@
|
|
|
4535
4248
|
--ruby-a11: #ff949d;
|
|
4536
4249
|
--ruby-a12: #ffd3e2fe;
|
|
4537
4250
|
}
|
|
4251
|
+
|
|
4538
4252
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4539
4253
|
@media (color-gamut: p3) {
|
|
4540
|
-
.dark,
|
|
4541
|
-
.dark-theme {
|
|
4254
|
+
.dark, .dark-theme {
|
|
4542
4255
|
--ruby-a1: color(display-p3 0.984 0.071 0.329 / 0.03);
|
|
4543
4256
|
--ruby-a2: color(display-p3 0.992 0.376 0.529 / 0.051);
|
|
4544
4257
|
--ruby-a3: color(display-p3 0.996 0.196 0.404 / 0.152);
|
|
@@ -4555,10 +4268,10 @@
|
|
|
4555
4268
|
}
|
|
4556
4269
|
}
|
|
4557
4270
|
|
|
4558
|
-
/* src/styles/colors/ruby.css */
|
|
4559
4271
|
:root {
|
|
4560
4272
|
--ruby-contrast: white;
|
|
4561
4273
|
}
|
|
4274
|
+
|
|
4562
4275
|
:root,
|
|
4563
4276
|
.light,
|
|
4564
4277
|
.light-theme {
|
|
@@ -4571,6 +4284,7 @@
|
|
|
4571
4284
|
}
|
|
4572
4285
|
}
|
|
4573
4286
|
}
|
|
4287
|
+
|
|
4574
4288
|
.dark,
|
|
4575
4289
|
.dark-theme {
|
|
4576
4290
|
--ruby-surface: #2b191d80;
|
|
@@ -4583,10 +4297,7 @@
|
|
|
4583
4297
|
}
|
|
4584
4298
|
}
|
|
4585
4299
|
|
|
4586
|
-
|
|
4587
|
-
:root,
|
|
4588
|
-
.light,
|
|
4589
|
-
.light-theme {
|
|
4300
|
+
:root, .light, .light-theme {
|
|
4590
4301
|
--sky-1: #f9feff;
|
|
4591
4302
|
--sky-2: #f1fafd;
|
|
4592
4303
|
--sky-3: #e1f6fd;
|
|
@@ -4600,11 +4311,10 @@
|
|
|
4600
4311
|
--sky-11: #00749e;
|
|
4601
4312
|
--sky-12: #1d3e56;
|
|
4602
4313
|
}
|
|
4314
|
+
|
|
4603
4315
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4604
4316
|
@media (color-gamut: p3) {
|
|
4605
|
-
:root,
|
|
4606
|
-
.light,
|
|
4607
|
-
.light-theme {
|
|
4317
|
+
:root, .light, .light-theme {
|
|
4608
4318
|
--sky-1: color(display-p3 0.98 0.995 0.999);
|
|
4609
4319
|
--sky-2: color(display-p3 0.953 0.98 0.99);
|
|
4610
4320
|
--sky-3: color(display-p3 0.899 0.963 0.989);
|
|
@@ -4621,9 +4331,7 @@
|
|
|
4621
4331
|
}
|
|
4622
4332
|
}
|
|
4623
4333
|
|
|
4624
|
-
|
|
4625
|
-
.dark,
|
|
4626
|
-
.dark-theme {
|
|
4334
|
+
.dark, .dark-theme {
|
|
4627
4335
|
--sky-1: #0d141f;
|
|
4628
4336
|
--sky-2: #111a27;
|
|
4629
4337
|
--sky-3: #112840;
|
|
@@ -4637,10 +4345,10 @@
|
|
|
4637
4345
|
--sky-11: #75c7f0;
|
|
4638
4346
|
--sky-12: #c2f3ff;
|
|
4639
4347
|
}
|
|
4348
|
+
|
|
4640
4349
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4641
4350
|
@media (color-gamut: p3) {
|
|
4642
|
-
.dark,
|
|
4643
|
-
.dark-theme {
|
|
4351
|
+
.dark, .dark-theme {
|
|
4644
4352
|
--sky-1: color(display-p3 0.056 0.078 0.116);
|
|
4645
4353
|
--sky-2: color(display-p3 0.075 0.101 0.149);
|
|
4646
4354
|
--sky-3: color(display-p3 0.089 0.154 0.244);
|
|
@@ -4657,10 +4365,7 @@
|
|
|
4657
4365
|
}
|
|
4658
4366
|
}
|
|
4659
4367
|
|
|
4660
|
-
|
|
4661
|
-
:root,
|
|
4662
|
-
.light,
|
|
4663
|
-
.light-theme {
|
|
4368
|
+
:root, .light, .light-theme {
|
|
4664
4369
|
--sky-a1: #00d5ff06;
|
|
4665
4370
|
--sky-a2: #00a4db0e;
|
|
4666
4371
|
--sky-a3: #00b3ee1e;
|
|
@@ -4674,11 +4379,10 @@
|
|
|
4674
4379
|
--sky-a11: #00749e;
|
|
4675
4380
|
--sky-a12: #002540e2;
|
|
4676
4381
|
}
|
|
4382
|
+
|
|
4677
4383
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4678
4384
|
@media (color-gamut: p3) {
|
|
4679
|
-
:root,
|
|
4680
|
-
.light,
|
|
4681
|
-
.light-theme {
|
|
4385
|
+
:root, .light, .light-theme {
|
|
4682
4386
|
--sky-a1: color(display-p3 0.02 0.804 1 / 0.02);
|
|
4683
4387
|
--sky-a2: color(display-p3 0.024 0.592 0.757 / 0.048);
|
|
4684
4388
|
--sky-a3: color(display-p3 0.004 0.655 0.886 / 0.102);
|
|
@@ -4695,9 +4399,7 @@
|
|
|
4695
4399
|
}
|
|
4696
4400
|
}
|
|
4697
4401
|
|
|
4698
|
-
|
|
4699
|
-
.dark,
|
|
4700
|
-
.dark-theme {
|
|
4402
|
+
.dark, .dark-theme {
|
|
4701
4403
|
--sky-a1: #0044ff0f;
|
|
4702
4404
|
--sky-a2: #1171fb18;
|
|
4703
4405
|
--sky-a3: #1184fc33;
|
|
@@ -4711,10 +4413,10 @@
|
|
|
4711
4413
|
--sky-a11: #7cd3ffef;
|
|
4712
4414
|
--sky-a12: #c2f3ff;
|
|
4713
4415
|
}
|
|
4416
|
+
|
|
4714
4417
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4715
4418
|
@media (color-gamut: p3) {
|
|
4716
|
-
.dark,
|
|
4717
|
-
.dark-theme {
|
|
4419
|
+
.dark, .dark-theme {
|
|
4718
4420
|
--sky-a1: color(display-p3 0 0.282 0.996 / 0.055);
|
|
4719
4421
|
--sky-a2: color(display-p3 0.157 0.467 0.992 / 0.089);
|
|
4720
4422
|
--sky-a3: color(display-p3 0.192 0.522 0.996 / 0.19);
|
|
@@ -4731,10 +4433,10 @@
|
|
|
4731
4433
|
}
|
|
4732
4434
|
}
|
|
4733
4435
|
|
|
4734
|
-
/* src/styles/colors/sky.css */
|
|
4735
4436
|
:root {
|
|
4736
|
-
--sky-contrast: #1c2024;
|
|
4437
|
+
--sky-contrast: #1c2024; /* light mode slate 12 */
|
|
4737
4438
|
}
|
|
4439
|
+
|
|
4738
4440
|
:root,
|
|
4739
4441
|
.light,
|
|
4740
4442
|
.light-theme {
|
|
@@ -4747,6 +4449,7 @@
|
|
|
4747
4449
|
}
|
|
4748
4450
|
}
|
|
4749
4451
|
}
|
|
4452
|
+
|
|
4750
4453
|
.dark,
|
|
4751
4454
|
.dark-theme {
|
|
4752
4455
|
--sky-surface: #13233b80;
|
|
@@ -4762,10 +4465,7 @@
|
|
|
4762
4465
|
}
|
|
4763
4466
|
}
|
|
4764
4467
|
|
|
4765
|
-
|
|
4766
|
-
:root,
|
|
4767
|
-
.light,
|
|
4768
|
-
.light-theme {
|
|
4468
|
+
:root, .light, .light-theme {
|
|
4769
4469
|
--teal-1: #fafefd;
|
|
4770
4470
|
--teal-2: #f3fbf9;
|
|
4771
4471
|
--teal-3: #e0f8f3;
|
|
@@ -4779,11 +4479,10 @@
|
|
|
4779
4479
|
--teal-11: #008573;
|
|
4780
4480
|
--teal-12: #0d3d38;
|
|
4781
4481
|
}
|
|
4482
|
+
|
|
4782
4483
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4783
4484
|
@media (color-gamut: p3) {
|
|
4784
|
-
:root,
|
|
4785
|
-
.light,
|
|
4786
|
-
.light-theme {
|
|
4485
|
+
:root, .light, .light-theme {
|
|
4787
4486
|
--teal-1: color(display-p3 0.983 0.996 0.992);
|
|
4788
4487
|
--teal-2: color(display-p3 0.958 0.983 0.976);
|
|
4789
4488
|
--teal-3: color(display-p3 0.895 0.971 0.952);
|
|
@@ -4800,9 +4499,7 @@
|
|
|
4800
4499
|
}
|
|
4801
4500
|
}
|
|
4802
4501
|
|
|
4803
|
-
|
|
4804
|
-
.dark,
|
|
4805
|
-
.dark-theme {
|
|
4502
|
+
.dark, .dark-theme {
|
|
4806
4503
|
--teal-1: #0d1514;
|
|
4807
4504
|
--teal-2: #111c1b;
|
|
4808
4505
|
--teal-3: #0d2d2a;
|
|
@@ -4816,10 +4513,10 @@
|
|
|
4816
4513
|
--teal-11: #0bd8b6;
|
|
4817
4514
|
--teal-12: #adf0dd;
|
|
4818
4515
|
}
|
|
4516
|
+
|
|
4819
4517
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4820
4518
|
@media (color-gamut: p3) {
|
|
4821
|
-
.dark,
|
|
4822
|
-
.dark-theme {
|
|
4519
|
+
.dark, .dark-theme {
|
|
4823
4520
|
--teal-1: color(display-p3 0.059 0.083 0.079);
|
|
4824
4521
|
--teal-2: color(display-p3 0.075 0.11 0.107);
|
|
4825
4522
|
--teal-3: color(display-p3 0.087 0.175 0.165);
|
|
@@ -4836,10 +4533,7 @@
|
|
|
4836
4533
|
}
|
|
4837
4534
|
}
|
|
4838
4535
|
|
|
4839
|
-
|
|
4840
|
-
:root,
|
|
4841
|
-
.light,
|
|
4842
|
-
.light-theme {
|
|
4536
|
+
:root, .light, .light-theme {
|
|
4843
4537
|
--teal-a1: #00cc9905;
|
|
4844
4538
|
--teal-a2: #00aa800c;
|
|
4845
4539
|
--teal-a3: #00c69d1f;
|
|
@@ -4853,11 +4547,10 @@
|
|
|
4853
4547
|
--teal-a11: #008573;
|
|
4854
4548
|
--teal-a12: #00332df2;
|
|
4855
4549
|
}
|
|
4550
|
+
|
|
4856
4551
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4857
4552
|
@media (color-gamut: p3) {
|
|
4858
|
-
:root,
|
|
4859
|
-
.light,
|
|
4860
|
-
.light-theme {
|
|
4553
|
+
:root, .light, .light-theme {
|
|
4861
4554
|
--teal-a1: color(display-p3 0.024 0.757 0.514 / 0.016);
|
|
4862
4555
|
--teal-a2: color(display-p3 0.02 0.647 0.467 / 0.044);
|
|
4863
4556
|
--teal-a3: color(display-p3 0.004 0.741 0.557 / 0.106);
|
|
@@ -4874,9 +4567,7 @@
|
|
|
4874
4567
|
}
|
|
4875
4568
|
}
|
|
4876
4569
|
|
|
4877
|
-
|
|
4878
|
-
.dark,
|
|
4879
|
-
.dark-theme {
|
|
4570
|
+
.dark, .dark-theme {
|
|
4880
4571
|
--teal-a1: #00deab05;
|
|
4881
4572
|
--teal-a2: #12fbe60c;
|
|
4882
4573
|
--teal-a3: #00ffe61e;
|
|
@@ -4890,10 +4581,10 @@
|
|
|
4890
4581
|
--teal-a11: #0afed5d6;
|
|
4891
4582
|
--teal-a12: #b8ffebef;
|
|
4892
4583
|
}
|
|
4584
|
+
|
|
4893
4585
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4894
4586
|
@media (color-gamut: p3) {
|
|
4895
|
-
.dark,
|
|
4896
|
-
.dark-theme {
|
|
4587
|
+
.dark, .dark-theme {
|
|
4897
4588
|
--teal-a1: color(display-p3 0 0.992 0.761 / 0.017);
|
|
4898
4589
|
--teal-a2: color(display-p3 0.235 0.988 0.902 / 0.047);
|
|
4899
4590
|
--teal-a3: color(display-p3 0.235 1 0.898 / 0.118);
|
|
@@ -4910,10 +4601,10 @@
|
|
|
4910
4601
|
}
|
|
4911
4602
|
}
|
|
4912
4603
|
|
|
4913
|
-
/* src/styles/colors/teal.css */
|
|
4914
4604
|
:root {
|
|
4915
4605
|
--teal-contrast: white;
|
|
4916
4606
|
}
|
|
4607
|
+
|
|
4917
4608
|
:root,
|
|
4918
4609
|
.light,
|
|
4919
4610
|
.light-theme {
|
|
@@ -4926,6 +4617,7 @@
|
|
|
4926
4617
|
}
|
|
4927
4618
|
}
|
|
4928
4619
|
}
|
|
4620
|
+
|
|
4929
4621
|
.dark,
|
|
4930
4622
|
.dark-theme {
|
|
4931
4623
|
--teal-surface: #13272580;
|
|
@@ -4938,10 +4630,7 @@
|
|
|
4938
4630
|
}
|
|
4939
4631
|
}
|
|
4940
4632
|
|
|
4941
|
-
|
|
4942
|
-
:root,
|
|
4943
|
-
.light,
|
|
4944
|
-
.light-theme {
|
|
4633
|
+
:root, .light, .light-theme {
|
|
4945
4634
|
--tomato-1: #fffcfc;
|
|
4946
4635
|
--tomato-2: #fff8f7;
|
|
4947
4636
|
--tomato-3: #feebe7;
|
|
@@ -4955,11 +4644,10 @@
|
|
|
4955
4644
|
--tomato-11: #d13415;
|
|
4956
4645
|
--tomato-12: #5c271f;
|
|
4957
4646
|
}
|
|
4647
|
+
|
|
4958
4648
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4959
4649
|
@media (color-gamut: p3) {
|
|
4960
|
-
:root,
|
|
4961
|
-
.light,
|
|
4962
|
-
.light-theme {
|
|
4650
|
+
:root, .light, .light-theme {
|
|
4963
4651
|
--tomato-1: color(display-p3 0.998 0.989 0.988);
|
|
4964
4652
|
--tomato-2: color(display-p3 0.994 0.974 0.969);
|
|
4965
4653
|
--tomato-3: color(display-p3 0.985 0.924 0.909);
|
|
@@ -4976,9 +4664,7 @@
|
|
|
4976
4664
|
}
|
|
4977
4665
|
}
|
|
4978
4666
|
|
|
4979
|
-
|
|
4980
|
-
.dark,
|
|
4981
|
-
.dark-theme {
|
|
4667
|
+
.dark, .dark-theme {
|
|
4982
4668
|
--tomato-1: #181111;
|
|
4983
4669
|
--tomato-2: #1f1513;
|
|
4984
4670
|
--tomato-3: #391714;
|
|
@@ -4992,10 +4678,10 @@
|
|
|
4992
4678
|
--tomato-11: #ff977d;
|
|
4993
4679
|
--tomato-12: #fbd3cb;
|
|
4994
4680
|
}
|
|
4681
|
+
|
|
4995
4682
|
@supports (color: color(display-p3 1 1 1)) {
|
|
4996
4683
|
@media (color-gamut: p3) {
|
|
4997
|
-
.dark,
|
|
4998
|
-
.dark-theme {
|
|
4684
|
+
.dark, .dark-theme {
|
|
4999
4685
|
--tomato-1: color(display-p3 0.09 0.068 0.067);
|
|
5000
4686
|
--tomato-2: color(display-p3 0.115 0.084 0.076);
|
|
5001
4687
|
--tomato-3: color(display-p3 0.205 0.097 0.083);
|
|
@@ -5012,10 +4698,7 @@
|
|
|
5012
4698
|
}
|
|
5013
4699
|
}
|
|
5014
4700
|
|
|
5015
|
-
|
|
5016
|
-
:root,
|
|
5017
|
-
.light,
|
|
5018
|
-
.light-theme {
|
|
4701
|
+
:root, .light, .light-theme {
|
|
5019
4702
|
--tomato-a1: #ff000003;
|
|
5020
4703
|
--tomato-a2: #ff200008;
|
|
5021
4704
|
--tomato-a3: #f52b0018;
|
|
@@ -5029,11 +4712,10 @@
|
|
|
5029
4712
|
--tomato-a11: #cd2200ea;
|
|
5030
4713
|
--tomato-a12: #460900e0;
|
|
5031
4714
|
}
|
|
4715
|
+
|
|
5032
4716
|
@supports (color: color(display-p3 1 1 1)) {
|
|
5033
4717
|
@media (color-gamut: p3) {
|
|
5034
|
-
:root,
|
|
5035
|
-
.light,
|
|
5036
|
-
.light-theme {
|
|
4718
|
+
:root, .light, .light-theme {
|
|
5037
4719
|
--tomato-a1: color(display-p3 0.675 0.024 0.024 / 0.012);
|
|
5038
4720
|
--tomato-a2: color(display-p3 0.757 0.145 0.02 / 0.032);
|
|
5039
4721
|
--tomato-a3: color(display-p3 0.831 0.184 0.012 / 0.091);
|
|
@@ -5050,9 +4732,7 @@
|
|
|
5050
4732
|
}
|
|
5051
4733
|
}
|
|
5052
4734
|
|
|
5053
|
-
|
|
5054
|
-
.dark,
|
|
5055
|
-
.dark-theme {
|
|
4735
|
+
.dark, .dark-theme {
|
|
5056
4736
|
--tomato-a1: #f1121208;
|
|
5057
4737
|
--tomato-a2: #ff55330f;
|
|
5058
4738
|
--tomato-a3: #ff35232b;
|
|
@@ -5066,10 +4746,10 @@
|
|
|
5066
4746
|
--tomato-a11: #ff977d;
|
|
5067
4747
|
--tomato-a12: #ffd6cefb;
|
|
5068
4748
|
}
|
|
4749
|
+
|
|
5069
4750
|
@supports (color: color(display-p3 1 1 1)) {
|
|
5070
4751
|
@media (color-gamut: p3) {
|
|
5071
|
-
.dark,
|
|
5072
|
-
.dark-theme {
|
|
4752
|
+
.dark, .dark-theme {
|
|
5073
4753
|
--tomato-a1: color(display-p3 0.973 0.071 0.071 / 0.026);
|
|
5074
4754
|
--tomato-a2: color(display-p3 0.992 0.376 0.224 / 0.051);
|
|
5075
4755
|
--tomato-a3: color(display-p3 0.996 0.282 0.176 / 0.148);
|
|
@@ -5086,10 +4766,10 @@
|
|
|
5086
4766
|
}
|
|
5087
4767
|
}
|
|
5088
4768
|
|
|
5089
|
-
/* src/styles/colors/tomato.css */
|
|
5090
4769
|
:root {
|
|
5091
4770
|
--tomato-contrast: white;
|
|
5092
4771
|
}
|
|
4772
|
+
|
|
5093
4773
|
:root,
|
|
5094
4774
|
.light,
|
|
5095
4775
|
.light-theme {
|
|
@@ -5102,6 +4782,7 @@
|
|
|
5102
4782
|
}
|
|
5103
4783
|
}
|
|
5104
4784
|
}
|
|
4785
|
+
|
|
5105
4786
|
.dark,
|
|
5106
4787
|
.dark-theme {
|
|
5107
4788
|
--tomato-surface: #2d191580;
|
|
@@ -5114,10 +4795,7 @@
|
|
|
5114
4795
|
}
|
|
5115
4796
|
}
|
|
5116
4797
|
|
|
5117
|
-
|
|
5118
|
-
:root,
|
|
5119
|
-
.light,
|
|
5120
|
-
.light-theme {
|
|
4798
|
+
:root, .light, .light-theme {
|
|
5121
4799
|
--violet-1: #fdfcfe;
|
|
5122
4800
|
--violet-2: #faf8ff;
|
|
5123
4801
|
--violet-3: #f4f0fe;
|
|
@@ -5131,11 +4809,10 @@
|
|
|
5131
4809
|
--violet-11: #6550b9;
|
|
5132
4810
|
--violet-12: #2f265f;
|
|
5133
4811
|
}
|
|
4812
|
+
|
|
5134
4813
|
@supports (color: color(display-p3 1 1 1)) {
|
|
5135
4814
|
@media (color-gamut: p3) {
|
|
5136
|
-
:root,
|
|
5137
|
-
.light,
|
|
5138
|
-
.light-theme {
|
|
4815
|
+
:root, .light, .light-theme {
|
|
5139
4816
|
--violet-1: color(display-p3 0.991 0.988 0.995);
|
|
5140
4817
|
--violet-2: color(display-p3 0.978 0.974 0.998);
|
|
5141
4818
|
--violet-3: color(display-p3 0.953 0.943 0.993);
|
|
@@ -5152,9 +4829,7 @@
|
|
|
5152
4829
|
}
|
|
5153
4830
|
}
|
|
5154
4831
|
|
|
5155
|
-
|
|
5156
|
-
.dark,
|
|
5157
|
-
.dark-theme {
|
|
4832
|
+
.dark, .dark-theme {
|
|
5158
4833
|
--violet-1: #14121f;
|
|
5159
4834
|
--violet-2: #1b1525;
|
|
5160
4835
|
--violet-3: #291f43;
|
|
@@ -5168,10 +4843,10 @@
|
|
|
5168
4843
|
--violet-11: #baa7ff;
|
|
5169
4844
|
--violet-12: #e2ddfe;
|
|
5170
4845
|
}
|
|
4846
|
+
|
|
5171
4847
|
@supports (color: color(display-p3 1 1 1)) {
|
|
5172
4848
|
@media (color-gamut: p3) {
|
|
5173
|
-
.dark,
|
|
5174
|
-
.dark-theme {
|
|
4849
|
+
.dark, .dark-theme {
|
|
5175
4850
|
--violet-1: color(display-p3 0.077 0.071 0.118);
|
|
5176
4851
|
--violet-2: color(display-p3 0.101 0.084 0.141);
|
|
5177
4852
|
--violet-3: color(display-p3 0.154 0.123 0.256);
|
|
@@ -5188,10 +4863,7 @@
|
|
|
5188
4863
|
}
|
|
5189
4864
|
}
|
|
5190
4865
|
|
|
5191
|
-
|
|
5192
|
-
:root,
|
|
5193
|
-
.light,
|
|
5194
|
-
.light-theme {
|
|
4866
|
+
:root, .light, .light-theme {
|
|
5195
4867
|
--violet-a1: #5500aa03;
|
|
5196
4868
|
--violet-a2: #4900ff07;
|
|
5197
4869
|
--violet-a3: #4400ee0f;
|
|
@@ -5205,11 +4877,10 @@
|
|
|
5205
4877
|
--violet-a11: #1f0099af;
|
|
5206
4878
|
--violet-a12: #0b0043d9;
|
|
5207
4879
|
}
|
|
4880
|
+
|
|
5208
4881
|
@supports (color: color(display-p3 1 1 1)) {
|
|
5209
4882
|
@media (color-gamut: p3) {
|
|
5210
|
-
:root,
|
|
5211
|
-
.light,
|
|
5212
|
-
.light-theme {
|
|
4883
|
+
:root, .light, .light-theme {
|
|
5213
4884
|
--violet-a1: color(display-p3 0.349 0.024 0.675 / 0.012);
|
|
5214
4885
|
--violet-a2: color(display-p3 0.161 0.024 0.863 / 0.028);
|
|
5215
4886
|
--violet-a3: color(display-p3 0.204 0.004 0.871 / 0.059);
|
|
@@ -5226,9 +4897,7 @@
|
|
|
5226
4897
|
}
|
|
5227
4898
|
}
|
|
5228
4899
|
|
|
5229
|
-
|
|
5230
|
-
.dark,
|
|
5231
|
-
.dark-theme {
|
|
4900
|
+
.dark, .dark-theme {
|
|
5232
4901
|
--violet-a1: #4422ff0f;
|
|
5233
4902
|
--violet-a2: #853ff916;
|
|
5234
4903
|
--violet-a3: #8354fe36;
|
|
@@ -5242,10 +4911,10 @@
|
|
|
5242
4911
|
--violet-a11: #baa7ff;
|
|
5243
4912
|
--violet-a12: #e3defffe;
|
|
5244
4913
|
}
|
|
4914
|
+
|
|
5245
4915
|
@supports (color: color(display-p3 1 1 1)) {
|
|
5246
4916
|
@media (color-gamut: p3) {
|
|
5247
|
-
.dark,
|
|
5248
|
-
.dark-theme {
|
|
4917
|
+
.dark, .dark-theme {
|
|
5249
4918
|
--violet-a1: color(display-p3 0.282 0.141 0.996 / 0.055);
|
|
5250
4919
|
--violet-a2: color(display-p3 0.51 0.263 1 / 0.08);
|
|
5251
4920
|
--violet-a3: color(display-p3 0.494 0.337 0.996 / 0.202);
|
|
@@ -5262,10 +4931,10 @@
|
|
|
5262
4931
|
}
|
|
5263
4932
|
}
|
|
5264
4933
|
|
|
5265
|
-
/* src/styles/colors/violet.css */
|
|
5266
4934
|
:root {
|
|
5267
4935
|
--violet-contrast: white;
|
|
5268
4936
|
}
|
|
4937
|
+
|
|
5269
4938
|
:root,
|
|
5270
4939
|
.light,
|
|
5271
4940
|
.light-theme {
|
|
@@ -5278,6 +4947,7 @@
|
|
|
5278
4947
|
}
|
|
5279
4948
|
}
|
|
5280
4949
|
}
|
|
4950
|
+
|
|
5281
4951
|
.dark,
|
|
5282
4952
|
.dark-theme {
|
|
5283
4953
|
--violet-surface: #25193980;
|
|
@@ -5290,10 +4960,7 @@
|
|
|
5290
4960
|
}
|
|
5291
4961
|
}
|
|
5292
4962
|
|
|
5293
|
-
|
|
5294
|
-
:root,
|
|
5295
|
-
.light,
|
|
5296
|
-
.light-theme {
|
|
4963
|
+
:root, .light, .light-theme {
|
|
5297
4964
|
--yellow-1: #fdfdf9;
|
|
5298
4965
|
--yellow-2: #fefce9;
|
|
5299
4966
|
--yellow-3: #fffab8;
|
|
@@ -5307,11 +4974,10 @@
|
|
|
5307
4974
|
--yellow-11: #9e6c00;
|
|
5308
4975
|
--yellow-12: #473b1f;
|
|
5309
4976
|
}
|
|
4977
|
+
|
|
5310
4978
|
@supports (color: color(display-p3 1 1 1)) {
|
|
5311
4979
|
@media (color-gamut: p3) {
|
|
5312
|
-
:root,
|
|
5313
|
-
.light,
|
|
5314
|
-
.light-theme {
|
|
4980
|
+
:root, .light, .light-theme {
|
|
5315
4981
|
--yellow-1: color(display-p3 0.992 0.992 0.978);
|
|
5316
4982
|
--yellow-2: color(display-p3 0.995 0.99 0.922);
|
|
5317
4983
|
--yellow-3: color(display-p3 0.997 0.982 0.749);
|
|
@@ -5328,9 +4994,7 @@
|
|
|
5328
4994
|
}
|
|
5329
4995
|
}
|
|
5330
4996
|
|
|
5331
|
-
|
|
5332
|
-
.dark,
|
|
5333
|
-
.dark-theme {
|
|
4997
|
+
.dark, .dark-theme {
|
|
5334
4998
|
--yellow-1: #14120b;
|
|
5335
4999
|
--yellow-2: #1b180f;
|
|
5336
5000
|
--yellow-3: #2d2305;
|
|
@@ -5344,10 +5008,10 @@
|
|
|
5344
5008
|
--yellow-11: #f5e147;
|
|
5345
5009
|
--yellow-12: #f6eeb4;
|
|
5346
5010
|
}
|
|
5011
|
+
|
|
5347
5012
|
@supports (color: color(display-p3 1 1 1)) {
|
|
5348
5013
|
@media (color-gamut: p3) {
|
|
5349
|
-
.dark,
|
|
5350
|
-
.dark-theme {
|
|
5014
|
+
.dark, .dark-theme {
|
|
5351
5015
|
--yellow-1: color(display-p3 0.078 0.069 0.047);
|
|
5352
5016
|
--yellow-2: color(display-p3 0.103 0.094 0.063);
|
|
5353
5017
|
--yellow-3: color(display-p3 0.168 0.137 0.039);
|
|
@@ -5364,10 +5028,7 @@
|
|
|
5364
5028
|
}
|
|
5365
5029
|
}
|
|
5366
5030
|
|
|
5367
|
-
|
|
5368
|
-
:root,
|
|
5369
|
-
.light,
|
|
5370
|
-
.light-theme {
|
|
5031
|
+
:root, .light, .light-theme {
|
|
5371
5032
|
--yellow-a1: #aaaa0006;
|
|
5372
5033
|
--yellow-a2: #f4dd0016;
|
|
5373
5034
|
--yellow-a3: #ffee0047;
|
|
@@ -5381,11 +5042,10 @@
|
|
|
5381
5042
|
--yellow-a11: #9e6c00;
|
|
5382
5043
|
--yellow-a12: #2e2000e0;
|
|
5383
5044
|
}
|
|
5045
|
+
|
|
5384
5046
|
@supports (color: color(display-p3 1 1 1)) {
|
|
5385
5047
|
@media (color-gamut: p3) {
|
|
5386
|
-
:root,
|
|
5387
|
-
.light,
|
|
5388
|
-
.light-theme {
|
|
5048
|
+
:root, .light, .light-theme {
|
|
5389
5049
|
--yellow-a1: color(display-p3 0.675 0.675 0.024 / 0.024);
|
|
5390
5050
|
--yellow-a2: color(display-p3 0.953 0.855 0.008 / 0.079);
|
|
5391
5051
|
--yellow-a3: color(display-p3 0.988 0.925 0.004 / 0.251);
|
|
@@ -5402,9 +5062,7 @@
|
|
|
5402
5062
|
}
|
|
5403
5063
|
}
|
|
5404
5064
|
|
|
5405
|
-
|
|
5406
|
-
.dark,
|
|
5407
|
-
.dark-theme {
|
|
5065
|
+
.dark, .dark-theme {
|
|
5408
5066
|
--yellow-a1: #d1510004;
|
|
5409
5067
|
--yellow-a2: #f9b4000b;
|
|
5410
5068
|
--yellow-a3: #ffaa001e;
|
|
@@ -5418,10 +5076,10 @@
|
|
|
5418
5076
|
--yellow-a11: #fee949f5;
|
|
5419
5077
|
--yellow-a12: #fef6baf6;
|
|
5420
5078
|
}
|
|
5079
|
+
|
|
5421
5080
|
@supports (color: color(display-p3 1 1 1)) {
|
|
5422
5081
|
@media (color-gamut: p3) {
|
|
5423
|
-
.dark,
|
|
5424
|
-
.dark-theme {
|
|
5082
|
+
.dark, .dark-theme {
|
|
5425
5083
|
--yellow-a1: color(display-p3 0.973 0.369 0 / 0.013);
|
|
5426
5084
|
--yellow-a2: color(display-p3 0.996 0.792 0 / 0.038);
|
|
5427
5085
|
--yellow-a3: color(display-p3 0.996 0.71 0 / 0.11);
|
|
@@ -5438,10 +5096,10 @@
|
|
|
5438
5096
|
}
|
|
5439
5097
|
}
|
|
5440
5098
|
|
|
5441
|
-
/* src/styles/colors/yellow.css */
|
|
5442
5099
|
:root {
|
|
5443
|
-
--yellow-contrast: #21201c;
|
|
5100
|
+
--yellow-contrast: #21201c; /* light mode sand 12 */
|
|
5444
5101
|
}
|
|
5102
|
+
|
|
5445
5103
|
:root,
|
|
5446
5104
|
.light,
|
|
5447
5105
|
.light-theme {
|
|
@@ -5454,6 +5112,7 @@
|
|
|
5454
5112
|
}
|
|
5455
5113
|
}
|
|
5456
5114
|
}
|
|
5115
|
+
|
|
5457
5116
|
.dark,
|
|
5458
5117
|
.dark-theme {
|
|
5459
5118
|
--yellow-surface: #231f1380;
|
|
@@ -5469,7 +5128,6 @@
|
|
|
5469
5128
|
}
|
|
5470
5129
|
}
|
|
5471
5130
|
|
|
5472
|
-
/* node_modules/@radix-ui/colors/black-alpha.css */
|
|
5473
5131
|
:root {
|
|
5474
5132
|
--black-a1: rgba(0, 0, 0, 0.05);
|
|
5475
5133
|
--black-a2: rgba(0, 0, 0, 0.1);
|
|
@@ -5484,6 +5142,7 @@
|
|
|
5484
5142
|
--black-a11: rgba(0, 0, 0, 0.9);
|
|
5485
5143
|
--black-a12: rgba(0, 0, 0, 0.95);
|
|
5486
5144
|
}
|
|
5145
|
+
|
|
5487
5146
|
@supports (color: color(display-p3 1 1 1)) {
|
|
5488
5147
|
@media (color-gamut: p3) {
|
|
5489
5148
|
:root {
|
|
@@ -5503,7 +5162,6 @@
|
|
|
5503
5162
|
}
|
|
5504
5163
|
}
|
|
5505
5164
|
|
|
5506
|
-
/* node_modules/@radix-ui/colors/white-alpha.css */
|
|
5507
5165
|
:root {
|
|
5508
5166
|
--white-a1: rgba(255, 255, 255, 0.05);
|
|
5509
5167
|
--white-a2: rgba(255, 255, 255, 0.1);
|
|
@@ -5518,6 +5176,7 @@
|
|
|
5518
5176
|
--white-a11: rgba(255, 255, 255, 0.9);
|
|
5519
5177
|
--white-a12: rgba(255, 255, 255, 0.95);
|
|
5520
5178
|
}
|
|
5179
|
+
|
|
5521
5180
|
@supports (color: color(display-p3 1 1 1)) {
|
|
5522
5181
|
@media (color-gamut: p3) {
|
|
5523
5182
|
:root {
|
|
@@ -5537,7 +5196,16 @@
|
|
|
5537
5196
|
}
|
|
5538
5197
|
}
|
|
5539
5198
|
|
|
5540
|
-
/*
|
|
5199
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5200
|
+
|
|
5201
|
+
/* */
|
|
5202
|
+
|
|
5203
|
+
/* Semantic colors */
|
|
5204
|
+
|
|
5205
|
+
/* */
|
|
5206
|
+
|
|
5207
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5208
|
+
|
|
5541
5209
|
:where(.ui-root) {
|
|
5542
5210
|
--color-background: white;
|
|
5543
5211
|
--color-overlay: var(--black-a6);
|
|
@@ -5545,6 +5213,7 @@
|
|
|
5545
5213
|
--color-panel-translucent: rgba(255, 255, 255, 0.7);
|
|
5546
5214
|
--color-surface: rgba(255, 255, 255, 0.85);
|
|
5547
5215
|
}
|
|
5216
|
+
|
|
5548
5217
|
:is(.dark, .dark-theme) :where(.ui-root) {
|
|
5549
5218
|
--color-background: var(--gray-1);
|
|
5550
5219
|
--color-overlay: var(--black-a8);
|
|
@@ -5552,9 +5221,25 @@
|
|
|
5552
5221
|
--color-panel-translucent: var(--gray-a2);
|
|
5553
5222
|
--color-surface: rgba(0, 0, 0, 0.25);
|
|
5554
5223
|
}
|
|
5224
|
+
|
|
5225
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5226
|
+
|
|
5227
|
+
/* */
|
|
5228
|
+
|
|
5229
|
+
/* Transparency */
|
|
5230
|
+
|
|
5231
|
+
/* */
|
|
5232
|
+
|
|
5233
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5234
|
+
|
|
5235
|
+
/* Because Chrome is buggy with box-shadow transitions from "transparent" keyword and/or RGB color into P3 colors. */
|
|
5236
|
+
|
|
5237
|
+
/* Note: using `:where` here to guarantee that the P3 color will take over regardless of the output rule order. */
|
|
5238
|
+
|
|
5555
5239
|
:where(.ui-root) {
|
|
5556
5240
|
--color-transparent: rgb(0 0 0 / 0);
|
|
5557
5241
|
}
|
|
5242
|
+
|
|
5558
5243
|
@supports (color: color(display-p3 1 1 1)) {
|
|
5559
5244
|
@media (color-gamut: p3) {
|
|
5560
5245
|
.ui-root {
|
|
@@ -5562,14 +5247,42 @@
|
|
|
5562
5247
|
}
|
|
5563
5248
|
}
|
|
5564
5249
|
}
|
|
5250
|
+
|
|
5251
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5252
|
+
|
|
5253
|
+
/* */
|
|
5254
|
+
|
|
5255
|
+
/* Color scheme */
|
|
5256
|
+
|
|
5257
|
+
/* */
|
|
5258
|
+
|
|
5259
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5260
|
+
|
|
5261
|
+
/*
|
|
5262
|
+
* Make sure that forced light/dark appearance also sets corresponding browser colors,
|
|
5263
|
+
* like input autofill color and body scrollbar
|
|
5264
|
+
*/
|
|
5265
|
+
|
|
5565
5266
|
:is(.light, .light-theme) :where(.ui-root) {
|
|
5566
5267
|
color-scheme: light;
|
|
5567
5268
|
}
|
|
5269
|
+
|
|
5568
5270
|
:is(.dark, .dark-theme) :where(.ui-root) {
|
|
5569
5271
|
color-scheme: dark;
|
|
5570
5272
|
}
|
|
5273
|
+
|
|
5274
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5275
|
+
|
|
5276
|
+
/* */
|
|
5277
|
+
|
|
5278
|
+
/* Focus, selection, and autofill */
|
|
5279
|
+
|
|
5280
|
+
/* */
|
|
5281
|
+
|
|
5282
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5283
|
+
|
|
5571
5284
|
.ui-root,
|
|
5572
|
-
[data-accent-color]:where(:not([data-accent-color=
|
|
5285
|
+
[data-accent-color]:where(:not([data-accent-color=''], [data-accent-color='gray'])) {
|
|
5573
5286
|
--focus-1: var(--accent-1);
|
|
5574
5287
|
--focus-2: var(--accent-2);
|
|
5575
5288
|
--focus-3: var(--accent-3);
|
|
@@ -5582,6 +5295,7 @@
|
|
|
5582
5295
|
--focus-10: var(--accent-10);
|
|
5583
5296
|
--focus-11: var(--accent-11);
|
|
5584
5297
|
--focus-12: var(--accent-12);
|
|
5298
|
+
|
|
5585
5299
|
--focus-a1: var(--accent-a1);
|
|
5586
5300
|
--focus-a2: var(--accent-a2);
|
|
5587
5301
|
--focus-a3: var(--accent-a3);
|
|
@@ -5595,24 +5309,64 @@
|
|
|
5595
5309
|
--focus-a11: var(--accent-a11);
|
|
5596
5310
|
--focus-a12: var(--accent-a12);
|
|
5597
5311
|
}
|
|
5312
|
+
|
|
5313
|
+
.ui-root ::-moz-selection {
|
|
5314
|
+
background-color: var(--focus-a5);
|
|
5315
|
+
}
|
|
5316
|
+
|
|
5598
5317
|
.ui-root ::selection {
|
|
5599
5318
|
background-color: var(--focus-a5);
|
|
5600
5319
|
}
|
|
5320
|
+
|
|
5321
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5322
|
+
|
|
5323
|
+
/* */
|
|
5324
|
+
|
|
5325
|
+
/* Background and text */
|
|
5326
|
+
|
|
5327
|
+
/* */
|
|
5328
|
+
|
|
5329
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5330
|
+
|
|
5601
5331
|
.ui-root {
|
|
5602
5332
|
color: var(--gray-12);
|
|
5603
5333
|
}
|
|
5604
|
-
|
|
5334
|
+
|
|
5335
|
+
.ui-root:where([data-has-background='true']) {
|
|
5605
5336
|
background-color: var(--color-background);
|
|
5606
5337
|
}
|
|
5607
|
-
|
|
5338
|
+
|
|
5339
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5340
|
+
|
|
5341
|
+
/* */
|
|
5342
|
+
|
|
5343
|
+
/* Panel background */
|
|
5344
|
+
|
|
5345
|
+
/* */
|
|
5346
|
+
|
|
5347
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5348
|
+
|
|
5349
|
+
.ui-root:where([data-panel-background='solid']) {
|
|
5608
5350
|
--color-panel: var(--color-panel-solid);
|
|
5609
5351
|
--backdrop-filter-panel: none;
|
|
5610
5352
|
}
|
|
5611
|
-
|
|
5353
|
+
|
|
5354
|
+
.ui-root:where([data-panel-background='translucent']) {
|
|
5612
5355
|
--color-panel: var(--color-panel-translucent);
|
|
5613
5356
|
--backdrop-filter-panel: blur(64px);
|
|
5614
5357
|
}
|
|
5615
|
-
|
|
5358
|
+
|
|
5359
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5360
|
+
|
|
5361
|
+
/* */
|
|
5362
|
+
|
|
5363
|
+
/* Accent color */
|
|
5364
|
+
|
|
5365
|
+
/* */
|
|
5366
|
+
|
|
5367
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
5368
|
+
|
|
5369
|
+
[data-accent-color='amber'] {
|
|
5616
5370
|
--accent-1: var(--amber-1);
|
|
5617
5371
|
--accent-2: var(--amber-2);
|
|
5618
5372
|
--accent-3: var(--amber-3);
|
|
@@ -5625,6 +5379,7 @@
|
|
|
5625
5379
|
--accent-10: var(--amber-10);
|
|
5626
5380
|
--accent-11: var(--amber-11);
|
|
5627
5381
|
--accent-12: var(--amber-12);
|
|
5382
|
+
|
|
5628
5383
|
--accent-a1: var(--amber-a1);
|
|
5629
5384
|
--accent-a2: var(--amber-a2);
|
|
5630
5385
|
--accent-a3: var(--amber-a3);
|
|
@@ -5637,12 +5392,14 @@
|
|
|
5637
5392
|
--accent-a10: var(--amber-a10);
|
|
5638
5393
|
--accent-a11: var(--amber-a11);
|
|
5639
5394
|
--accent-a12: var(--amber-a12);
|
|
5395
|
+
|
|
5640
5396
|
--accent-contrast: var(--amber-contrast);
|
|
5641
5397
|
--accent-surface: var(--amber-surface);
|
|
5642
5398
|
--accent-indicator: var(--amber-indicator);
|
|
5643
5399
|
--accent-track: var(--amber-track);
|
|
5644
5400
|
}
|
|
5645
|
-
|
|
5401
|
+
|
|
5402
|
+
[data-accent-color='blue'] {
|
|
5646
5403
|
--accent-1: var(--blue-1);
|
|
5647
5404
|
--accent-2: var(--blue-2);
|
|
5648
5405
|
--accent-3: var(--blue-3);
|
|
@@ -5655,6 +5412,7 @@
|
|
|
5655
5412
|
--accent-10: var(--blue-10);
|
|
5656
5413
|
--accent-11: var(--blue-11);
|
|
5657
5414
|
--accent-12: var(--blue-12);
|
|
5415
|
+
|
|
5658
5416
|
--accent-a1: var(--blue-a1);
|
|
5659
5417
|
--accent-a2: var(--blue-a2);
|
|
5660
5418
|
--accent-a3: var(--blue-a3);
|
|
@@ -5667,12 +5425,14 @@
|
|
|
5667
5425
|
--accent-a10: var(--blue-a10);
|
|
5668
5426
|
--accent-a11: var(--blue-a11);
|
|
5669
5427
|
--accent-a12: var(--blue-a12);
|
|
5428
|
+
|
|
5670
5429
|
--accent-contrast: var(--blue-contrast);
|
|
5671
5430
|
--accent-surface: var(--blue-surface);
|
|
5672
5431
|
--accent-indicator: var(--blue-indicator);
|
|
5673
5432
|
--accent-track: var(--blue-track);
|
|
5674
5433
|
}
|
|
5675
|
-
|
|
5434
|
+
|
|
5435
|
+
[data-accent-color='bronze'] {
|
|
5676
5436
|
--accent-1: var(--bronze-1);
|
|
5677
5437
|
--accent-2: var(--bronze-2);
|
|
5678
5438
|
--accent-3: var(--bronze-3);
|
|
@@ -5685,6 +5445,7 @@
|
|
|
5685
5445
|
--accent-10: var(--bronze-10);
|
|
5686
5446
|
--accent-11: var(--bronze-11);
|
|
5687
5447
|
--accent-12: var(--bronze-12);
|
|
5448
|
+
|
|
5688
5449
|
--accent-a1: var(--bronze-a1);
|
|
5689
5450
|
--accent-a2: var(--bronze-a2);
|
|
5690
5451
|
--accent-a3: var(--bronze-a3);
|
|
@@ -5697,12 +5458,14 @@
|
|
|
5697
5458
|
--accent-a10: var(--bronze-a10);
|
|
5698
5459
|
--accent-a11: var(--bronze-a11);
|
|
5699
5460
|
--accent-a12: var(--bronze-a12);
|
|
5461
|
+
|
|
5700
5462
|
--accent-contrast: var(--bronze-contrast);
|
|
5701
5463
|
--accent-surface: var(--bronze-surface);
|
|
5702
5464
|
--accent-indicator: var(--bronze-indicator);
|
|
5703
5465
|
--accent-track: var(--bronze-track);
|
|
5704
5466
|
}
|
|
5705
|
-
|
|
5467
|
+
|
|
5468
|
+
[data-accent-color='brown'] {
|
|
5706
5469
|
--accent-1: var(--brown-1);
|
|
5707
5470
|
--accent-2: var(--brown-2);
|
|
5708
5471
|
--accent-3: var(--brown-3);
|
|
@@ -5715,6 +5478,7 @@
|
|
|
5715
5478
|
--accent-10: var(--brown-10);
|
|
5716
5479
|
--accent-11: var(--brown-11);
|
|
5717
5480
|
--accent-12: var(--brown-12);
|
|
5481
|
+
|
|
5718
5482
|
--accent-a1: var(--brown-a1);
|
|
5719
5483
|
--accent-a2: var(--brown-a2);
|
|
5720
5484
|
--accent-a3: var(--brown-a3);
|
|
@@ -5727,12 +5491,14 @@
|
|
|
5727
5491
|
--accent-a10: var(--brown-a10);
|
|
5728
5492
|
--accent-a11: var(--brown-a11);
|
|
5729
5493
|
--accent-a12: var(--brown-a12);
|
|
5494
|
+
|
|
5730
5495
|
--accent-contrast: var(--brown-contrast);
|
|
5731
5496
|
--accent-surface: var(--brown-surface);
|
|
5732
5497
|
--accent-indicator: var(--brown-indicator);
|
|
5733
5498
|
--accent-track: var(--brown-track);
|
|
5734
5499
|
}
|
|
5735
|
-
|
|
5500
|
+
|
|
5501
|
+
[data-accent-color='crimson'] {
|
|
5736
5502
|
--accent-1: var(--crimson-1);
|
|
5737
5503
|
--accent-2: var(--crimson-2);
|
|
5738
5504
|
--accent-3: var(--crimson-3);
|
|
@@ -5745,6 +5511,7 @@
|
|
|
5745
5511
|
--accent-10: var(--crimson-10);
|
|
5746
5512
|
--accent-11: var(--crimson-11);
|
|
5747
5513
|
--accent-12: var(--crimson-12);
|
|
5514
|
+
|
|
5748
5515
|
--accent-a1: var(--crimson-a1);
|
|
5749
5516
|
--accent-a2: var(--crimson-a2);
|
|
5750
5517
|
--accent-a3: var(--crimson-a3);
|
|
@@ -5757,12 +5524,14 @@
|
|
|
5757
5524
|
--accent-a10: var(--crimson-a10);
|
|
5758
5525
|
--accent-a11: var(--crimson-a11);
|
|
5759
5526
|
--accent-a12: var(--crimson-a12);
|
|
5527
|
+
|
|
5760
5528
|
--accent-contrast: var(--crimson-contrast);
|
|
5761
5529
|
--accent-surface: var(--crimson-surface);
|
|
5762
5530
|
--accent-indicator: var(--crimson-indicator);
|
|
5763
5531
|
--accent-track: var(--crimson-track);
|
|
5764
5532
|
}
|
|
5765
|
-
|
|
5533
|
+
|
|
5534
|
+
[data-accent-color='cyan'] {
|
|
5766
5535
|
--accent-1: var(--cyan-1);
|
|
5767
5536
|
--accent-2: var(--cyan-2);
|
|
5768
5537
|
--accent-3: var(--cyan-3);
|
|
@@ -5775,6 +5544,7 @@
|
|
|
5775
5544
|
--accent-10: var(--cyan-10);
|
|
5776
5545
|
--accent-11: var(--cyan-11);
|
|
5777
5546
|
--accent-12: var(--cyan-12);
|
|
5547
|
+
|
|
5778
5548
|
--accent-a1: var(--cyan-a1);
|
|
5779
5549
|
--accent-a2: var(--cyan-a2);
|
|
5780
5550
|
--accent-a3: var(--cyan-a3);
|
|
@@ -5787,12 +5557,14 @@
|
|
|
5787
5557
|
--accent-a10: var(--cyan-a10);
|
|
5788
5558
|
--accent-a11: var(--cyan-a11);
|
|
5789
5559
|
--accent-a12: var(--cyan-a12);
|
|
5560
|
+
|
|
5790
5561
|
--accent-contrast: var(--cyan-contrast);
|
|
5791
5562
|
--accent-surface: var(--cyan-surface);
|
|
5792
5563
|
--accent-indicator: var(--cyan-indicator);
|
|
5793
5564
|
--accent-track: var(--cyan-track);
|
|
5794
5565
|
}
|
|
5795
|
-
|
|
5566
|
+
|
|
5567
|
+
[data-accent-color='gold'] {
|
|
5796
5568
|
--accent-1: var(--gold-1);
|
|
5797
5569
|
--accent-2: var(--gold-2);
|
|
5798
5570
|
--accent-3: var(--gold-3);
|
|
@@ -5805,6 +5577,7 @@
|
|
|
5805
5577
|
--accent-10: var(--gold-10);
|
|
5806
5578
|
--accent-11: var(--gold-11);
|
|
5807
5579
|
--accent-12: var(--gold-12);
|
|
5580
|
+
|
|
5808
5581
|
--accent-a1: var(--gold-a1);
|
|
5809
5582
|
--accent-a2: var(--gold-a2);
|
|
5810
5583
|
--accent-a3: var(--gold-a3);
|
|
@@ -5817,12 +5590,14 @@
|
|
|
5817
5590
|
--accent-a10: var(--gold-a10);
|
|
5818
5591
|
--accent-a11: var(--gold-a11);
|
|
5819
5592
|
--accent-a12: var(--gold-a12);
|
|
5593
|
+
|
|
5820
5594
|
--accent-contrast: var(--gold-contrast);
|
|
5821
5595
|
--accent-surface: var(--gold-surface);
|
|
5822
5596
|
--accent-indicator: var(--gold-indicator);
|
|
5823
5597
|
--accent-track: var(--gold-track);
|
|
5824
5598
|
}
|
|
5825
|
-
|
|
5599
|
+
|
|
5600
|
+
[data-accent-color='grass'] {
|
|
5826
5601
|
--accent-1: var(--grass-1);
|
|
5827
5602
|
--accent-2: var(--grass-2);
|
|
5828
5603
|
--accent-3: var(--grass-3);
|
|
@@ -5835,6 +5610,7 @@
|
|
|
5835
5610
|
--accent-10: var(--grass-10);
|
|
5836
5611
|
--accent-11: var(--grass-11);
|
|
5837
5612
|
--accent-12: var(--grass-12);
|
|
5613
|
+
|
|
5838
5614
|
--accent-a1: var(--grass-a1);
|
|
5839
5615
|
--accent-a2: var(--grass-a2);
|
|
5840
5616
|
--accent-a3: var(--grass-a3);
|
|
@@ -5847,12 +5623,14 @@
|
|
|
5847
5623
|
--accent-a10: var(--grass-a10);
|
|
5848
5624
|
--accent-a11: var(--grass-a11);
|
|
5849
5625
|
--accent-a12: var(--grass-a12);
|
|
5626
|
+
|
|
5850
5627
|
--accent-contrast: var(--grass-contrast);
|
|
5851
5628
|
--accent-surface: var(--grass-surface);
|
|
5852
5629
|
--accent-indicator: var(--grass-indicator);
|
|
5853
5630
|
--accent-track: var(--grass-track);
|
|
5854
5631
|
}
|
|
5855
|
-
|
|
5632
|
+
|
|
5633
|
+
[data-accent-color='gray'] {
|
|
5856
5634
|
--accent-1: var(--gray-1);
|
|
5857
5635
|
--accent-2: var(--gray-2);
|
|
5858
5636
|
--accent-3: var(--gray-3);
|
|
@@ -5865,6 +5643,7 @@
|
|
|
5865
5643
|
--accent-10: var(--gray-10);
|
|
5866
5644
|
--accent-11: var(--gray-11);
|
|
5867
5645
|
--accent-12: var(--gray-12);
|
|
5646
|
+
|
|
5868
5647
|
--accent-a1: var(--gray-a1);
|
|
5869
5648
|
--accent-a2: var(--gray-a2);
|
|
5870
5649
|
--accent-a3: var(--gray-a3);
|
|
@@ -5877,12 +5656,14 @@
|
|
|
5877
5656
|
--accent-a10: var(--gray-a10);
|
|
5878
5657
|
--accent-a11: var(--gray-a11);
|
|
5879
5658
|
--accent-a12: var(--gray-a12);
|
|
5659
|
+
|
|
5880
5660
|
--accent-contrast: var(--gray-contrast);
|
|
5881
5661
|
--accent-surface: var(--gray-surface);
|
|
5882
5662
|
--accent-indicator: var(--gray-indicator);
|
|
5883
5663
|
--accent-track: var(--gray-track);
|
|
5884
5664
|
}
|
|
5885
|
-
|
|
5665
|
+
|
|
5666
|
+
[data-accent-color='green'] {
|
|
5886
5667
|
--accent-1: var(--green-1);
|
|
5887
5668
|
--accent-2: var(--green-2);
|
|
5888
5669
|
--accent-3: var(--green-3);
|
|
@@ -5895,6 +5676,7 @@
|
|
|
5895
5676
|
--accent-10: var(--green-10);
|
|
5896
5677
|
--accent-11: var(--green-11);
|
|
5897
5678
|
--accent-12: var(--green-12);
|
|
5679
|
+
|
|
5898
5680
|
--accent-a1: var(--green-a1);
|
|
5899
5681
|
--accent-a2: var(--green-a2);
|
|
5900
5682
|
--accent-a3: var(--green-a3);
|
|
@@ -5907,12 +5689,14 @@
|
|
|
5907
5689
|
--accent-a10: var(--green-a10);
|
|
5908
5690
|
--accent-a11: var(--green-a11);
|
|
5909
5691
|
--accent-a12: var(--green-a12);
|
|
5692
|
+
|
|
5910
5693
|
--accent-contrast: var(--green-contrast);
|
|
5911
5694
|
--accent-surface: var(--green-surface);
|
|
5912
5695
|
--accent-indicator: var(--green-indicator);
|
|
5913
5696
|
--accent-track: var(--green-track);
|
|
5914
5697
|
}
|
|
5915
|
-
|
|
5698
|
+
|
|
5699
|
+
[data-accent-color='indigo'] {
|
|
5916
5700
|
--accent-1: var(--indigo-1);
|
|
5917
5701
|
--accent-2: var(--indigo-2);
|
|
5918
5702
|
--accent-3: var(--indigo-3);
|
|
@@ -5925,6 +5709,7 @@
|
|
|
5925
5709
|
--accent-10: var(--indigo-10);
|
|
5926
5710
|
--accent-11: var(--indigo-11);
|
|
5927
5711
|
--accent-12: var(--indigo-12);
|
|
5712
|
+
|
|
5928
5713
|
--accent-a1: var(--indigo-a1);
|
|
5929
5714
|
--accent-a2: var(--indigo-a2);
|
|
5930
5715
|
--accent-a3: var(--indigo-a3);
|
|
@@ -5937,12 +5722,14 @@
|
|
|
5937
5722
|
--accent-a10: var(--indigo-a10);
|
|
5938
5723
|
--accent-a11: var(--indigo-a11);
|
|
5939
5724
|
--accent-a12: var(--indigo-a12);
|
|
5725
|
+
|
|
5940
5726
|
--accent-contrast: var(--indigo-contrast);
|
|
5941
5727
|
--accent-surface: var(--indigo-surface);
|
|
5942
5728
|
--accent-indicator: var(--indigo-indicator);
|
|
5943
5729
|
--accent-track: var(--indigo-track);
|
|
5944
5730
|
}
|
|
5945
|
-
|
|
5731
|
+
|
|
5732
|
+
[data-accent-color='iris'] {
|
|
5946
5733
|
--accent-1: var(--iris-1);
|
|
5947
5734
|
--accent-2: var(--iris-2);
|
|
5948
5735
|
--accent-3: var(--iris-3);
|
|
@@ -5955,6 +5742,7 @@
|
|
|
5955
5742
|
--accent-10: var(--iris-10);
|
|
5956
5743
|
--accent-11: var(--iris-11);
|
|
5957
5744
|
--accent-12: var(--iris-12);
|
|
5745
|
+
|
|
5958
5746
|
--accent-a1: var(--iris-a1);
|
|
5959
5747
|
--accent-a2: var(--iris-a2);
|
|
5960
5748
|
--accent-a3: var(--iris-a3);
|
|
@@ -5967,12 +5755,14 @@
|
|
|
5967
5755
|
--accent-a10: var(--iris-a10);
|
|
5968
5756
|
--accent-a11: var(--iris-a11);
|
|
5969
5757
|
--accent-a12: var(--iris-a12);
|
|
5758
|
+
|
|
5970
5759
|
--accent-contrast: var(--iris-contrast);
|
|
5971
5760
|
--accent-surface: var(--iris-surface);
|
|
5972
5761
|
--accent-indicator: var(--iris-indicator);
|
|
5973
5762
|
--accent-track: var(--iris-track);
|
|
5974
5763
|
}
|
|
5975
|
-
|
|
5764
|
+
|
|
5765
|
+
[data-accent-color='jade'] {
|
|
5976
5766
|
--accent-1: var(--jade-1);
|
|
5977
5767
|
--accent-2: var(--jade-2);
|
|
5978
5768
|
--accent-3: var(--jade-3);
|
|
@@ -5985,6 +5775,7 @@
|
|
|
5985
5775
|
--accent-10: var(--jade-10);
|
|
5986
5776
|
--accent-11: var(--jade-11);
|
|
5987
5777
|
--accent-12: var(--jade-12);
|
|
5778
|
+
|
|
5988
5779
|
--accent-a1: var(--jade-a1);
|
|
5989
5780
|
--accent-a2: var(--jade-a2);
|
|
5990
5781
|
--accent-a3: var(--jade-a3);
|
|
@@ -5997,12 +5788,14 @@
|
|
|
5997
5788
|
--accent-a10: var(--jade-a10);
|
|
5998
5789
|
--accent-a11: var(--jade-a11);
|
|
5999
5790
|
--accent-a12: var(--jade-a12);
|
|
5791
|
+
|
|
6000
5792
|
--accent-contrast: var(--jade-contrast);
|
|
6001
5793
|
--accent-surface: var(--jade-surface);
|
|
6002
5794
|
--accent-indicator: var(--jade-indicator);
|
|
6003
5795
|
--accent-track: var(--jade-track);
|
|
6004
5796
|
}
|
|
6005
|
-
|
|
5797
|
+
|
|
5798
|
+
[data-accent-color='lime'] {
|
|
6006
5799
|
--accent-1: var(--lime-1);
|
|
6007
5800
|
--accent-2: var(--lime-2);
|
|
6008
5801
|
--accent-3: var(--lime-3);
|
|
@@ -6015,6 +5808,7 @@
|
|
|
6015
5808
|
--accent-10: var(--lime-10);
|
|
6016
5809
|
--accent-11: var(--lime-11);
|
|
6017
5810
|
--accent-12: var(--lime-12);
|
|
5811
|
+
|
|
6018
5812
|
--accent-a1: var(--lime-a1);
|
|
6019
5813
|
--accent-a2: var(--lime-a2);
|
|
6020
5814
|
--accent-a3: var(--lime-a3);
|
|
@@ -6027,12 +5821,14 @@
|
|
|
6027
5821
|
--accent-a10: var(--lime-a10);
|
|
6028
5822
|
--accent-a11: var(--lime-a11);
|
|
6029
5823
|
--accent-a12: var(--lime-a12);
|
|
5824
|
+
|
|
6030
5825
|
--accent-contrast: var(--lime-contrast);
|
|
6031
5826
|
--accent-surface: var(--lime-surface);
|
|
6032
5827
|
--accent-indicator: var(--lime-indicator);
|
|
6033
5828
|
--accent-track: var(--lime-track);
|
|
6034
5829
|
}
|
|
6035
|
-
|
|
5830
|
+
|
|
5831
|
+
[data-accent-color='mint'] {
|
|
6036
5832
|
--accent-1: var(--mint-1);
|
|
6037
5833
|
--accent-2: var(--mint-2);
|
|
6038
5834
|
--accent-3: var(--mint-3);
|
|
@@ -6045,6 +5841,7 @@
|
|
|
6045
5841
|
--accent-10: var(--mint-10);
|
|
6046
5842
|
--accent-11: var(--mint-11);
|
|
6047
5843
|
--accent-12: var(--mint-12);
|
|
5844
|
+
|
|
6048
5845
|
--accent-a1: var(--mint-a1);
|
|
6049
5846
|
--accent-a2: var(--mint-a2);
|
|
6050
5847
|
--accent-a3: var(--mint-a3);
|
|
@@ -6057,12 +5854,14 @@
|
|
|
6057
5854
|
--accent-a10: var(--mint-a10);
|
|
6058
5855
|
--accent-a11: var(--mint-a11);
|
|
6059
5856
|
--accent-a12: var(--mint-a12);
|
|
5857
|
+
|
|
6060
5858
|
--accent-contrast: var(--mint-contrast);
|
|
6061
5859
|
--accent-surface: var(--mint-surface);
|
|
6062
5860
|
--accent-indicator: var(--mint-indicator);
|
|
6063
5861
|
--accent-track: var(--mint-track);
|
|
6064
5862
|
}
|
|
6065
|
-
|
|
5863
|
+
|
|
5864
|
+
[data-accent-color='orange'] {
|
|
6066
5865
|
--accent-1: var(--orange-1);
|
|
6067
5866
|
--accent-2: var(--orange-2);
|
|
6068
5867
|
--accent-3: var(--orange-3);
|
|
@@ -6075,6 +5874,7 @@
|
|
|
6075
5874
|
--accent-10: var(--orange-10);
|
|
6076
5875
|
--accent-11: var(--orange-11);
|
|
6077
5876
|
--accent-12: var(--orange-12);
|
|
5877
|
+
|
|
6078
5878
|
--accent-a1: var(--orange-a1);
|
|
6079
5879
|
--accent-a2: var(--orange-a2);
|
|
6080
5880
|
--accent-a3: var(--orange-a3);
|
|
@@ -6087,12 +5887,14 @@
|
|
|
6087
5887
|
--accent-a10: var(--orange-a10);
|
|
6088
5888
|
--accent-a11: var(--orange-a11);
|
|
6089
5889
|
--accent-a12: var(--orange-a12);
|
|
5890
|
+
|
|
6090
5891
|
--accent-contrast: var(--orange-contrast);
|
|
6091
5892
|
--accent-surface: var(--orange-surface);
|
|
6092
5893
|
--accent-indicator: var(--orange-indicator);
|
|
6093
5894
|
--accent-track: var(--orange-track);
|
|
6094
5895
|
}
|
|
6095
|
-
|
|
5896
|
+
|
|
5897
|
+
[data-accent-color='pink'] {
|
|
6096
5898
|
--accent-1: var(--pink-1);
|
|
6097
5899
|
--accent-2: var(--pink-2);
|
|
6098
5900
|
--accent-3: var(--pink-3);
|
|
@@ -6105,6 +5907,7 @@
|
|
|
6105
5907
|
--accent-10: var(--pink-10);
|
|
6106
5908
|
--accent-11: var(--pink-11);
|
|
6107
5909
|
--accent-12: var(--pink-12);
|
|
5910
|
+
|
|
6108
5911
|
--accent-a1: var(--pink-a1);
|
|
6109
5912
|
--accent-a2: var(--pink-a2);
|
|
6110
5913
|
--accent-a3: var(--pink-a3);
|
|
@@ -6117,12 +5920,14 @@
|
|
|
6117
5920
|
--accent-a10: var(--pink-a10);
|
|
6118
5921
|
--accent-a11: var(--pink-a11);
|
|
6119
5922
|
--accent-a12: var(--pink-a12);
|
|
5923
|
+
|
|
6120
5924
|
--accent-contrast: var(--pink-contrast);
|
|
6121
5925
|
--accent-surface: var(--pink-surface);
|
|
6122
5926
|
--accent-indicator: var(--pink-indicator);
|
|
6123
5927
|
--accent-track: var(--pink-track);
|
|
6124
5928
|
}
|
|
6125
|
-
|
|
5929
|
+
|
|
5930
|
+
[data-accent-color='plum'] {
|
|
6126
5931
|
--accent-1: var(--plum-1);
|
|
6127
5932
|
--accent-2: var(--plum-2);
|
|
6128
5933
|
--accent-3: var(--plum-3);
|
|
@@ -6135,6 +5940,7 @@
|
|
|
6135
5940
|
--accent-10: var(--plum-10);
|
|
6136
5941
|
--accent-11: var(--plum-11);
|
|
6137
5942
|
--accent-12: var(--plum-12);
|
|
5943
|
+
|
|
6138
5944
|
--accent-a1: var(--plum-a1);
|
|
6139
5945
|
--accent-a2: var(--plum-a2);
|
|
6140
5946
|
--accent-a3: var(--plum-a3);
|
|
@@ -6147,12 +5953,14 @@
|
|
|
6147
5953
|
--accent-a10: var(--plum-a10);
|
|
6148
5954
|
--accent-a11: var(--plum-a11);
|
|
6149
5955
|
--accent-a12: var(--plum-a12);
|
|
5956
|
+
|
|
6150
5957
|
--accent-contrast: var(--plum-contrast);
|
|
6151
5958
|
--accent-surface: var(--plum-surface);
|
|
6152
5959
|
--accent-indicator: var(--plum-indicator);
|
|
6153
5960
|
--accent-track: var(--plum-track);
|
|
6154
5961
|
}
|
|
6155
|
-
|
|
5962
|
+
|
|
5963
|
+
[data-accent-color='purple'] {
|
|
6156
5964
|
--accent-1: var(--purple-1);
|
|
6157
5965
|
--accent-2: var(--purple-2);
|
|
6158
5966
|
--accent-3: var(--purple-3);
|
|
@@ -6165,6 +5973,7 @@
|
|
|
6165
5973
|
--accent-10: var(--purple-10);
|
|
6166
5974
|
--accent-11: var(--purple-11);
|
|
6167
5975
|
--accent-12: var(--purple-12);
|
|
5976
|
+
|
|
6168
5977
|
--accent-a1: var(--purple-a1);
|
|
6169
5978
|
--accent-a2: var(--purple-a2);
|
|
6170
5979
|
--accent-a3: var(--purple-a3);
|
|
@@ -6177,12 +5986,14 @@
|
|
|
6177
5986
|
--accent-a10: var(--purple-a10);
|
|
6178
5987
|
--accent-a11: var(--purple-a11);
|
|
6179
5988
|
--accent-a12: var(--purple-a12);
|
|
5989
|
+
|
|
6180
5990
|
--accent-contrast: var(--purple-contrast);
|
|
6181
5991
|
--accent-surface: var(--purple-surface);
|
|
6182
5992
|
--accent-indicator: var(--purple-indicator);
|
|
6183
5993
|
--accent-track: var(--purple-track);
|
|
6184
5994
|
}
|
|
6185
|
-
|
|
5995
|
+
|
|
5996
|
+
[data-accent-color='red'] {
|
|
6186
5997
|
--accent-1: var(--red-1);
|
|
6187
5998
|
--accent-2: var(--red-2);
|
|
6188
5999
|
--accent-3: var(--red-3);
|
|
@@ -6195,6 +6006,7 @@
|
|
|
6195
6006
|
--accent-10: var(--red-10);
|
|
6196
6007
|
--accent-11: var(--red-11);
|
|
6197
6008
|
--accent-12: var(--red-12);
|
|
6009
|
+
|
|
6198
6010
|
--accent-a1: var(--red-a1);
|
|
6199
6011
|
--accent-a2: var(--red-a2);
|
|
6200
6012
|
--accent-a3: var(--red-a3);
|
|
@@ -6207,12 +6019,14 @@
|
|
|
6207
6019
|
--accent-a10: var(--red-a10);
|
|
6208
6020
|
--accent-a11: var(--red-a11);
|
|
6209
6021
|
--accent-a12: var(--red-a12);
|
|
6022
|
+
|
|
6210
6023
|
--accent-contrast: var(--red-contrast);
|
|
6211
6024
|
--accent-surface: var(--red-surface);
|
|
6212
6025
|
--accent-indicator: var(--red-indicator);
|
|
6213
6026
|
--accent-track: var(--red-track);
|
|
6214
6027
|
}
|
|
6215
|
-
|
|
6028
|
+
|
|
6029
|
+
[data-accent-color='ruby'] {
|
|
6216
6030
|
--accent-1: var(--ruby-1);
|
|
6217
6031
|
--accent-2: var(--ruby-2);
|
|
6218
6032
|
--accent-3: var(--ruby-3);
|
|
@@ -6225,6 +6039,7 @@
|
|
|
6225
6039
|
--accent-10: var(--ruby-10);
|
|
6226
6040
|
--accent-11: var(--ruby-11);
|
|
6227
6041
|
--accent-12: var(--ruby-12);
|
|
6042
|
+
|
|
6228
6043
|
--accent-a1: var(--ruby-a1);
|
|
6229
6044
|
--accent-a2: var(--ruby-a2);
|
|
6230
6045
|
--accent-a3: var(--ruby-a3);
|
|
@@ -6237,12 +6052,14 @@
|
|
|
6237
6052
|
--accent-a10: var(--ruby-a10);
|
|
6238
6053
|
--accent-a11: var(--ruby-a11);
|
|
6239
6054
|
--accent-a12: var(--ruby-a12);
|
|
6055
|
+
|
|
6240
6056
|
--accent-contrast: var(--ruby-contrast);
|
|
6241
6057
|
--accent-surface: var(--ruby-surface);
|
|
6242
6058
|
--accent-indicator: var(--ruby-indicator);
|
|
6243
6059
|
--accent-track: var(--ruby-track);
|
|
6244
6060
|
}
|
|
6245
|
-
|
|
6061
|
+
|
|
6062
|
+
[data-accent-color='sky'] {
|
|
6246
6063
|
--accent-1: var(--sky-1);
|
|
6247
6064
|
--accent-2: var(--sky-2);
|
|
6248
6065
|
--accent-3: var(--sky-3);
|
|
@@ -6255,6 +6072,7 @@
|
|
|
6255
6072
|
--accent-10: var(--sky-10);
|
|
6256
6073
|
--accent-11: var(--sky-11);
|
|
6257
6074
|
--accent-12: var(--sky-12);
|
|
6075
|
+
|
|
6258
6076
|
--accent-a1: var(--sky-a1);
|
|
6259
6077
|
--accent-a2: var(--sky-a2);
|
|
6260
6078
|
--accent-a3: var(--sky-a3);
|
|
@@ -6267,12 +6085,14 @@
|
|
|
6267
6085
|
--accent-a10: var(--sky-a10);
|
|
6268
6086
|
--accent-a11: var(--sky-a11);
|
|
6269
6087
|
--accent-a12: var(--sky-a12);
|
|
6088
|
+
|
|
6270
6089
|
--accent-contrast: var(--sky-contrast);
|
|
6271
6090
|
--accent-surface: var(--sky-surface);
|
|
6272
6091
|
--accent-indicator: var(--sky-indicator);
|
|
6273
6092
|
--accent-track: var(--sky-track);
|
|
6274
6093
|
}
|
|
6275
|
-
|
|
6094
|
+
|
|
6095
|
+
[data-accent-color='teal'] {
|
|
6276
6096
|
--accent-1: var(--teal-1);
|
|
6277
6097
|
--accent-2: var(--teal-2);
|
|
6278
6098
|
--accent-3: var(--teal-3);
|
|
@@ -6285,6 +6105,7 @@
|
|
|
6285
6105
|
--accent-10: var(--teal-10);
|
|
6286
6106
|
--accent-11: var(--teal-11);
|
|
6287
6107
|
--accent-12: var(--teal-12);
|
|
6108
|
+
|
|
6288
6109
|
--accent-a1: var(--teal-a1);
|
|
6289
6110
|
--accent-a2: var(--teal-a2);
|
|
6290
6111
|
--accent-a3: var(--teal-a3);
|
|
@@ -6297,12 +6118,14 @@
|
|
|
6297
6118
|
--accent-a10: var(--teal-a10);
|
|
6298
6119
|
--accent-a11: var(--teal-a11);
|
|
6299
6120
|
--accent-a12: var(--teal-a12);
|
|
6121
|
+
|
|
6300
6122
|
--accent-contrast: var(--teal-contrast);
|
|
6301
6123
|
--accent-surface: var(--teal-surface);
|
|
6302
6124
|
--accent-indicator: var(--teal-indicator);
|
|
6303
6125
|
--accent-track: var(--teal-track);
|
|
6304
6126
|
}
|
|
6305
|
-
|
|
6127
|
+
|
|
6128
|
+
[data-accent-color='tomato'] {
|
|
6306
6129
|
--accent-1: var(--tomato-1);
|
|
6307
6130
|
--accent-2: var(--tomato-2);
|
|
6308
6131
|
--accent-3: var(--tomato-3);
|
|
@@ -6315,6 +6138,7 @@
|
|
|
6315
6138
|
--accent-10: var(--tomato-10);
|
|
6316
6139
|
--accent-11: var(--tomato-11);
|
|
6317
6140
|
--accent-12: var(--tomato-12);
|
|
6141
|
+
|
|
6318
6142
|
--accent-a1: var(--tomato-a1);
|
|
6319
6143
|
--accent-a2: var(--tomato-a2);
|
|
6320
6144
|
--accent-a3: var(--tomato-a3);
|
|
@@ -6327,12 +6151,14 @@
|
|
|
6327
6151
|
--accent-a10: var(--tomato-a10);
|
|
6328
6152
|
--accent-a11: var(--tomato-a11);
|
|
6329
6153
|
--accent-a12: var(--tomato-a12);
|
|
6154
|
+
|
|
6330
6155
|
--accent-contrast: var(--tomato-contrast);
|
|
6331
6156
|
--accent-surface: var(--tomato-surface);
|
|
6332
6157
|
--accent-indicator: var(--tomato-indicator);
|
|
6333
6158
|
--accent-track: var(--tomato-track);
|
|
6334
6159
|
}
|
|
6335
|
-
|
|
6160
|
+
|
|
6161
|
+
[data-accent-color='violet'] {
|
|
6336
6162
|
--accent-1: var(--violet-1);
|
|
6337
6163
|
--accent-2: var(--violet-2);
|
|
6338
6164
|
--accent-3: var(--violet-3);
|
|
@@ -6345,6 +6171,7 @@
|
|
|
6345
6171
|
--accent-10: var(--violet-10);
|
|
6346
6172
|
--accent-11: var(--violet-11);
|
|
6347
6173
|
--accent-12: var(--violet-12);
|
|
6174
|
+
|
|
6348
6175
|
--accent-a1: var(--violet-a1);
|
|
6349
6176
|
--accent-a2: var(--violet-a2);
|
|
6350
6177
|
--accent-a3: var(--violet-a3);
|
|
@@ -6357,12 +6184,14 @@
|
|
|
6357
6184
|
--accent-a10: var(--violet-a10);
|
|
6358
6185
|
--accent-a11: var(--violet-a11);
|
|
6359
6186
|
--accent-a12: var(--violet-a12);
|
|
6187
|
+
|
|
6360
6188
|
--accent-contrast: var(--violet-contrast);
|
|
6361
6189
|
--accent-surface: var(--violet-surface);
|
|
6362
6190
|
--accent-indicator: var(--violet-indicator);
|
|
6363
6191
|
--accent-track: var(--violet-track);
|
|
6364
6192
|
}
|
|
6365
|
-
|
|
6193
|
+
|
|
6194
|
+
[data-accent-color='yellow'] {
|
|
6366
6195
|
--accent-1: var(--yellow-1);
|
|
6367
6196
|
--accent-2: var(--yellow-2);
|
|
6368
6197
|
--accent-3: var(--yellow-3);
|
|
@@ -6375,6 +6204,7 @@
|
|
|
6375
6204
|
--accent-10: var(--yellow-10);
|
|
6376
6205
|
--accent-11: var(--yellow-11);
|
|
6377
6206
|
--accent-12: var(--yellow-12);
|
|
6207
|
+
|
|
6378
6208
|
--accent-a1: var(--yellow-a1);
|
|
6379
6209
|
--accent-a2: var(--yellow-a2);
|
|
6380
6210
|
--accent-a3: var(--yellow-a3);
|
|
@@ -6387,12 +6217,24 @@
|
|
|
6387
6217
|
--accent-a10: var(--yellow-a10);
|
|
6388
6218
|
--accent-a11: var(--yellow-a11);
|
|
6389
6219
|
--accent-a12: var(--yellow-a12);
|
|
6220
|
+
|
|
6390
6221
|
--accent-contrast: var(--yellow-contrast);
|
|
6391
6222
|
--accent-surface: var(--yellow-surface);
|
|
6392
6223
|
--accent-indicator: var(--yellow-indicator);
|
|
6393
6224
|
--accent-track: var(--yellow-track);
|
|
6394
6225
|
}
|
|
6395
|
-
|
|
6226
|
+
|
|
6227
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
6228
|
+
|
|
6229
|
+
/* */
|
|
6230
|
+
|
|
6231
|
+
/* Gray color */
|
|
6232
|
+
|
|
6233
|
+
/* */
|
|
6234
|
+
|
|
6235
|
+
/* * * * * * * * * * * * * * * * * * * */
|
|
6236
|
+
|
|
6237
|
+
.ui-root :where([data-gray-color='mauve']) {
|
|
6396
6238
|
--gray-1: var(--mauve-1);
|
|
6397
6239
|
--gray-2: var(--mauve-2);
|
|
6398
6240
|
--gray-3: var(--mauve-3);
|
|
@@ -6405,6 +6247,7 @@
|
|
|
6405
6247
|
--gray-10: var(--mauve-10);
|
|
6406
6248
|
--gray-11: var(--mauve-11);
|
|
6407
6249
|
--gray-12: var(--mauve-12);
|
|
6250
|
+
|
|
6408
6251
|
--gray-a1: var(--mauve-a1);
|
|
6409
6252
|
--gray-a2: var(--mauve-a2);
|
|
6410
6253
|
--gray-a3: var(--mauve-a3);
|
|
@@ -6417,12 +6260,14 @@
|
|
|
6417
6260
|
--gray-a10: var(--mauve-a10);
|
|
6418
6261
|
--gray-a11: var(--mauve-a11);
|
|
6419
6262
|
--gray-a12: var(--mauve-a12);
|
|
6263
|
+
|
|
6420
6264
|
--gray-contrast: var(--mauve-contrast);
|
|
6421
6265
|
--gray-surface: var(--mauve-surface);
|
|
6422
6266
|
--gray-indicator: var(--mauve-indicator);
|
|
6423
6267
|
--gray-track: var(--mauve-track);
|
|
6424
6268
|
}
|
|
6425
|
-
|
|
6269
|
+
|
|
6270
|
+
.ui-root :where([data-gray-color='olive']) {
|
|
6426
6271
|
--gray-1: var(--olive-1);
|
|
6427
6272
|
--gray-2: var(--olive-2);
|
|
6428
6273
|
--gray-3: var(--olive-3);
|
|
@@ -6435,6 +6280,7 @@
|
|
|
6435
6280
|
--gray-10: var(--olive-10);
|
|
6436
6281
|
--gray-11: var(--olive-11);
|
|
6437
6282
|
--gray-12: var(--olive-12);
|
|
6283
|
+
|
|
6438
6284
|
--gray-a1: var(--olive-a1);
|
|
6439
6285
|
--gray-a2: var(--olive-a2);
|
|
6440
6286
|
--gray-a3: var(--olive-a3);
|
|
@@ -6447,12 +6293,14 @@
|
|
|
6447
6293
|
--gray-a10: var(--olive-a10);
|
|
6448
6294
|
--gray-a11: var(--olive-a11);
|
|
6449
6295
|
--gray-a12: var(--olive-a12);
|
|
6296
|
+
|
|
6450
6297
|
--gray-contrast: var(--olive-contrast);
|
|
6451
6298
|
--gray-surface: var(--olive-surface);
|
|
6452
6299
|
--gray-indicator: var(--olive-indicator);
|
|
6453
6300
|
--gray-track: var(--olive-track);
|
|
6454
6301
|
}
|
|
6455
|
-
|
|
6302
|
+
|
|
6303
|
+
.ui-root :where([data-gray-color='sage']) {
|
|
6456
6304
|
--gray-1: var(--sage-1);
|
|
6457
6305
|
--gray-2: var(--sage-2);
|
|
6458
6306
|
--gray-3: var(--sage-3);
|
|
@@ -6465,6 +6313,7 @@
|
|
|
6465
6313
|
--gray-10: var(--sage-10);
|
|
6466
6314
|
--gray-11: var(--sage-11);
|
|
6467
6315
|
--gray-12: var(--sage-12);
|
|
6316
|
+
|
|
6468
6317
|
--gray-a1: var(--sage-a1);
|
|
6469
6318
|
--gray-a2: var(--sage-a2);
|
|
6470
6319
|
--gray-a3: var(--sage-a3);
|
|
@@ -6477,12 +6326,14 @@
|
|
|
6477
6326
|
--gray-a10: var(--sage-a10);
|
|
6478
6327
|
--gray-a11: var(--sage-a11);
|
|
6479
6328
|
--gray-a12: var(--sage-a12);
|
|
6329
|
+
|
|
6480
6330
|
--gray-contrast: var(--sage-contrast);
|
|
6481
6331
|
--gray-surface: var(--sage-surface);
|
|
6482
6332
|
--gray-indicator: var(--sage-indicator);
|
|
6483
6333
|
--gray-track: var(--sage-track);
|
|
6484
6334
|
}
|
|
6485
|
-
|
|
6335
|
+
|
|
6336
|
+
.ui-root :where([data-gray-color='sand']) {
|
|
6486
6337
|
--gray-1: var(--sand-1);
|
|
6487
6338
|
--gray-2: var(--sand-2);
|
|
6488
6339
|
--gray-3: var(--sand-3);
|
|
@@ -6495,6 +6346,7 @@
|
|
|
6495
6346
|
--gray-10: var(--sand-10);
|
|
6496
6347
|
--gray-11: var(--sand-11);
|
|
6497
6348
|
--gray-12: var(--sand-12);
|
|
6349
|
+
|
|
6498
6350
|
--gray-a1: var(--sand-a1);
|
|
6499
6351
|
--gray-a2: var(--sand-a2);
|
|
6500
6352
|
--gray-a3: var(--sand-a3);
|
|
@@ -6507,12 +6359,14 @@
|
|
|
6507
6359
|
--gray-a10: var(--sand-a10);
|
|
6508
6360
|
--gray-a11: var(--sand-a11);
|
|
6509
6361
|
--gray-a12: var(--sand-a12);
|
|
6362
|
+
|
|
6510
6363
|
--gray-contrast: var(--sand-contrast);
|
|
6511
6364
|
--gray-surface: var(--sand-surface);
|
|
6512
6365
|
--gray-indicator: var(--sand-indicator);
|
|
6513
6366
|
--gray-track: var(--sand-track);
|
|
6514
6367
|
}
|
|
6515
|
-
|
|
6368
|
+
|
|
6369
|
+
.ui-root :where([data-gray-color='slate']) {
|
|
6516
6370
|
--gray-1: var(--slate-1);
|
|
6517
6371
|
--gray-2: var(--slate-2);
|
|
6518
6372
|
--gray-3: var(--slate-3);
|
|
@@ -6525,6 +6379,7 @@
|
|
|
6525
6379
|
--gray-10: var(--slate-10);
|
|
6526
6380
|
--gray-11: var(--slate-11);
|
|
6527
6381
|
--gray-12: var(--slate-12);
|
|
6382
|
+
|
|
6528
6383
|
--gray-a1: var(--slate-a1);
|
|
6529
6384
|
--gray-a2: var(--slate-a2);
|
|
6530
6385
|
--gray-a3: var(--slate-a3);
|
|
@@ -6537,13 +6392,13 @@
|
|
|
6537
6392
|
--gray-a10: var(--slate-a10);
|
|
6538
6393
|
--gray-a11: var(--slate-a11);
|
|
6539
6394
|
--gray-a12: var(--slate-a12);
|
|
6395
|
+
|
|
6540
6396
|
--gray-contrast: var(--slate-contrast);
|
|
6541
6397
|
--gray-surface: var(--slate-surface);
|
|
6542
6398
|
--gray-indicator: var(--slate-indicator);
|
|
6543
6399
|
--gray-track: var(--slate-track);
|
|
6544
6400
|
}
|
|
6545
6401
|
|
|
6546
|
-
/* src/styles/monochrome.css */
|
|
6547
6402
|
html.light {
|
|
6548
6403
|
--light-0: white;
|
|
6549
6404
|
--light-a1: var(--white-a1);
|
|
@@ -6573,6 +6428,7 @@ html.light {
|
|
|
6573
6428
|
--dark-a12: var(--black-a12);
|
|
6574
6429
|
--light-surface: white;
|
|
6575
6430
|
}
|
|
6431
|
+
|
|
6576
6432
|
html.dark {
|
|
6577
6433
|
--light-0: black;
|
|
6578
6434
|
--light-a1: var(--black-a1);
|
|
@@ -6603,7 +6459,6 @@ html.dark {
|
|
|
6603
6459
|
--light-surface: var(--slate-a1);
|
|
6604
6460
|
}
|
|
6605
6461
|
|
|
6606
|
-
/* src/styles/radius.css */
|
|
6607
6462
|
[data-radius] {
|
|
6608
6463
|
--radius-1: calc(3px * var(--scaling) * var(--radius-factor));
|
|
6609
6464
|
--radius-2: calc(4px * var(--scaling) * var(--radius-factor));
|
|
@@ -6612,99 +6467,115 @@ html.dark {
|
|
|
6612
6467
|
--radius-5: calc(12px * var(--scaling) * var(--radius-factor));
|
|
6613
6468
|
--radius-6: calc(16px * var(--scaling) * var(--radius-factor));
|
|
6614
6469
|
}
|
|
6615
|
-
|
|
6470
|
+
|
|
6471
|
+
[data-radius='none'] {
|
|
6616
6472
|
--radius-factor: 0;
|
|
6617
6473
|
--radius-full: 0px;
|
|
6618
6474
|
--radius-thumb: 0.5px;
|
|
6619
6475
|
}
|
|
6620
|
-
|
|
6476
|
+
|
|
6477
|
+
[data-radius='small'] {
|
|
6621
6478
|
--radius-factor: 0.75;
|
|
6622
6479
|
--radius-full: 0px;
|
|
6623
6480
|
--radius-thumb: 0.5px;
|
|
6624
6481
|
}
|
|
6625
|
-
|
|
6482
|
+
|
|
6483
|
+
[data-radius='medium'] {
|
|
6626
6484
|
--radius-factor: 1;
|
|
6627
6485
|
--radius-full: 0px;
|
|
6628
6486
|
--radius-thumb: 9999px;
|
|
6629
6487
|
}
|
|
6630
|
-
|
|
6488
|
+
|
|
6489
|
+
[data-radius='large'] {
|
|
6631
6490
|
--radius-factor: 1.5;
|
|
6632
6491
|
--radius-full: 0px;
|
|
6633
6492
|
--radius-thumb: 9999px;
|
|
6634
6493
|
}
|
|
6635
|
-
|
|
6494
|
+
|
|
6495
|
+
[data-radius='full'] {
|
|
6636
6496
|
--radius-factor: 1.5;
|
|
6637
6497
|
--radius-full: 9999px;
|
|
6638
6498
|
--radius-thumb: 9999px;
|
|
6639
6499
|
}
|
|
6640
6500
|
|
|
6641
|
-
/* src/styles/resize.css */
|
|
6642
6501
|
.r-resize-vertical {
|
|
6643
6502
|
resize: vertical;
|
|
6644
6503
|
}
|
|
6504
|
+
|
|
6645
6505
|
.r-resize-horizontal {
|
|
6646
6506
|
resize: horizontal;
|
|
6647
6507
|
}
|
|
6508
|
+
|
|
6648
6509
|
.r-resize-both {
|
|
6649
6510
|
resize: both;
|
|
6650
6511
|
}
|
|
6651
6512
|
|
|
6652
|
-
/* src/styles/shadow.css */
|
|
6653
6513
|
.ui-root {
|
|
6654
6514
|
--shadow-1:
|
|
6655
6515
|
inset 0 0 0 1px var(--gray-a5),
|
|
6656
6516
|
inset 0 1.5px 2px 0 var(--gray-a2),
|
|
6657
6517
|
inset 0 1.5px 2px 0 var(--black-a2);
|
|
6518
|
+
|
|
6658
6519
|
--shadow-2:
|
|
6659
6520
|
0 0 0 1px var(--gray-a3),
|
|
6660
6521
|
0 0 0 0.5px var(--black-a1),
|
|
6661
6522
|
0 1px 1px 0 var(--gray-a2),
|
|
6662
6523
|
0 2px 1px -1px var(--black-a1),
|
|
6663
6524
|
0 1px 3px 0 var(--black-a1);
|
|
6525
|
+
|
|
6664
6526
|
--shadow-3:
|
|
6665
6527
|
0 0 0 1px var(--gray-a3),
|
|
6666
6528
|
0 2px 3px -2px var(--gray-a3),
|
|
6667
6529
|
0 3px 12px -4px var(--black-a2),
|
|
6668
6530
|
0 4px 16px -8px var(--black-a2);
|
|
6531
|
+
|
|
6669
6532
|
--shadow-4:
|
|
6670
6533
|
0 0 0 1px var(--gray-a3),
|
|
6671
6534
|
0 8px 40px var(--black-a1),
|
|
6672
6535
|
0 12px 32px -16px var(--gray-a3);
|
|
6536
|
+
|
|
6673
6537
|
--shadow-5:
|
|
6674
6538
|
0 0 0 1px var(--gray-a3),
|
|
6675
6539
|
0 12px 60px var(--black-a3),
|
|
6676
6540
|
0 12px 32px -16px var(--gray-a5);
|
|
6541
|
+
|
|
6677
6542
|
--shadow-6:
|
|
6678
6543
|
0 0 0 1px var(--gray-a3),
|
|
6679
6544
|
0 12px 60px var(--black-a3),
|
|
6680
6545
|
0 16px 64px var(--gray-a2),
|
|
6681
6546
|
0 16px 36px -20px var(--gray-a7);
|
|
6682
6547
|
}
|
|
6548
|
+
|
|
6683
6549
|
@supports (color: color-mix(in oklab, white, black)) {
|
|
6684
6550
|
.ui-root {
|
|
6685
6551
|
--shadow-1:
|
|
6686
6552
|
inset 0 0 0 1px var(--gray-a5),
|
|
6687
6553
|
inset 0 1.5px 2px 0 var(--gray-a2),
|
|
6688
6554
|
inset 0 1.5px 2px 0 var(--black-a2);
|
|
6555
|
+
|
|
6689
6556
|
--shadow-2:
|
|
6690
6557
|
0 0 0 1px color-mix(in oklab, var(--gray-a3), var(--gray-3) 25%),
|
|
6691
6558
|
0 0 0 0.5px var(--black-a1),
|
|
6692
6559
|
0 1px 1px 0 var(--gray-a2),
|
|
6693
6560
|
0 2px 1px -1px var(--black-a1),
|
|
6694
6561
|
0 1px 3px 0 var(--black-a1);
|
|
6562
|
+
|
|
6695
6563
|
--shadow-3:
|
|
6696
6564
|
0 0 0 1px color-mix(in oklab, var(--gray-a3), var(--gray-3) 25%),
|
|
6697
6565
|
0 2px 3px -2px var(--gray-a3),
|
|
6698
6566
|
0 3px 12px -4px var(--black-a2),
|
|
6699
6567
|
0 4px 16px -8px var(--black-a2);
|
|
6568
|
+
|
|
6700
6569
|
--shadow-4:
|
|
6701
6570
|
0 0 0 1px color-mix(in oklab, var(--gray-a3), var(--gray-3) 25%),
|
|
6702
6571
|
0 8px 40px var(--black-a1),
|
|
6703
6572
|
0 12px 32px -16px var(--gray-a3);
|
|
6573
|
+
|
|
6704
6574
|
--shadow-5:
|
|
6705
6575
|
0 0 0 1px color-mix(in oklab, var(--gray-a3), var(--gray-3) 25%),
|
|
6706
6576
|
0 12px 60px var(--black-a3),
|
|
6707
6577
|
0 12px 32px -16px var(--gray-a5);
|
|
6578
|
+
|
|
6708
6579
|
--shadow-6:
|
|
6709
6580
|
0 0 0 1px color-mix(in oklab, var(--gray-a3), var(--gray-3) 25%),
|
|
6710
6581
|
0 12px 60px var(--black-a3),
|
|
@@ -6712,37 +6583,44 @@ html.dark {
|
|
|
6712
6583
|
0 16px 36px -20px var(--gray-a7);
|
|
6713
6584
|
}
|
|
6714
6585
|
}
|
|
6586
|
+
|
|
6715
6587
|
:is(.dark, .dark-theme) .ui-root {
|
|
6716
6588
|
--shadow-1:
|
|
6717
6589
|
inset 0 -1px 1px 0 var(--gray-a3),
|
|
6718
6590
|
inset 0 0 0 1px var(--gray-a3),
|
|
6719
6591
|
inset 0 3px 4px 0 var(--black-a5),
|
|
6720
6592
|
inset 0 0 0 1px var(--gray-a4);
|
|
6593
|
+
|
|
6721
6594
|
--shadow-2:
|
|
6722
6595
|
0 0 0 1px var(--gray-a6),
|
|
6723
6596
|
0 0 0 0.5px var(--black-a3),
|
|
6724
6597
|
0 1px 1px 0 var(--black-a6),
|
|
6725
6598
|
0 2px 1px -1px var(--black-a6),
|
|
6726
6599
|
0 1px 3px 0 var(--black-a5);
|
|
6600
|
+
|
|
6727
6601
|
--shadow-3:
|
|
6728
6602
|
0 0 0 1px var(--gray-a6),
|
|
6729
6603
|
0 2px 3px -2px var(--black-a3),
|
|
6730
6604
|
0 3px 8px -2px var(--black-a6),
|
|
6731
6605
|
0 4px 12px -4px var(--black-a7);
|
|
6606
|
+
|
|
6732
6607
|
--shadow-4:
|
|
6733
6608
|
0 0 0 1px var(--gray-a6),
|
|
6734
6609
|
0 8px 40px var(--black-a3),
|
|
6735
6610
|
0 12px 32px -16px var(--black-a5);
|
|
6611
|
+
|
|
6736
6612
|
--shadow-5:
|
|
6737
6613
|
0 0 0 1px var(--gray-a6),
|
|
6738
6614
|
0 12px 60px var(--black-a5),
|
|
6739
6615
|
0 12px 32px -16px var(--black-a7);
|
|
6616
|
+
|
|
6740
6617
|
--shadow-6:
|
|
6741
6618
|
0 0 0 1px var(--gray-a6),
|
|
6742
6619
|
0 12px 60px var(--black-a4),
|
|
6743
6620
|
0 16px 64px var(--black-a6),
|
|
6744
6621
|
0 16px 36px -20px var(--black-a11);
|
|
6745
6622
|
}
|
|
6623
|
+
|
|
6746
6624
|
@supports (color: color-mix(in oklab, white, black)) {
|
|
6747
6625
|
:is(.dark, .dark-theme) .ui-root {
|
|
6748
6626
|
--shadow-1:
|
|
@@ -6750,25 +6628,30 @@ html.dark {
|
|
|
6750
6628
|
inset 0 0 0 1px var(--gray-a3),
|
|
6751
6629
|
inset 0 3px 4px 0 var(--black-a5),
|
|
6752
6630
|
inset 0 0 0 1px var(--gray-a4);
|
|
6631
|
+
|
|
6753
6632
|
--shadow-2:
|
|
6754
6633
|
0 0 0 1px color-mix(in oklab, var(--gray-a6), var(--gray-6) 25%),
|
|
6755
6634
|
0 0 0 0.5px var(--black-a3),
|
|
6756
6635
|
0 1px 1px 0 var(--black-a6),
|
|
6757
6636
|
0 2px 1px -1px var(--black-a6),
|
|
6758
6637
|
0 1px 3px 0 var(--black-a5);
|
|
6638
|
+
|
|
6759
6639
|
--shadow-3:
|
|
6760
6640
|
0 0 0 1px color-mix(in oklab, var(--gray-a6), var(--gray-6) 25%),
|
|
6761
6641
|
0 2px 3px -2px var(--black-a3),
|
|
6762
6642
|
0 3px 8px -2px var(--black-a6),
|
|
6763
6643
|
0 4px 12px -4px var(--black-a7);
|
|
6644
|
+
|
|
6764
6645
|
--shadow-4:
|
|
6765
6646
|
0 0 0 1px color-mix(in oklab, var(--gray-a6), var(--gray-6) 25%),
|
|
6766
6647
|
0 8px 40px var(--black-a3),
|
|
6767
6648
|
0 12px 32px -16px var(--black-a5);
|
|
6649
|
+
|
|
6768
6650
|
--shadow-5:
|
|
6769
6651
|
0 0 0 1px color-mix(in oklab, var(--gray-a6), var(--gray-6) 25%),
|
|
6770
6652
|
0 12px 60px var(--black-a5),
|
|
6771
6653
|
0 12px 32px -16px var(--black-a7);
|
|
6654
|
+
|
|
6772
6655
|
--shadow-6:
|
|
6773
6656
|
0 0 0 1px color-mix(in oklab, var(--gray-a6), var(--gray-6) 25%),
|
|
6774
6657
|
0 12px 60px var(--black-a4),
|
|
@@ -6777,7 +6660,6 @@ html.dark {
|
|
|
6777
6660
|
}
|
|
6778
6661
|
}
|
|
6779
6662
|
|
|
6780
|
-
/* src/styles/space.css */
|
|
6781
6663
|
.ui-root {
|
|
6782
6664
|
--space-1: calc(4px * var(--scaling));
|
|
6783
6665
|
--space-2: calc(8px * var(--scaling));
|
|
@@ -6790,7 +6672,6 @@ html.dark {
|
|
|
6790
6672
|
--space-9: calc(64px * var(--scaling));
|
|
6791
6673
|
}
|
|
6792
6674
|
|
|
6793
|
-
/* src/styles/animation.css */
|
|
6794
6675
|
@keyframes ui-fade-in {
|
|
6795
6676
|
from {
|
|
6796
6677
|
opacity: 0;
|
|
@@ -6799,6 +6680,7 @@ html.dark {
|
|
|
6799
6680
|
opacity: 1;
|
|
6800
6681
|
}
|
|
6801
6682
|
}
|
|
6683
|
+
|
|
6802
6684
|
@keyframes ui-fade-out {
|
|
6803
6685
|
from {
|
|
6804
6686
|
opacity: 1;
|
|
@@ -6807,6 +6689,7 @@ html.dark {
|
|
|
6807
6689
|
opacity: 0;
|
|
6808
6690
|
}
|
|
6809
6691
|
}
|
|
6692
|
+
|
|
6810
6693
|
@keyframes ui-slide-from-top {
|
|
6811
6694
|
from {
|
|
6812
6695
|
transform: translateY(4px) scale(0.97);
|
|
@@ -6815,6 +6698,7 @@ html.dark {
|
|
|
6815
6698
|
transform: translateY(0) scale(1);
|
|
6816
6699
|
}
|
|
6817
6700
|
}
|
|
6701
|
+
|
|
6818
6702
|
@keyframes ui-slide-to-top {
|
|
6819
6703
|
from {
|
|
6820
6704
|
transform: translateY(0) scale(1);
|
|
@@ -6823,6 +6707,7 @@ html.dark {
|
|
|
6823
6707
|
transform: translateY(4px) scale(0.97);
|
|
6824
6708
|
}
|
|
6825
6709
|
}
|
|
6710
|
+
|
|
6826
6711
|
@keyframes ui-slide-from-bottom {
|
|
6827
6712
|
from {
|
|
6828
6713
|
transform: translateY(-4px) scale(0.97);
|
|
@@ -6831,6 +6716,7 @@ html.dark {
|
|
|
6831
6716
|
transform: translateY(0) scale(1);
|
|
6832
6717
|
}
|
|
6833
6718
|
}
|
|
6719
|
+
|
|
6834
6720
|
@keyframes ui-slide-to-bottom {
|
|
6835
6721
|
from {
|
|
6836
6722
|
transform: translateY(0) scale(1);
|
|
@@ -6839,6 +6725,7 @@ html.dark {
|
|
|
6839
6725
|
transform: translateY(-4px) scale(0.97);
|
|
6840
6726
|
}
|
|
6841
6727
|
}
|
|
6728
|
+
|
|
6842
6729
|
@keyframes ui-slide-from-left {
|
|
6843
6730
|
from {
|
|
6844
6731
|
transform: translateX(4px) scale(0.97);
|
|
@@ -6847,6 +6734,7 @@ html.dark {
|
|
|
6847
6734
|
transform: translateX(0) scale(1);
|
|
6848
6735
|
}
|
|
6849
6736
|
}
|
|
6737
|
+
|
|
6850
6738
|
@keyframes ui-slide-to-left {
|
|
6851
6739
|
from {
|
|
6852
6740
|
transform: translateX(0) scale(1);
|
|
@@ -6855,6 +6743,7 @@ html.dark {
|
|
|
6855
6743
|
transform: translateX(4px) scale(0.97);
|
|
6856
6744
|
}
|
|
6857
6745
|
}
|
|
6746
|
+
|
|
6858
6747
|
@keyframes ui-slide-from-right {
|
|
6859
6748
|
from {
|
|
6860
6749
|
transform: translateX(-4px) scale(0.97);
|
|
@@ -6863,6 +6752,7 @@ html.dark {
|
|
|
6863
6752
|
transform: translateX(0) scale(1);
|
|
6864
6753
|
}
|
|
6865
6754
|
}
|
|
6755
|
+
|
|
6866
6756
|
@keyframes ui-slide-to-right {
|
|
6867
6757
|
from {
|
|
6868
6758
|
transform: translateX(0) scale(1);
|
|
@@ -6872,7 +6762,6 @@ html.dark {
|
|
|
6872
6762
|
}
|
|
6873
6763
|
}
|
|
6874
6764
|
|
|
6875
|
-
/* src/styles/typography.css */
|
|
6876
6765
|
.ui-root {
|
|
6877
6766
|
--font-size-1: calc(12px * var(--scaling));
|
|
6878
6767
|
--font-size-2: calc(14px * var(--scaling));
|
|
@@ -6883,11 +6772,13 @@ html.dark {
|
|
|
6883
6772
|
--font-size-7: calc(28px * var(--scaling));
|
|
6884
6773
|
--font-size-8: calc(35px * var(--scaling));
|
|
6885
6774
|
--font-size-9: calc(60px * var(--scaling));
|
|
6775
|
+
|
|
6886
6776
|
--font-weight-light: 300;
|
|
6887
6777
|
--font-weight-regular: 400;
|
|
6888
6778
|
--font-weight-medium: 500;
|
|
6889
6779
|
--font-weight-semibold: 600;
|
|
6890
6780
|
--font-weight-bold: 700;
|
|
6781
|
+
|
|
6891
6782
|
--line-height-1: calc(16px * var(--scaling));
|
|
6892
6783
|
--line-height-2: calc(20px * var(--scaling));
|
|
6893
6784
|
--line-height-3: calc(24px * var(--scaling));
|
|
@@ -6897,6 +6788,7 @@ html.dark {
|
|
|
6897
6788
|
--line-height-7: calc(36px * var(--scaling));
|
|
6898
6789
|
--line-height-8: calc(40px * var(--scaling));
|
|
6899
6790
|
--line-height-9: calc(60px * var(--scaling));
|
|
6791
|
+
|
|
6900
6792
|
--letter-spacing-1: 0.0025em;
|
|
6901
6793
|
--letter-spacing-2: 0em;
|
|
6902
6794
|
--letter-spacing-3: 0em;
|
|
@@ -6907,14 +6799,16 @@ html.dark {
|
|
|
6907
6799
|
--letter-spacing-8: -0.01em;
|
|
6908
6800
|
--letter-spacing-9: -0.025em;
|
|
6909
6801
|
}
|
|
6802
|
+
|
|
6910
6803
|
.ui-root {
|
|
6911
6804
|
overflow-wrap: break-word;
|
|
6912
|
-
text-size-adjust: none;
|
|
6805
|
+
-webkit-text-size-adjust: none;
|
|
6806
|
+
-moz-text-size-adjust: none;
|
|
6807
|
+
text-size-adjust: none;
|
|
6913
6808
|
-webkit-font-smoothing: antialiased;
|
|
6914
6809
|
-moz-osx-font-smoothing: grayscale;
|
|
6915
6810
|
}
|
|
6916
6811
|
|
|
6917
|
-
/* src/styles/index.css */
|
|
6918
6812
|
.ui-root {
|
|
6919
6813
|
--scaling: 1;
|
|
6920
6814
|
}
|