@crowdstrike/tailwind-toucan-base 4.0.0 → 4.2.0
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/index.css +990 -0
- package/index.d.ts +182 -0
- package/package.json +14 -11
- package/src/theme-data.js +182 -0
- package/src/themes.json +182 -0
- package/toucan.css +990 -0
package/toucan.css
CHANGED
@@ -603,6 +603,7 @@ video {
|
|
603
603
|
--code-bg: #232326;
|
604
604
|
--code-outline: #1c1c21;
|
605
605
|
--code-text: #9dc1fd;
|
606
|
+
--neutral: #84869A;
|
606
607
|
--critical: #fa4147;
|
607
608
|
--destructive-hover: #fa9497;
|
608
609
|
--destructive-idle: #1e1d20;
|
@@ -628,6 +629,9 @@ video {
|
|
628
629
|
--informational: #9dc1fd;
|
629
630
|
--lines-dark: #09090c;
|
630
631
|
--lines-light: #14141a;
|
632
|
+
--border-reg: #4b4b58;
|
633
|
+
--border-faint: #383842;
|
634
|
+
--border-bold: #676c79;
|
631
635
|
--low: #cef2ce;
|
632
636
|
--medium: #ffcc00;
|
633
637
|
--mezzanine: #212121;
|
@@ -640,6 +644,7 @@ video {
|
|
640
644
|
--overlay-0\.5: #00000021;
|
641
645
|
--overlay-1: #00000040;
|
642
646
|
--overlay-2: #00000099;
|
647
|
+
--overlay-reverse-0\.5: #666666;
|
643
648
|
--positive: #06e5b7;
|
644
649
|
--primary-hover: #e1ecfe;
|
645
650
|
--primary-idle: #c8dcfe;
|
@@ -654,6 +659,7 @@ video {
|
|
654
659
|
--surface-lg: #343337;
|
655
660
|
--surface-md: #2d2c31;
|
656
661
|
--surface-xl: #38373c;
|
662
|
+
--surface-dash-widget: #000000;
|
657
663
|
--text-and-icons: #fafafa;
|
658
664
|
--titles-and-attributes: #e2e2e4;
|
659
665
|
}
|
@@ -667,6 +673,7 @@ video {
|
|
667
673
|
--code-bg: #ffffff;
|
668
674
|
--code-outline: #e5e5e5;
|
669
675
|
--code-text: #0b54c1;
|
676
|
+
--neutral: #868798;
|
670
677
|
--critical: #e9181f;
|
671
678
|
--destructive-hover: #f47479;
|
672
679
|
--destructive-idle: #ffffff;
|
@@ -692,6 +699,9 @@ video {
|
|
692
699
|
--informational: #5082d2;
|
693
700
|
--lines-dark: #d9d9d9;
|
694
701
|
--lines-light: #eeeeee;
|
702
|
+
--border-reg: #c8c8d0;
|
703
|
+
--border-faint: #dedee3;
|
704
|
+
--border-bold: #9c9caa;
|
695
705
|
--low: #649f64;
|
696
706
|
--medium: #edb000;
|
697
707
|
--mezzanine: #242424;
|
@@ -704,6 +714,7 @@ video {
|
|
704
714
|
--overlay-0\.5: #00000008;
|
705
715
|
--overlay-1: #0000000d;
|
706
716
|
--overlay-2: #00000026;
|
717
|
+
--overlay-reverse-0\.5: #999999;
|
707
718
|
--positive: #1b8e67;
|
708
719
|
--primary-hover: #168093;
|
709
720
|
--primary-idle: #036678;
|
@@ -718,6 +729,7 @@ video {
|
|
718
729
|
--surface-lg: #ffffff;
|
719
730
|
--surface-md: #ffffff;
|
720
731
|
--surface-xl: #ffffff;
|
732
|
+
--surface-dash-widget: #ffffff;
|
721
733
|
--text-and-icons: #202020;
|
722
734
|
--titles-and-attributes: #3d3d3d;
|
723
735
|
}
|
@@ -20201,6 +20213,10 @@ video {
|
|
20201
20213
|
border-color: var(--code-text);
|
20202
20214
|
}
|
20203
20215
|
|
20216
|
+
.divide-neutral > :not([hidden]) ~ :not([hidden]) {
|
20217
|
+
border-color: var(--neutral);
|
20218
|
+
}
|
20219
|
+
|
20204
20220
|
.divide-critical > :not([hidden]) ~ :not([hidden]) {
|
20205
20221
|
border-color: var(--critical);
|
20206
20222
|
}
|
@@ -20301,6 +20317,18 @@ video {
|
|
20301
20317
|
border-color: var(--lines-light);
|
20302
20318
|
}
|
20303
20319
|
|
20320
|
+
.divide-border-reg > :not([hidden]) ~ :not([hidden]) {
|
20321
|
+
border-color: var(--border-reg);
|
20322
|
+
}
|
20323
|
+
|
20324
|
+
.divide-border-faint > :not([hidden]) ~ :not([hidden]) {
|
20325
|
+
border-color: var(--border-faint);
|
20326
|
+
}
|
20327
|
+
|
20328
|
+
.divide-border-bold > :not([hidden]) ~ :not([hidden]) {
|
20329
|
+
border-color: var(--border-bold);
|
20330
|
+
}
|
20331
|
+
|
20304
20332
|
.divide-low > :not([hidden]) ~ :not([hidden]) {
|
20305
20333
|
border-color: var(--low);
|
20306
20334
|
}
|
@@ -20349,6 +20377,10 @@ video {
|
|
20349
20377
|
border-color: var(--overlay-2);
|
20350
20378
|
}
|
20351
20379
|
|
20380
|
+
.divide-overlay-reverse-0\.5 > :not([hidden]) ~ :not([hidden]) {
|
20381
|
+
border-color: var(--overlay-reverse-0\.5);
|
20382
|
+
}
|
20383
|
+
|
20352
20384
|
.divide-positive > :not([hidden]) ~ :not([hidden]) {
|
20353
20385
|
border-color: var(--positive);
|
20354
20386
|
}
|
@@ -20405,6 +20437,10 @@ video {
|
|
20405
20437
|
border-color: var(--surface-xl);
|
20406
20438
|
}
|
20407
20439
|
|
20440
|
+
.divide-surface-dash-widget > :not([hidden]) ~ :not([hidden]) {
|
20441
|
+
border-color: var(--surface-dash-widget);
|
20442
|
+
}
|
20443
|
+
|
20408
20444
|
.divide-text-and-icons > :not([hidden]) ~ :not([hidden]) {
|
20409
20445
|
border-color: var(--text-and-icons);
|
20410
20446
|
}
|
@@ -22572,6 +22608,10 @@ video {
|
|
22572
22608
|
border-color: var(--code-text);
|
22573
22609
|
}
|
22574
22610
|
|
22611
|
+
.border-neutral {
|
22612
|
+
border-color: var(--neutral);
|
22613
|
+
}
|
22614
|
+
|
22575
22615
|
.border-critical {
|
22576
22616
|
border-color: var(--critical);
|
22577
22617
|
}
|
@@ -22672,6 +22712,18 @@ video {
|
|
22672
22712
|
border-color: var(--lines-light);
|
22673
22713
|
}
|
22674
22714
|
|
22715
|
+
.border-border-reg {
|
22716
|
+
border-color: var(--border-reg);
|
22717
|
+
}
|
22718
|
+
|
22719
|
+
.border-border-faint {
|
22720
|
+
border-color: var(--border-faint);
|
22721
|
+
}
|
22722
|
+
|
22723
|
+
.border-border-bold {
|
22724
|
+
border-color: var(--border-bold);
|
22725
|
+
}
|
22726
|
+
|
22675
22727
|
.border-low {
|
22676
22728
|
border-color: var(--low);
|
22677
22729
|
}
|
@@ -22720,6 +22772,10 @@ video {
|
|
22720
22772
|
border-color: var(--overlay-2);
|
22721
22773
|
}
|
22722
22774
|
|
22775
|
+
.border-overlay-reverse-0\.5 {
|
22776
|
+
border-color: var(--overlay-reverse-0\.5);
|
22777
|
+
}
|
22778
|
+
|
22723
22779
|
.border-positive {
|
22724
22780
|
border-color: var(--positive);
|
22725
22781
|
}
|
@@ -22776,6 +22832,10 @@ video {
|
|
22776
22832
|
border-color: var(--surface-xl);
|
22777
22833
|
}
|
22778
22834
|
|
22835
|
+
.border-surface-dash-widget {
|
22836
|
+
border-color: var(--surface-dash-widget);
|
22837
|
+
}
|
22838
|
+
|
22779
22839
|
.border-text-and-icons {
|
22780
22840
|
border-color: var(--text-and-icons);
|
22781
22841
|
}
|
@@ -22828,6 +22888,10 @@ video {
|
|
22828
22888
|
border-color: var(--code-text);
|
22829
22889
|
}
|
22830
22890
|
|
22891
|
+
.hover\:border-neutral:hover {
|
22892
|
+
border-color: var(--neutral);
|
22893
|
+
}
|
22894
|
+
|
22831
22895
|
.hover\:border-critical:hover {
|
22832
22896
|
border-color: var(--critical);
|
22833
22897
|
}
|
@@ -22928,6 +22992,18 @@ video {
|
|
22928
22992
|
border-color: var(--lines-light);
|
22929
22993
|
}
|
22930
22994
|
|
22995
|
+
.hover\:border-border-reg:hover {
|
22996
|
+
border-color: var(--border-reg);
|
22997
|
+
}
|
22998
|
+
|
22999
|
+
.hover\:border-border-faint:hover {
|
23000
|
+
border-color: var(--border-faint);
|
23001
|
+
}
|
23002
|
+
|
23003
|
+
.hover\:border-border-bold:hover {
|
23004
|
+
border-color: var(--border-bold);
|
23005
|
+
}
|
23006
|
+
|
22931
23007
|
.hover\:border-low:hover {
|
22932
23008
|
border-color: var(--low);
|
22933
23009
|
}
|
@@ -22976,6 +23052,10 @@ video {
|
|
22976
23052
|
border-color: var(--overlay-2);
|
22977
23053
|
}
|
22978
23054
|
|
23055
|
+
.hover\:border-overlay-reverse-0\.5:hover {
|
23056
|
+
border-color: var(--overlay-reverse-0\.5);
|
23057
|
+
}
|
23058
|
+
|
22979
23059
|
.hover\:border-positive:hover {
|
22980
23060
|
border-color: var(--positive);
|
22981
23061
|
}
|
@@ -23032,6 +23112,10 @@ video {
|
|
23032
23112
|
border-color: var(--surface-xl);
|
23033
23113
|
}
|
23034
23114
|
|
23115
|
+
.hover\:border-surface-dash-widget:hover {
|
23116
|
+
border-color: var(--surface-dash-widget);
|
23117
|
+
}
|
23118
|
+
|
23035
23119
|
.hover\:border-text-and-icons:hover {
|
23036
23120
|
border-color: var(--text-and-icons);
|
23037
23121
|
}
|
@@ -23084,6 +23168,10 @@ video {
|
|
23084
23168
|
border-color: var(--code-text);
|
23085
23169
|
}
|
23086
23170
|
|
23171
|
+
.active\:border-neutral:active {
|
23172
|
+
border-color: var(--neutral);
|
23173
|
+
}
|
23174
|
+
|
23087
23175
|
.active\:border-critical:active {
|
23088
23176
|
border-color: var(--critical);
|
23089
23177
|
}
|
@@ -23184,6 +23272,18 @@ video {
|
|
23184
23272
|
border-color: var(--lines-light);
|
23185
23273
|
}
|
23186
23274
|
|
23275
|
+
.active\:border-border-reg:active {
|
23276
|
+
border-color: var(--border-reg);
|
23277
|
+
}
|
23278
|
+
|
23279
|
+
.active\:border-border-faint:active {
|
23280
|
+
border-color: var(--border-faint);
|
23281
|
+
}
|
23282
|
+
|
23283
|
+
.active\:border-border-bold:active {
|
23284
|
+
border-color: var(--border-bold);
|
23285
|
+
}
|
23286
|
+
|
23187
23287
|
.active\:border-low:active {
|
23188
23288
|
border-color: var(--low);
|
23189
23289
|
}
|
@@ -23232,6 +23332,10 @@ video {
|
|
23232
23332
|
border-color: var(--overlay-2);
|
23233
23333
|
}
|
23234
23334
|
|
23335
|
+
.active\:border-overlay-reverse-0\.5:active {
|
23336
|
+
border-color: var(--overlay-reverse-0\.5);
|
23337
|
+
}
|
23338
|
+
|
23235
23339
|
.active\:border-positive:active {
|
23236
23340
|
border-color: var(--positive);
|
23237
23341
|
}
|
@@ -23288,6 +23392,10 @@ video {
|
|
23288
23392
|
border-color: var(--surface-xl);
|
23289
23393
|
}
|
23290
23394
|
|
23395
|
+
.active\:border-surface-dash-widget:active {
|
23396
|
+
border-color: var(--surface-dash-widget);
|
23397
|
+
}
|
23398
|
+
|
23291
23399
|
.active\:border-text-and-icons:active {
|
23292
23400
|
border-color: var(--text-and-icons);
|
23293
23401
|
}
|
@@ -23520,6 +23628,10 @@ video {
|
|
23520
23628
|
background-color: var(--code-text);
|
23521
23629
|
}
|
23522
23630
|
|
23631
|
+
.bg-neutral {
|
23632
|
+
background-color: var(--neutral);
|
23633
|
+
}
|
23634
|
+
|
23523
23635
|
.bg-critical {
|
23524
23636
|
background-color: var(--critical);
|
23525
23637
|
}
|
@@ -23620,6 +23732,18 @@ video {
|
|
23620
23732
|
background-color: var(--lines-light);
|
23621
23733
|
}
|
23622
23734
|
|
23735
|
+
.bg-border-reg {
|
23736
|
+
background-color: var(--border-reg);
|
23737
|
+
}
|
23738
|
+
|
23739
|
+
.bg-border-faint {
|
23740
|
+
background-color: var(--border-faint);
|
23741
|
+
}
|
23742
|
+
|
23743
|
+
.bg-border-bold {
|
23744
|
+
background-color: var(--border-bold);
|
23745
|
+
}
|
23746
|
+
|
23623
23747
|
.bg-low {
|
23624
23748
|
background-color: var(--low);
|
23625
23749
|
}
|
@@ -23668,6 +23792,10 @@ video {
|
|
23668
23792
|
background-color: var(--overlay-2);
|
23669
23793
|
}
|
23670
23794
|
|
23795
|
+
.bg-overlay-reverse-0\.5 {
|
23796
|
+
background-color: var(--overlay-reverse-0\.5);
|
23797
|
+
}
|
23798
|
+
|
23671
23799
|
.bg-positive {
|
23672
23800
|
background-color: var(--positive);
|
23673
23801
|
}
|
@@ -23724,6 +23852,10 @@ video {
|
|
23724
23852
|
background-color: var(--surface-xl);
|
23725
23853
|
}
|
23726
23854
|
|
23855
|
+
.bg-surface-dash-widget {
|
23856
|
+
background-color: var(--surface-dash-widget);
|
23857
|
+
}
|
23858
|
+
|
23727
23859
|
.bg-text-and-icons {
|
23728
23860
|
background-color: var(--text-and-icons);
|
23729
23861
|
}
|
@@ -23776,6 +23908,10 @@ video {
|
|
23776
23908
|
background-color: var(--code-text);
|
23777
23909
|
}
|
23778
23910
|
|
23911
|
+
.even\:bg-neutral:nth-child(even) {
|
23912
|
+
background-color: var(--neutral);
|
23913
|
+
}
|
23914
|
+
|
23779
23915
|
.even\:bg-critical:nth-child(even) {
|
23780
23916
|
background-color: var(--critical);
|
23781
23917
|
}
|
@@ -23876,6 +24012,18 @@ video {
|
|
23876
24012
|
background-color: var(--lines-light);
|
23877
24013
|
}
|
23878
24014
|
|
24015
|
+
.even\:bg-border-reg:nth-child(even) {
|
24016
|
+
background-color: var(--border-reg);
|
24017
|
+
}
|
24018
|
+
|
24019
|
+
.even\:bg-border-faint:nth-child(even) {
|
24020
|
+
background-color: var(--border-faint);
|
24021
|
+
}
|
24022
|
+
|
24023
|
+
.even\:bg-border-bold:nth-child(even) {
|
24024
|
+
background-color: var(--border-bold);
|
24025
|
+
}
|
24026
|
+
|
23879
24027
|
.even\:bg-low:nth-child(even) {
|
23880
24028
|
background-color: var(--low);
|
23881
24029
|
}
|
@@ -23924,6 +24072,10 @@ video {
|
|
23924
24072
|
background-color: var(--overlay-2);
|
23925
24073
|
}
|
23926
24074
|
|
24075
|
+
.even\:bg-overlay-reverse-0\.5:nth-child(even) {
|
24076
|
+
background-color: var(--overlay-reverse-0\.5);
|
24077
|
+
}
|
24078
|
+
|
23927
24079
|
.even\:bg-positive:nth-child(even) {
|
23928
24080
|
background-color: var(--positive);
|
23929
24081
|
}
|
@@ -23980,6 +24132,10 @@ video {
|
|
23980
24132
|
background-color: var(--surface-xl);
|
23981
24133
|
}
|
23982
24134
|
|
24135
|
+
.even\:bg-surface-dash-widget:nth-child(even) {
|
24136
|
+
background-color: var(--surface-dash-widget);
|
24137
|
+
}
|
24138
|
+
|
23983
24139
|
.even\:bg-text-and-icons:nth-child(even) {
|
23984
24140
|
background-color: var(--text-and-icons);
|
23985
24141
|
}
|
@@ -24032,6 +24188,10 @@ video {
|
|
24032
24188
|
background-color: var(--code-text);
|
24033
24189
|
}
|
24034
24190
|
|
24191
|
+
.group:hover .group-hover\:bg-neutral {
|
24192
|
+
background-color: var(--neutral);
|
24193
|
+
}
|
24194
|
+
|
24035
24195
|
.group:hover .group-hover\:bg-critical {
|
24036
24196
|
background-color: var(--critical);
|
24037
24197
|
}
|
@@ -24132,6 +24292,18 @@ video {
|
|
24132
24292
|
background-color: var(--lines-light);
|
24133
24293
|
}
|
24134
24294
|
|
24295
|
+
.group:hover .group-hover\:bg-border-reg {
|
24296
|
+
background-color: var(--border-reg);
|
24297
|
+
}
|
24298
|
+
|
24299
|
+
.group:hover .group-hover\:bg-border-faint {
|
24300
|
+
background-color: var(--border-faint);
|
24301
|
+
}
|
24302
|
+
|
24303
|
+
.group:hover .group-hover\:bg-border-bold {
|
24304
|
+
background-color: var(--border-bold);
|
24305
|
+
}
|
24306
|
+
|
24135
24307
|
.group:hover .group-hover\:bg-low {
|
24136
24308
|
background-color: var(--low);
|
24137
24309
|
}
|
@@ -24180,6 +24352,10 @@ video {
|
|
24180
24352
|
background-color: var(--overlay-2);
|
24181
24353
|
}
|
24182
24354
|
|
24355
|
+
.group:hover .group-hover\:bg-overlay-reverse-0\.5 {
|
24356
|
+
background-color: var(--overlay-reverse-0\.5);
|
24357
|
+
}
|
24358
|
+
|
24183
24359
|
.group:hover .group-hover\:bg-positive {
|
24184
24360
|
background-color: var(--positive);
|
24185
24361
|
}
|
@@ -24236,6 +24412,10 @@ video {
|
|
24236
24412
|
background-color: var(--surface-xl);
|
24237
24413
|
}
|
24238
24414
|
|
24415
|
+
.group:hover .group-hover\:bg-surface-dash-widget {
|
24416
|
+
background-color: var(--surface-dash-widget);
|
24417
|
+
}
|
24418
|
+
|
24239
24419
|
.group:hover .group-hover\:bg-text-and-icons {
|
24240
24420
|
background-color: var(--text-and-icons);
|
24241
24421
|
}
|
@@ -24288,6 +24468,10 @@ video {
|
|
24288
24468
|
background-color: var(--code-text);
|
24289
24469
|
}
|
24290
24470
|
|
24471
|
+
.hover\:bg-neutral:hover {
|
24472
|
+
background-color: var(--neutral);
|
24473
|
+
}
|
24474
|
+
|
24291
24475
|
.hover\:bg-critical:hover {
|
24292
24476
|
background-color: var(--critical);
|
24293
24477
|
}
|
@@ -24388,6 +24572,18 @@ video {
|
|
24388
24572
|
background-color: var(--lines-light);
|
24389
24573
|
}
|
24390
24574
|
|
24575
|
+
.hover\:bg-border-reg:hover {
|
24576
|
+
background-color: var(--border-reg);
|
24577
|
+
}
|
24578
|
+
|
24579
|
+
.hover\:bg-border-faint:hover {
|
24580
|
+
background-color: var(--border-faint);
|
24581
|
+
}
|
24582
|
+
|
24583
|
+
.hover\:bg-border-bold:hover {
|
24584
|
+
background-color: var(--border-bold);
|
24585
|
+
}
|
24586
|
+
|
24391
24587
|
.hover\:bg-low:hover {
|
24392
24588
|
background-color: var(--low);
|
24393
24589
|
}
|
@@ -24436,6 +24632,10 @@ video {
|
|
24436
24632
|
background-color: var(--overlay-2);
|
24437
24633
|
}
|
24438
24634
|
|
24635
|
+
.hover\:bg-overlay-reverse-0\.5:hover {
|
24636
|
+
background-color: var(--overlay-reverse-0\.5);
|
24637
|
+
}
|
24638
|
+
|
24439
24639
|
.hover\:bg-positive:hover {
|
24440
24640
|
background-color: var(--positive);
|
24441
24641
|
}
|
@@ -24492,6 +24692,10 @@ video {
|
|
24492
24692
|
background-color: var(--surface-xl);
|
24493
24693
|
}
|
24494
24694
|
|
24695
|
+
.hover\:bg-surface-dash-widget:hover {
|
24696
|
+
background-color: var(--surface-dash-widget);
|
24697
|
+
}
|
24698
|
+
|
24495
24699
|
.hover\:bg-text-and-icons:hover {
|
24496
24700
|
background-color: var(--text-and-icons);
|
24497
24701
|
}
|
@@ -24544,6 +24748,10 @@ video {
|
|
24544
24748
|
background-color: var(--code-text);
|
24545
24749
|
}
|
24546
24750
|
|
24751
|
+
.focus\:bg-neutral:focus {
|
24752
|
+
background-color: var(--neutral);
|
24753
|
+
}
|
24754
|
+
|
24547
24755
|
.focus\:bg-critical:focus {
|
24548
24756
|
background-color: var(--critical);
|
24549
24757
|
}
|
@@ -24644,6 +24852,18 @@ video {
|
|
24644
24852
|
background-color: var(--lines-light);
|
24645
24853
|
}
|
24646
24854
|
|
24855
|
+
.focus\:bg-border-reg:focus {
|
24856
|
+
background-color: var(--border-reg);
|
24857
|
+
}
|
24858
|
+
|
24859
|
+
.focus\:bg-border-faint:focus {
|
24860
|
+
background-color: var(--border-faint);
|
24861
|
+
}
|
24862
|
+
|
24863
|
+
.focus\:bg-border-bold:focus {
|
24864
|
+
background-color: var(--border-bold);
|
24865
|
+
}
|
24866
|
+
|
24647
24867
|
.focus\:bg-low:focus {
|
24648
24868
|
background-color: var(--low);
|
24649
24869
|
}
|
@@ -24692,6 +24912,10 @@ video {
|
|
24692
24912
|
background-color: var(--overlay-2);
|
24693
24913
|
}
|
24694
24914
|
|
24915
|
+
.focus\:bg-overlay-reverse-0\.5:focus {
|
24916
|
+
background-color: var(--overlay-reverse-0\.5);
|
24917
|
+
}
|
24918
|
+
|
24695
24919
|
.focus\:bg-positive:focus {
|
24696
24920
|
background-color: var(--positive);
|
24697
24921
|
}
|
@@ -24748,6 +24972,10 @@ video {
|
|
24748
24972
|
background-color: var(--surface-xl);
|
24749
24973
|
}
|
24750
24974
|
|
24975
|
+
.focus\:bg-surface-dash-widget:focus {
|
24976
|
+
background-color: var(--surface-dash-widget);
|
24977
|
+
}
|
24978
|
+
|
24751
24979
|
.focus\:bg-text-and-icons:focus {
|
24752
24980
|
background-color: var(--text-and-icons);
|
24753
24981
|
}
|
@@ -24800,6 +25028,10 @@ video {
|
|
24800
25028
|
background-color: var(--code-text);
|
24801
25029
|
}
|
24802
25030
|
|
25031
|
+
.focus-within\:bg-neutral:focus-within {
|
25032
|
+
background-color: var(--neutral);
|
25033
|
+
}
|
25034
|
+
|
24803
25035
|
.focus-within\:bg-critical:focus-within {
|
24804
25036
|
background-color: var(--critical);
|
24805
25037
|
}
|
@@ -24900,6 +25132,18 @@ video {
|
|
24900
25132
|
background-color: var(--lines-light);
|
24901
25133
|
}
|
24902
25134
|
|
25135
|
+
.focus-within\:bg-border-reg:focus-within {
|
25136
|
+
background-color: var(--border-reg);
|
25137
|
+
}
|
25138
|
+
|
25139
|
+
.focus-within\:bg-border-faint:focus-within {
|
25140
|
+
background-color: var(--border-faint);
|
25141
|
+
}
|
25142
|
+
|
25143
|
+
.focus-within\:bg-border-bold:focus-within {
|
25144
|
+
background-color: var(--border-bold);
|
25145
|
+
}
|
25146
|
+
|
24903
25147
|
.focus-within\:bg-low:focus-within {
|
24904
25148
|
background-color: var(--low);
|
24905
25149
|
}
|
@@ -24948,6 +25192,10 @@ video {
|
|
24948
25192
|
background-color: var(--overlay-2);
|
24949
25193
|
}
|
24950
25194
|
|
25195
|
+
.focus-within\:bg-overlay-reverse-0\.5:focus-within {
|
25196
|
+
background-color: var(--overlay-reverse-0\.5);
|
25197
|
+
}
|
25198
|
+
|
24951
25199
|
.focus-within\:bg-positive:focus-within {
|
24952
25200
|
background-color: var(--positive);
|
24953
25201
|
}
|
@@ -25004,6 +25252,10 @@ video {
|
|
25004
25252
|
background-color: var(--surface-xl);
|
25005
25253
|
}
|
25006
25254
|
|
25255
|
+
.focus-within\:bg-surface-dash-widget:focus-within {
|
25256
|
+
background-color: var(--surface-dash-widget);
|
25257
|
+
}
|
25258
|
+
|
25007
25259
|
.focus-within\:bg-text-and-icons:focus-within {
|
25008
25260
|
background-color: var(--text-and-icons);
|
25009
25261
|
}
|
@@ -25056,6 +25308,10 @@ video {
|
|
25056
25308
|
background-color: var(--code-text);
|
25057
25309
|
}
|
25058
25310
|
|
25311
|
+
.focus-visible\:bg-neutral:focus-visible {
|
25312
|
+
background-color: var(--neutral);
|
25313
|
+
}
|
25314
|
+
|
25059
25315
|
.focus-visible\:bg-critical:focus-visible {
|
25060
25316
|
background-color: var(--critical);
|
25061
25317
|
}
|
@@ -25156,6 +25412,18 @@ video {
|
|
25156
25412
|
background-color: var(--lines-light);
|
25157
25413
|
}
|
25158
25414
|
|
25415
|
+
.focus-visible\:bg-border-reg:focus-visible {
|
25416
|
+
background-color: var(--border-reg);
|
25417
|
+
}
|
25418
|
+
|
25419
|
+
.focus-visible\:bg-border-faint:focus-visible {
|
25420
|
+
background-color: var(--border-faint);
|
25421
|
+
}
|
25422
|
+
|
25423
|
+
.focus-visible\:bg-border-bold:focus-visible {
|
25424
|
+
background-color: var(--border-bold);
|
25425
|
+
}
|
25426
|
+
|
25159
25427
|
.focus-visible\:bg-low:focus-visible {
|
25160
25428
|
background-color: var(--low);
|
25161
25429
|
}
|
@@ -25204,6 +25472,10 @@ video {
|
|
25204
25472
|
background-color: var(--overlay-2);
|
25205
25473
|
}
|
25206
25474
|
|
25475
|
+
.focus-visible\:bg-overlay-reverse-0\.5:focus-visible {
|
25476
|
+
background-color: var(--overlay-reverse-0\.5);
|
25477
|
+
}
|
25478
|
+
|
25207
25479
|
.focus-visible\:bg-positive:focus-visible {
|
25208
25480
|
background-color: var(--positive);
|
25209
25481
|
}
|
@@ -25260,6 +25532,10 @@ video {
|
|
25260
25532
|
background-color: var(--surface-xl);
|
25261
25533
|
}
|
25262
25534
|
|
25535
|
+
.focus-visible\:bg-surface-dash-widget:focus-visible {
|
25536
|
+
background-color: var(--surface-dash-widget);
|
25537
|
+
}
|
25538
|
+
|
25263
25539
|
.focus-visible\:bg-text-and-icons:focus-visible {
|
25264
25540
|
background-color: var(--text-and-icons);
|
25265
25541
|
}
|
@@ -25312,6 +25588,10 @@ video {
|
|
25312
25588
|
background-color: var(--code-text);
|
25313
25589
|
}
|
25314
25590
|
|
25591
|
+
.active\:bg-neutral:active {
|
25592
|
+
background-color: var(--neutral);
|
25593
|
+
}
|
25594
|
+
|
25315
25595
|
.active\:bg-critical:active {
|
25316
25596
|
background-color: var(--critical);
|
25317
25597
|
}
|
@@ -25412,6 +25692,18 @@ video {
|
|
25412
25692
|
background-color: var(--lines-light);
|
25413
25693
|
}
|
25414
25694
|
|
25695
|
+
.active\:bg-border-reg:active {
|
25696
|
+
background-color: var(--border-reg);
|
25697
|
+
}
|
25698
|
+
|
25699
|
+
.active\:bg-border-faint:active {
|
25700
|
+
background-color: var(--border-faint);
|
25701
|
+
}
|
25702
|
+
|
25703
|
+
.active\:bg-border-bold:active {
|
25704
|
+
background-color: var(--border-bold);
|
25705
|
+
}
|
25706
|
+
|
25415
25707
|
.active\:bg-low:active {
|
25416
25708
|
background-color: var(--low);
|
25417
25709
|
}
|
@@ -25460,6 +25752,10 @@ video {
|
|
25460
25752
|
background-color: var(--overlay-2);
|
25461
25753
|
}
|
25462
25754
|
|
25755
|
+
.active\:bg-overlay-reverse-0\.5:active {
|
25756
|
+
background-color: var(--overlay-reverse-0\.5);
|
25757
|
+
}
|
25758
|
+
|
25463
25759
|
.active\:bg-positive:active {
|
25464
25760
|
background-color: var(--positive);
|
25465
25761
|
}
|
@@ -25516,6 +25812,10 @@ video {
|
|
25516
25812
|
background-color: var(--surface-xl);
|
25517
25813
|
}
|
25518
25814
|
|
25815
|
+
.active\:bg-surface-dash-widget:active {
|
25816
|
+
background-color: var(--surface-dash-widget);
|
25817
|
+
}
|
25818
|
+
|
25519
25819
|
.active\:bg-text-and-icons:active {
|
25520
25820
|
background-color: var(--text-and-icons);
|
25521
25821
|
}
|
@@ -25568,6 +25868,10 @@ video {
|
|
25568
25868
|
background-color: var(--code-text);
|
25569
25869
|
}
|
25570
25870
|
|
25871
|
+
.disabled\:bg-neutral:disabled {
|
25872
|
+
background-color: var(--neutral);
|
25873
|
+
}
|
25874
|
+
|
25571
25875
|
.disabled\:bg-critical:disabled {
|
25572
25876
|
background-color: var(--critical);
|
25573
25877
|
}
|
@@ -25668,6 +25972,18 @@ video {
|
|
25668
25972
|
background-color: var(--lines-light);
|
25669
25973
|
}
|
25670
25974
|
|
25975
|
+
.disabled\:bg-border-reg:disabled {
|
25976
|
+
background-color: var(--border-reg);
|
25977
|
+
}
|
25978
|
+
|
25979
|
+
.disabled\:bg-border-faint:disabled {
|
25980
|
+
background-color: var(--border-faint);
|
25981
|
+
}
|
25982
|
+
|
25983
|
+
.disabled\:bg-border-bold:disabled {
|
25984
|
+
background-color: var(--border-bold);
|
25985
|
+
}
|
25986
|
+
|
25671
25987
|
.disabled\:bg-low:disabled {
|
25672
25988
|
background-color: var(--low);
|
25673
25989
|
}
|
@@ -25716,6 +26032,10 @@ video {
|
|
25716
26032
|
background-color: var(--overlay-2);
|
25717
26033
|
}
|
25718
26034
|
|
26035
|
+
.disabled\:bg-overlay-reverse-0\.5:disabled {
|
26036
|
+
background-color: var(--overlay-reverse-0\.5);
|
26037
|
+
}
|
26038
|
+
|
25719
26039
|
.disabled\:bg-positive:disabled {
|
25720
26040
|
background-color: var(--positive);
|
25721
26041
|
}
|
@@ -25772,6 +26092,10 @@ video {
|
|
25772
26092
|
background-color: var(--surface-xl);
|
25773
26093
|
}
|
25774
26094
|
|
26095
|
+
.disabled\:bg-surface-dash-widget:disabled {
|
26096
|
+
background-color: var(--surface-dash-widget);
|
26097
|
+
}
|
26098
|
+
|
25775
26099
|
.disabled\:bg-text-and-icons:disabled {
|
25776
26100
|
background-color: var(--text-and-icons);
|
25777
26101
|
}
|
@@ -26051,6 +26375,11 @@ video {
|
|
26051
26375
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26052
26376
|
}
|
26053
26377
|
|
26378
|
+
.from-neutral {
|
26379
|
+
--tw-gradient-from: var(--neutral);
|
26380
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26381
|
+
}
|
26382
|
+
|
26054
26383
|
.from-critical {
|
26055
26384
|
--tw-gradient-from: var(--critical);
|
26056
26385
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
@@ -26176,6 +26505,21 @@ video {
|
|
26176
26505
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26177
26506
|
}
|
26178
26507
|
|
26508
|
+
.from-border-reg {
|
26509
|
+
--tw-gradient-from: var(--border-reg);
|
26510
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26511
|
+
}
|
26512
|
+
|
26513
|
+
.from-border-faint {
|
26514
|
+
--tw-gradient-from: var(--border-faint);
|
26515
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26516
|
+
}
|
26517
|
+
|
26518
|
+
.from-border-bold {
|
26519
|
+
--tw-gradient-from: var(--border-bold);
|
26520
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26521
|
+
}
|
26522
|
+
|
26179
26523
|
.from-low {
|
26180
26524
|
--tw-gradient-from: var(--low);
|
26181
26525
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
@@ -26236,6 +26580,11 @@ video {
|
|
26236
26580
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26237
26581
|
}
|
26238
26582
|
|
26583
|
+
.from-overlay-reverse-0\.5 {
|
26584
|
+
--tw-gradient-from: var(--overlay-reverse-0\.5);
|
26585
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26586
|
+
}
|
26587
|
+
|
26239
26588
|
.from-positive {
|
26240
26589
|
--tw-gradient-from: var(--positive);
|
26241
26590
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
@@ -26306,6 +26655,11 @@ video {
|
|
26306
26655
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26307
26656
|
}
|
26308
26657
|
|
26658
|
+
.from-surface-dash-widget {
|
26659
|
+
--tw-gradient-from: var(--surface-dash-widget);
|
26660
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26661
|
+
}
|
26662
|
+
|
26309
26663
|
.from-text-and-icons {
|
26310
26664
|
--tw-gradient-from: var(--text-and-icons);
|
26311
26665
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
@@ -26371,6 +26725,11 @@ video {
|
|
26371
26725
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26372
26726
|
}
|
26373
26727
|
|
26728
|
+
.hover\:from-neutral:hover {
|
26729
|
+
--tw-gradient-from: var(--neutral);
|
26730
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26731
|
+
}
|
26732
|
+
|
26374
26733
|
.hover\:from-critical:hover {
|
26375
26734
|
--tw-gradient-from: var(--critical);
|
26376
26735
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
@@ -26496,6 +26855,21 @@ video {
|
|
26496
26855
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26497
26856
|
}
|
26498
26857
|
|
26858
|
+
.hover\:from-border-reg:hover {
|
26859
|
+
--tw-gradient-from: var(--border-reg);
|
26860
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26861
|
+
}
|
26862
|
+
|
26863
|
+
.hover\:from-border-faint:hover {
|
26864
|
+
--tw-gradient-from: var(--border-faint);
|
26865
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26866
|
+
}
|
26867
|
+
|
26868
|
+
.hover\:from-border-bold:hover {
|
26869
|
+
--tw-gradient-from: var(--border-bold);
|
26870
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26871
|
+
}
|
26872
|
+
|
26499
26873
|
.hover\:from-low:hover {
|
26500
26874
|
--tw-gradient-from: var(--low);
|
26501
26875
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
@@ -26556,6 +26930,11 @@ video {
|
|
26556
26930
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26557
26931
|
}
|
26558
26932
|
|
26933
|
+
.hover\:from-overlay-reverse-0\.5:hover {
|
26934
|
+
--tw-gradient-from: var(--overlay-reverse-0\.5);
|
26935
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26936
|
+
}
|
26937
|
+
|
26559
26938
|
.hover\:from-positive:hover {
|
26560
26939
|
--tw-gradient-from: var(--positive);
|
26561
26940
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
@@ -26626,6 +27005,11 @@ video {
|
|
26626
27005
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26627
27006
|
}
|
26628
27007
|
|
27008
|
+
.hover\:from-surface-dash-widget:hover {
|
27009
|
+
--tw-gradient-from: var(--surface-dash-widget);
|
27010
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27011
|
+
}
|
27012
|
+
|
26629
27013
|
.hover\:from-text-and-icons:hover {
|
26630
27014
|
--tw-gradient-from: var(--text-and-icons);
|
26631
27015
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
@@ -26691,6 +27075,11 @@ video {
|
|
26691
27075
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26692
27076
|
}
|
26693
27077
|
|
27078
|
+
.focus\:from-neutral:focus {
|
27079
|
+
--tw-gradient-from: var(--neutral);
|
27080
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27081
|
+
}
|
27082
|
+
|
26694
27083
|
.focus\:from-critical:focus {
|
26695
27084
|
--tw-gradient-from: var(--critical);
|
26696
27085
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
@@ -26816,6 +27205,21 @@ video {
|
|
26816
27205
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26817
27206
|
}
|
26818
27207
|
|
27208
|
+
.focus\:from-border-reg:focus {
|
27209
|
+
--tw-gradient-from: var(--border-reg);
|
27210
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27211
|
+
}
|
27212
|
+
|
27213
|
+
.focus\:from-border-faint:focus {
|
27214
|
+
--tw-gradient-from: var(--border-faint);
|
27215
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27216
|
+
}
|
27217
|
+
|
27218
|
+
.focus\:from-border-bold:focus {
|
27219
|
+
--tw-gradient-from: var(--border-bold);
|
27220
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27221
|
+
}
|
27222
|
+
|
26819
27223
|
.focus\:from-low:focus {
|
26820
27224
|
--tw-gradient-from: var(--low);
|
26821
27225
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
@@ -26876,6 +27280,11 @@ video {
|
|
26876
27280
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26877
27281
|
}
|
26878
27282
|
|
27283
|
+
.focus\:from-overlay-reverse-0\.5:focus {
|
27284
|
+
--tw-gradient-from: var(--overlay-reverse-0\.5);
|
27285
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27286
|
+
}
|
27287
|
+
|
26879
27288
|
.focus\:from-positive:focus {
|
26880
27289
|
--tw-gradient-from: var(--positive);
|
26881
27290
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
@@ -26946,6 +27355,11 @@ video {
|
|
26946
27355
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
26947
27356
|
}
|
26948
27357
|
|
27358
|
+
.focus\:from-surface-dash-widget:focus {
|
27359
|
+
--tw-gradient-from: var(--surface-dash-widget);
|
27360
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27361
|
+
}
|
27362
|
+
|
26949
27363
|
.focus\:from-text-and-icons:focus {
|
26950
27364
|
--tw-gradient-from: var(--text-and-icons);
|
26951
27365
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
@@ -27000,6 +27414,10 @@ video {
|
|
27000
27414
|
--tw-gradient-stops: var(--tw-gradient-from), var(--code-text), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27001
27415
|
}
|
27002
27416
|
|
27417
|
+
.via-neutral {
|
27418
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--neutral), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27419
|
+
}
|
27420
|
+
|
27003
27421
|
.via-critical {
|
27004
27422
|
--tw-gradient-stops: var(--tw-gradient-from), var(--critical), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27005
27423
|
}
|
@@ -27100,6 +27518,18 @@ video {
|
|
27100
27518
|
--tw-gradient-stops: var(--tw-gradient-from), var(--lines-light), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27101
27519
|
}
|
27102
27520
|
|
27521
|
+
.via-border-reg {
|
27522
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--border-reg), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27523
|
+
}
|
27524
|
+
|
27525
|
+
.via-border-faint {
|
27526
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--border-faint), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27527
|
+
}
|
27528
|
+
|
27529
|
+
.via-border-bold {
|
27530
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--border-bold), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27531
|
+
}
|
27532
|
+
|
27103
27533
|
.via-low {
|
27104
27534
|
--tw-gradient-stops: var(--tw-gradient-from), var(--low), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27105
27535
|
}
|
@@ -27148,6 +27578,10 @@ video {
|
|
27148
27578
|
--tw-gradient-stops: var(--tw-gradient-from), var(--overlay-2), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27149
27579
|
}
|
27150
27580
|
|
27581
|
+
.via-overlay-reverse-0\.5 {
|
27582
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--overlay-reverse-0\.5), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27583
|
+
}
|
27584
|
+
|
27151
27585
|
.via-positive {
|
27152
27586
|
--tw-gradient-stops: var(--tw-gradient-from), var(--positive), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27153
27587
|
}
|
@@ -27204,6 +27638,10 @@ video {
|
|
27204
27638
|
--tw-gradient-stops: var(--tw-gradient-from), var(--surface-xl), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27205
27639
|
}
|
27206
27640
|
|
27641
|
+
.via-surface-dash-widget {
|
27642
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--surface-dash-widget), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27643
|
+
}
|
27644
|
+
|
27207
27645
|
.via-text-and-icons {
|
27208
27646
|
--tw-gradient-stops: var(--tw-gradient-from), var(--text-and-icons), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27209
27647
|
}
|
@@ -27256,6 +27694,10 @@ video {
|
|
27256
27694
|
--tw-gradient-stops: var(--tw-gradient-from), var(--code-text), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27257
27695
|
}
|
27258
27696
|
|
27697
|
+
.hover\:via-neutral:hover {
|
27698
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--neutral), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27699
|
+
}
|
27700
|
+
|
27259
27701
|
.hover\:via-critical:hover {
|
27260
27702
|
--tw-gradient-stops: var(--tw-gradient-from), var(--critical), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27261
27703
|
}
|
@@ -27356,6 +27798,18 @@ video {
|
|
27356
27798
|
--tw-gradient-stops: var(--tw-gradient-from), var(--lines-light), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27357
27799
|
}
|
27358
27800
|
|
27801
|
+
.hover\:via-border-reg:hover {
|
27802
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--border-reg), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27803
|
+
}
|
27804
|
+
|
27805
|
+
.hover\:via-border-faint:hover {
|
27806
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--border-faint), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27807
|
+
}
|
27808
|
+
|
27809
|
+
.hover\:via-border-bold:hover {
|
27810
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--border-bold), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27811
|
+
}
|
27812
|
+
|
27359
27813
|
.hover\:via-low:hover {
|
27360
27814
|
--tw-gradient-stops: var(--tw-gradient-from), var(--low), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27361
27815
|
}
|
@@ -27404,6 +27858,10 @@ video {
|
|
27404
27858
|
--tw-gradient-stops: var(--tw-gradient-from), var(--overlay-2), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27405
27859
|
}
|
27406
27860
|
|
27861
|
+
.hover\:via-overlay-reverse-0\.5:hover {
|
27862
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--overlay-reverse-0\.5), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27863
|
+
}
|
27864
|
+
|
27407
27865
|
.hover\:via-positive:hover {
|
27408
27866
|
--tw-gradient-stops: var(--tw-gradient-from), var(--positive), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27409
27867
|
}
|
@@ -27460,6 +27918,10 @@ video {
|
|
27460
27918
|
--tw-gradient-stops: var(--tw-gradient-from), var(--surface-xl), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27461
27919
|
}
|
27462
27920
|
|
27921
|
+
.hover\:via-surface-dash-widget:hover {
|
27922
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--surface-dash-widget), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27923
|
+
}
|
27924
|
+
|
27463
27925
|
.hover\:via-text-and-icons:hover {
|
27464
27926
|
--tw-gradient-stops: var(--tw-gradient-from), var(--text-and-icons), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27465
27927
|
}
|
@@ -27512,6 +27974,10 @@ video {
|
|
27512
27974
|
--tw-gradient-stops: var(--tw-gradient-from), var(--code-text), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27513
27975
|
}
|
27514
27976
|
|
27977
|
+
.focus\:via-neutral:focus {
|
27978
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--neutral), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27979
|
+
}
|
27980
|
+
|
27515
27981
|
.focus\:via-critical:focus {
|
27516
27982
|
--tw-gradient-stops: var(--tw-gradient-from), var(--critical), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27517
27983
|
}
|
@@ -27612,6 +28078,18 @@ video {
|
|
27612
28078
|
--tw-gradient-stops: var(--tw-gradient-from), var(--lines-light), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27613
28079
|
}
|
27614
28080
|
|
28081
|
+
.focus\:via-border-reg:focus {
|
28082
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--border-reg), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
28083
|
+
}
|
28084
|
+
|
28085
|
+
.focus\:via-border-faint:focus {
|
28086
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--border-faint), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
28087
|
+
}
|
28088
|
+
|
28089
|
+
.focus\:via-border-bold:focus {
|
28090
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--border-bold), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
28091
|
+
}
|
28092
|
+
|
27615
28093
|
.focus\:via-low:focus {
|
27616
28094
|
--tw-gradient-stops: var(--tw-gradient-from), var(--low), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27617
28095
|
}
|
@@ -27660,6 +28138,10 @@ video {
|
|
27660
28138
|
--tw-gradient-stops: var(--tw-gradient-from), var(--overlay-2), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27661
28139
|
}
|
27662
28140
|
|
28141
|
+
.focus\:via-overlay-reverse-0\.5:focus {
|
28142
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--overlay-reverse-0\.5), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
28143
|
+
}
|
28144
|
+
|
27663
28145
|
.focus\:via-positive:focus {
|
27664
28146
|
--tw-gradient-stops: var(--tw-gradient-from), var(--positive), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27665
28147
|
}
|
@@ -27716,6 +28198,10 @@ video {
|
|
27716
28198
|
--tw-gradient-stops: var(--tw-gradient-from), var(--surface-xl), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27717
28199
|
}
|
27718
28200
|
|
28201
|
+
.focus\:via-surface-dash-widget:focus {
|
28202
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--surface-dash-widget), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
28203
|
+
}
|
28204
|
+
|
27719
28205
|
.focus\:via-text-and-icons:focus {
|
27720
28206
|
--tw-gradient-stops: var(--tw-gradient-from), var(--text-and-icons), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
27721
28207
|
}
|
@@ -27768,6 +28254,10 @@ video {
|
|
27768
28254
|
--tw-gradient-to: var(--code-text);
|
27769
28255
|
}
|
27770
28256
|
|
28257
|
+
.to-neutral {
|
28258
|
+
--tw-gradient-to: var(--neutral);
|
28259
|
+
}
|
28260
|
+
|
27771
28261
|
.to-critical {
|
27772
28262
|
--tw-gradient-to: var(--critical);
|
27773
28263
|
}
|
@@ -27868,6 +28358,18 @@ video {
|
|
27868
28358
|
--tw-gradient-to: var(--lines-light);
|
27869
28359
|
}
|
27870
28360
|
|
28361
|
+
.to-border-reg {
|
28362
|
+
--tw-gradient-to: var(--border-reg);
|
28363
|
+
}
|
28364
|
+
|
28365
|
+
.to-border-faint {
|
28366
|
+
--tw-gradient-to: var(--border-faint);
|
28367
|
+
}
|
28368
|
+
|
28369
|
+
.to-border-bold {
|
28370
|
+
--tw-gradient-to: var(--border-bold);
|
28371
|
+
}
|
28372
|
+
|
27871
28373
|
.to-low {
|
27872
28374
|
--tw-gradient-to: var(--low);
|
27873
28375
|
}
|
@@ -27916,6 +28418,10 @@ video {
|
|
27916
28418
|
--tw-gradient-to: var(--overlay-2);
|
27917
28419
|
}
|
27918
28420
|
|
28421
|
+
.to-overlay-reverse-0\.5 {
|
28422
|
+
--tw-gradient-to: var(--overlay-reverse-0\.5);
|
28423
|
+
}
|
28424
|
+
|
27919
28425
|
.to-positive {
|
27920
28426
|
--tw-gradient-to: var(--positive);
|
27921
28427
|
}
|
@@ -27972,6 +28478,10 @@ video {
|
|
27972
28478
|
--tw-gradient-to: var(--surface-xl);
|
27973
28479
|
}
|
27974
28480
|
|
28481
|
+
.to-surface-dash-widget {
|
28482
|
+
--tw-gradient-to: var(--surface-dash-widget);
|
28483
|
+
}
|
28484
|
+
|
27975
28485
|
.to-text-and-icons {
|
27976
28486
|
--tw-gradient-to: var(--text-and-icons);
|
27977
28487
|
}
|
@@ -28024,6 +28534,10 @@ video {
|
|
28024
28534
|
--tw-gradient-to: var(--code-text);
|
28025
28535
|
}
|
28026
28536
|
|
28537
|
+
.hover\:to-neutral:hover {
|
28538
|
+
--tw-gradient-to: var(--neutral);
|
28539
|
+
}
|
28540
|
+
|
28027
28541
|
.hover\:to-critical:hover {
|
28028
28542
|
--tw-gradient-to: var(--critical);
|
28029
28543
|
}
|
@@ -28124,6 +28638,18 @@ video {
|
|
28124
28638
|
--tw-gradient-to: var(--lines-light);
|
28125
28639
|
}
|
28126
28640
|
|
28641
|
+
.hover\:to-border-reg:hover {
|
28642
|
+
--tw-gradient-to: var(--border-reg);
|
28643
|
+
}
|
28644
|
+
|
28645
|
+
.hover\:to-border-faint:hover {
|
28646
|
+
--tw-gradient-to: var(--border-faint);
|
28647
|
+
}
|
28648
|
+
|
28649
|
+
.hover\:to-border-bold:hover {
|
28650
|
+
--tw-gradient-to: var(--border-bold);
|
28651
|
+
}
|
28652
|
+
|
28127
28653
|
.hover\:to-low:hover {
|
28128
28654
|
--tw-gradient-to: var(--low);
|
28129
28655
|
}
|
@@ -28172,6 +28698,10 @@ video {
|
|
28172
28698
|
--tw-gradient-to: var(--overlay-2);
|
28173
28699
|
}
|
28174
28700
|
|
28701
|
+
.hover\:to-overlay-reverse-0\.5:hover {
|
28702
|
+
--tw-gradient-to: var(--overlay-reverse-0\.5);
|
28703
|
+
}
|
28704
|
+
|
28175
28705
|
.hover\:to-positive:hover {
|
28176
28706
|
--tw-gradient-to: var(--positive);
|
28177
28707
|
}
|
@@ -28228,6 +28758,10 @@ video {
|
|
28228
28758
|
--tw-gradient-to: var(--surface-xl);
|
28229
28759
|
}
|
28230
28760
|
|
28761
|
+
.hover\:to-surface-dash-widget:hover {
|
28762
|
+
--tw-gradient-to: var(--surface-dash-widget);
|
28763
|
+
}
|
28764
|
+
|
28231
28765
|
.hover\:to-text-and-icons:hover {
|
28232
28766
|
--tw-gradient-to: var(--text-and-icons);
|
28233
28767
|
}
|
@@ -28280,6 +28814,10 @@ video {
|
|
28280
28814
|
--tw-gradient-to: var(--code-text);
|
28281
28815
|
}
|
28282
28816
|
|
28817
|
+
.focus\:to-neutral:focus {
|
28818
|
+
--tw-gradient-to: var(--neutral);
|
28819
|
+
}
|
28820
|
+
|
28283
28821
|
.focus\:to-critical:focus {
|
28284
28822
|
--tw-gradient-to: var(--critical);
|
28285
28823
|
}
|
@@ -28380,6 +28918,18 @@ video {
|
|
28380
28918
|
--tw-gradient-to: var(--lines-light);
|
28381
28919
|
}
|
28382
28920
|
|
28921
|
+
.focus\:to-border-reg:focus {
|
28922
|
+
--tw-gradient-to: var(--border-reg);
|
28923
|
+
}
|
28924
|
+
|
28925
|
+
.focus\:to-border-faint:focus {
|
28926
|
+
--tw-gradient-to: var(--border-faint);
|
28927
|
+
}
|
28928
|
+
|
28929
|
+
.focus\:to-border-bold:focus {
|
28930
|
+
--tw-gradient-to: var(--border-bold);
|
28931
|
+
}
|
28932
|
+
|
28383
28933
|
.focus\:to-low:focus {
|
28384
28934
|
--tw-gradient-to: var(--low);
|
28385
28935
|
}
|
@@ -28428,6 +28978,10 @@ video {
|
|
28428
28978
|
--tw-gradient-to: var(--overlay-2);
|
28429
28979
|
}
|
28430
28980
|
|
28981
|
+
.focus\:to-overlay-reverse-0\.5:focus {
|
28982
|
+
--tw-gradient-to: var(--overlay-reverse-0\.5);
|
28983
|
+
}
|
28984
|
+
|
28431
28985
|
.focus\:to-positive:focus {
|
28432
28986
|
--tw-gradient-to: var(--positive);
|
28433
28987
|
}
|
@@ -28484,6 +29038,10 @@ video {
|
|
28484
29038
|
--tw-gradient-to: var(--surface-xl);
|
28485
29039
|
}
|
28486
29040
|
|
29041
|
+
.focus\:to-surface-dash-widget:focus {
|
29042
|
+
--tw-gradient-to: var(--surface-dash-widget);
|
29043
|
+
}
|
29044
|
+
|
28487
29045
|
.focus\:to-text-and-icons:focus {
|
28488
29046
|
--tw-gradient-to: var(--text-and-icons);
|
28489
29047
|
}
|
@@ -30247,6 +30805,10 @@ video {
|
|
30247
30805
|
color: var(--code-text);
|
30248
30806
|
}
|
30249
30807
|
|
30808
|
+
.text-neutral {
|
30809
|
+
color: var(--neutral);
|
30810
|
+
}
|
30811
|
+
|
30250
30812
|
.text-critical {
|
30251
30813
|
color: var(--critical);
|
30252
30814
|
}
|
@@ -30347,6 +30909,18 @@ video {
|
|
30347
30909
|
color: var(--lines-light);
|
30348
30910
|
}
|
30349
30911
|
|
30912
|
+
.text-border-reg {
|
30913
|
+
color: var(--border-reg);
|
30914
|
+
}
|
30915
|
+
|
30916
|
+
.text-border-faint {
|
30917
|
+
color: var(--border-faint);
|
30918
|
+
}
|
30919
|
+
|
30920
|
+
.text-border-bold {
|
30921
|
+
color: var(--border-bold);
|
30922
|
+
}
|
30923
|
+
|
30350
30924
|
.text-low {
|
30351
30925
|
color: var(--low);
|
30352
30926
|
}
|
@@ -30395,6 +30969,10 @@ video {
|
|
30395
30969
|
color: var(--overlay-2);
|
30396
30970
|
}
|
30397
30971
|
|
30972
|
+
.text-overlay-reverse-0\.5 {
|
30973
|
+
color: var(--overlay-reverse-0\.5);
|
30974
|
+
}
|
30975
|
+
|
30398
30976
|
.text-positive {
|
30399
30977
|
color: var(--positive);
|
30400
30978
|
}
|
@@ -30451,6 +31029,10 @@ video {
|
|
30451
31029
|
color: var(--surface-xl);
|
30452
31030
|
}
|
30453
31031
|
|
31032
|
+
.text-surface-dash-widget {
|
31033
|
+
color: var(--surface-dash-widget);
|
31034
|
+
}
|
31035
|
+
|
30454
31036
|
.text-text-and-icons {
|
30455
31037
|
color: var(--text-and-icons);
|
30456
31038
|
}
|
@@ -30503,6 +31085,10 @@ video {
|
|
30503
31085
|
color: var(--code-text);
|
30504
31086
|
}
|
30505
31087
|
|
31088
|
+
.hover\:text-neutral:hover {
|
31089
|
+
color: var(--neutral);
|
31090
|
+
}
|
31091
|
+
|
30506
31092
|
.hover\:text-critical:hover {
|
30507
31093
|
color: var(--critical);
|
30508
31094
|
}
|
@@ -30603,6 +31189,18 @@ video {
|
|
30603
31189
|
color: var(--lines-light);
|
30604
31190
|
}
|
30605
31191
|
|
31192
|
+
.hover\:text-border-reg:hover {
|
31193
|
+
color: var(--border-reg);
|
31194
|
+
}
|
31195
|
+
|
31196
|
+
.hover\:text-border-faint:hover {
|
31197
|
+
color: var(--border-faint);
|
31198
|
+
}
|
31199
|
+
|
31200
|
+
.hover\:text-border-bold:hover {
|
31201
|
+
color: var(--border-bold);
|
31202
|
+
}
|
31203
|
+
|
30606
31204
|
.hover\:text-low:hover {
|
30607
31205
|
color: var(--low);
|
30608
31206
|
}
|
@@ -30651,6 +31249,10 @@ video {
|
|
30651
31249
|
color: var(--overlay-2);
|
30652
31250
|
}
|
30653
31251
|
|
31252
|
+
.hover\:text-overlay-reverse-0\.5:hover {
|
31253
|
+
color: var(--overlay-reverse-0\.5);
|
31254
|
+
}
|
31255
|
+
|
30654
31256
|
.hover\:text-positive:hover {
|
30655
31257
|
color: var(--positive);
|
30656
31258
|
}
|
@@ -30707,6 +31309,10 @@ video {
|
|
30707
31309
|
color: var(--surface-xl);
|
30708
31310
|
}
|
30709
31311
|
|
31312
|
+
.hover\:text-surface-dash-widget:hover {
|
31313
|
+
color: var(--surface-dash-widget);
|
31314
|
+
}
|
31315
|
+
|
30710
31316
|
.hover\:text-text-and-icons:hover {
|
30711
31317
|
color: var(--text-and-icons);
|
30712
31318
|
}
|
@@ -30759,6 +31365,10 @@ video {
|
|
30759
31365
|
color: var(--code-text);
|
30760
31366
|
}
|
30761
31367
|
|
31368
|
+
.focus\:text-neutral:focus {
|
31369
|
+
color: var(--neutral);
|
31370
|
+
}
|
31371
|
+
|
30762
31372
|
.focus\:text-critical:focus {
|
30763
31373
|
color: var(--critical);
|
30764
31374
|
}
|
@@ -30859,6 +31469,18 @@ video {
|
|
30859
31469
|
color: var(--lines-light);
|
30860
31470
|
}
|
30861
31471
|
|
31472
|
+
.focus\:text-border-reg:focus {
|
31473
|
+
color: var(--border-reg);
|
31474
|
+
}
|
31475
|
+
|
31476
|
+
.focus\:text-border-faint:focus {
|
31477
|
+
color: var(--border-faint);
|
31478
|
+
}
|
31479
|
+
|
31480
|
+
.focus\:text-border-bold:focus {
|
31481
|
+
color: var(--border-bold);
|
31482
|
+
}
|
31483
|
+
|
30862
31484
|
.focus\:text-low:focus {
|
30863
31485
|
color: var(--low);
|
30864
31486
|
}
|
@@ -30907,6 +31529,10 @@ video {
|
|
30907
31529
|
color: var(--overlay-2);
|
30908
31530
|
}
|
30909
31531
|
|
31532
|
+
.focus\:text-overlay-reverse-0\.5:focus {
|
31533
|
+
color: var(--overlay-reverse-0\.5);
|
31534
|
+
}
|
31535
|
+
|
30910
31536
|
.focus\:text-positive:focus {
|
30911
31537
|
color: var(--positive);
|
30912
31538
|
}
|
@@ -30963,6 +31589,10 @@ video {
|
|
30963
31589
|
color: var(--surface-xl);
|
30964
31590
|
}
|
30965
31591
|
|
31592
|
+
.focus\:text-surface-dash-widget:focus {
|
31593
|
+
color: var(--surface-dash-widget);
|
31594
|
+
}
|
31595
|
+
|
30966
31596
|
.focus\:text-text-and-icons:focus {
|
30967
31597
|
color: var(--text-and-icons);
|
30968
31598
|
}
|
@@ -31015,6 +31645,10 @@ video {
|
|
31015
31645
|
color: var(--code-text);
|
31016
31646
|
}
|
31017
31647
|
|
31648
|
+
.focus-visible\:text-neutral:focus-visible {
|
31649
|
+
color: var(--neutral);
|
31650
|
+
}
|
31651
|
+
|
31018
31652
|
.focus-visible\:text-critical:focus-visible {
|
31019
31653
|
color: var(--critical);
|
31020
31654
|
}
|
@@ -31115,6 +31749,18 @@ video {
|
|
31115
31749
|
color: var(--lines-light);
|
31116
31750
|
}
|
31117
31751
|
|
31752
|
+
.focus-visible\:text-border-reg:focus-visible {
|
31753
|
+
color: var(--border-reg);
|
31754
|
+
}
|
31755
|
+
|
31756
|
+
.focus-visible\:text-border-faint:focus-visible {
|
31757
|
+
color: var(--border-faint);
|
31758
|
+
}
|
31759
|
+
|
31760
|
+
.focus-visible\:text-border-bold:focus-visible {
|
31761
|
+
color: var(--border-bold);
|
31762
|
+
}
|
31763
|
+
|
31118
31764
|
.focus-visible\:text-low:focus-visible {
|
31119
31765
|
color: var(--low);
|
31120
31766
|
}
|
@@ -31163,6 +31809,10 @@ video {
|
|
31163
31809
|
color: var(--overlay-2);
|
31164
31810
|
}
|
31165
31811
|
|
31812
|
+
.focus-visible\:text-overlay-reverse-0\.5:focus-visible {
|
31813
|
+
color: var(--overlay-reverse-0\.5);
|
31814
|
+
}
|
31815
|
+
|
31166
31816
|
.focus-visible\:text-positive:focus-visible {
|
31167
31817
|
color: var(--positive);
|
31168
31818
|
}
|
@@ -31219,6 +31869,10 @@ video {
|
|
31219
31869
|
color: var(--surface-xl);
|
31220
31870
|
}
|
31221
31871
|
|
31872
|
+
.focus-visible\:text-surface-dash-widget:focus-visible {
|
31873
|
+
color: var(--surface-dash-widget);
|
31874
|
+
}
|
31875
|
+
|
31222
31876
|
.focus-visible\:text-text-and-icons:focus-visible {
|
31223
31877
|
color: var(--text-and-icons);
|
31224
31878
|
}
|
@@ -31271,6 +31925,10 @@ video {
|
|
31271
31925
|
color: var(--code-text);
|
31272
31926
|
}
|
31273
31927
|
|
31928
|
+
.group:hover .group-hover\:text-neutral {
|
31929
|
+
color: var(--neutral);
|
31930
|
+
}
|
31931
|
+
|
31274
31932
|
.group:hover .group-hover\:text-critical {
|
31275
31933
|
color: var(--critical);
|
31276
31934
|
}
|
@@ -31371,6 +32029,18 @@ video {
|
|
31371
32029
|
color: var(--lines-light);
|
31372
32030
|
}
|
31373
32031
|
|
32032
|
+
.group:hover .group-hover\:text-border-reg {
|
32033
|
+
color: var(--border-reg);
|
32034
|
+
}
|
32035
|
+
|
32036
|
+
.group:hover .group-hover\:text-border-faint {
|
32037
|
+
color: var(--border-faint);
|
32038
|
+
}
|
32039
|
+
|
32040
|
+
.group:hover .group-hover\:text-border-bold {
|
32041
|
+
color: var(--border-bold);
|
32042
|
+
}
|
32043
|
+
|
31374
32044
|
.group:hover .group-hover\:text-low {
|
31375
32045
|
color: var(--low);
|
31376
32046
|
}
|
@@ -31419,6 +32089,10 @@ video {
|
|
31419
32089
|
color: var(--overlay-2);
|
31420
32090
|
}
|
31421
32091
|
|
32092
|
+
.group:hover .group-hover\:text-overlay-reverse-0\.5 {
|
32093
|
+
color: var(--overlay-reverse-0\.5);
|
32094
|
+
}
|
32095
|
+
|
31422
32096
|
.group:hover .group-hover\:text-positive {
|
31423
32097
|
color: var(--positive);
|
31424
32098
|
}
|
@@ -31475,6 +32149,10 @@ video {
|
|
31475
32149
|
color: var(--surface-xl);
|
31476
32150
|
}
|
31477
32151
|
|
32152
|
+
.group:hover .group-hover\:text-surface-dash-widget {
|
32153
|
+
color: var(--surface-dash-widget);
|
32154
|
+
}
|
32155
|
+
|
31478
32156
|
.group:hover .group-hover\:text-text-and-icons {
|
31479
32157
|
color: var(--text-and-icons);
|
31480
32158
|
}
|
@@ -31527,6 +32205,10 @@ video {
|
|
31527
32205
|
color: var(--code-text);
|
31528
32206
|
}
|
31529
32207
|
|
32208
|
+
.active\:text-neutral:active {
|
32209
|
+
color: var(--neutral);
|
32210
|
+
}
|
32211
|
+
|
31530
32212
|
.active\:text-critical:active {
|
31531
32213
|
color: var(--critical);
|
31532
32214
|
}
|
@@ -31627,6 +32309,18 @@ video {
|
|
31627
32309
|
color: var(--lines-light);
|
31628
32310
|
}
|
31629
32311
|
|
32312
|
+
.active\:text-border-reg:active {
|
32313
|
+
color: var(--border-reg);
|
32314
|
+
}
|
32315
|
+
|
32316
|
+
.active\:text-border-faint:active {
|
32317
|
+
color: var(--border-faint);
|
32318
|
+
}
|
32319
|
+
|
32320
|
+
.active\:text-border-bold:active {
|
32321
|
+
color: var(--border-bold);
|
32322
|
+
}
|
32323
|
+
|
31630
32324
|
.active\:text-low:active {
|
31631
32325
|
color: var(--low);
|
31632
32326
|
}
|
@@ -31675,6 +32369,10 @@ video {
|
|
31675
32369
|
color: var(--overlay-2);
|
31676
32370
|
}
|
31677
32371
|
|
32372
|
+
.active\:text-overlay-reverse-0\.5:active {
|
32373
|
+
color: var(--overlay-reverse-0\.5);
|
32374
|
+
}
|
32375
|
+
|
31678
32376
|
.active\:text-positive:active {
|
31679
32377
|
color: var(--positive);
|
31680
32378
|
}
|
@@ -31731,6 +32429,10 @@ video {
|
|
31731
32429
|
color: var(--surface-xl);
|
31732
32430
|
}
|
31733
32431
|
|
32432
|
+
.active\:text-surface-dash-widget:active {
|
32433
|
+
color: var(--surface-dash-widget);
|
32434
|
+
}
|
32435
|
+
|
31734
32436
|
.active\:text-text-and-icons:active {
|
31735
32437
|
color: var(--text-and-icons);
|
31736
32438
|
}
|
@@ -31783,6 +32485,10 @@ video {
|
|
31783
32485
|
color: var(--code-text);
|
31784
32486
|
}
|
31785
32487
|
|
32488
|
+
.disabled\:text-neutral:disabled {
|
32489
|
+
color: var(--neutral);
|
32490
|
+
}
|
32491
|
+
|
31786
32492
|
.disabled\:text-critical:disabled {
|
31787
32493
|
color: var(--critical);
|
31788
32494
|
}
|
@@ -31883,6 +32589,18 @@ video {
|
|
31883
32589
|
color: var(--lines-light);
|
31884
32590
|
}
|
31885
32591
|
|
32592
|
+
.disabled\:text-border-reg:disabled {
|
32593
|
+
color: var(--border-reg);
|
32594
|
+
}
|
32595
|
+
|
32596
|
+
.disabled\:text-border-faint:disabled {
|
32597
|
+
color: var(--border-faint);
|
32598
|
+
}
|
32599
|
+
|
32600
|
+
.disabled\:text-border-bold:disabled {
|
32601
|
+
color: var(--border-bold);
|
32602
|
+
}
|
32603
|
+
|
31886
32604
|
.disabled\:text-low:disabled {
|
31887
32605
|
color: var(--low);
|
31888
32606
|
}
|
@@ -31931,6 +32649,10 @@ video {
|
|
31931
32649
|
color: var(--overlay-2);
|
31932
32650
|
}
|
31933
32651
|
|
32652
|
+
.disabled\:text-overlay-reverse-0\.5:disabled {
|
32653
|
+
color: var(--overlay-reverse-0\.5);
|
32654
|
+
}
|
32655
|
+
|
31934
32656
|
.disabled\:text-positive:disabled {
|
31935
32657
|
color: var(--positive);
|
31936
32658
|
}
|
@@ -31987,6 +32709,10 @@ video {
|
|
31987
32709
|
color: var(--surface-xl);
|
31988
32710
|
}
|
31989
32711
|
|
32712
|
+
.disabled\:text-surface-dash-widget:disabled {
|
32713
|
+
color: var(--surface-dash-widget);
|
32714
|
+
}
|
32715
|
+
|
31990
32716
|
.disabled\:text-text-and-icons:disabled {
|
31991
32717
|
color: var(--text-and-icons);
|
31992
32718
|
}
|
@@ -32309,6 +33035,14 @@ video {
|
|
32309
33035
|
color: var(--code-text);
|
32310
33036
|
}
|
32311
33037
|
|
33038
|
+
.placeholder-neutral::-moz-placeholder {
|
33039
|
+
color: var(--neutral);
|
33040
|
+
}
|
33041
|
+
|
33042
|
+
.placeholder-neutral::placeholder {
|
33043
|
+
color: var(--neutral);
|
33044
|
+
}
|
33045
|
+
|
32312
33046
|
.placeholder-critical::-moz-placeholder {
|
32313
33047
|
color: var(--critical);
|
32314
33048
|
}
|
@@ -32509,6 +33243,30 @@ video {
|
|
32509
33243
|
color: var(--lines-light);
|
32510
33244
|
}
|
32511
33245
|
|
33246
|
+
.placeholder-border-reg::-moz-placeholder {
|
33247
|
+
color: var(--border-reg);
|
33248
|
+
}
|
33249
|
+
|
33250
|
+
.placeholder-border-reg::placeholder {
|
33251
|
+
color: var(--border-reg);
|
33252
|
+
}
|
33253
|
+
|
33254
|
+
.placeholder-border-faint::-moz-placeholder {
|
33255
|
+
color: var(--border-faint);
|
33256
|
+
}
|
33257
|
+
|
33258
|
+
.placeholder-border-faint::placeholder {
|
33259
|
+
color: var(--border-faint);
|
33260
|
+
}
|
33261
|
+
|
33262
|
+
.placeholder-border-bold::-moz-placeholder {
|
33263
|
+
color: var(--border-bold);
|
33264
|
+
}
|
33265
|
+
|
33266
|
+
.placeholder-border-bold::placeholder {
|
33267
|
+
color: var(--border-bold);
|
33268
|
+
}
|
33269
|
+
|
32512
33270
|
.placeholder-low::-moz-placeholder {
|
32513
33271
|
color: var(--low);
|
32514
33272
|
}
|
@@ -32605,6 +33363,14 @@ video {
|
|
32605
33363
|
color: var(--overlay-2);
|
32606
33364
|
}
|
32607
33365
|
|
33366
|
+
.placeholder-overlay-reverse-0\.5::-moz-placeholder {
|
33367
|
+
color: var(--overlay-reverse-0\.5);
|
33368
|
+
}
|
33369
|
+
|
33370
|
+
.placeholder-overlay-reverse-0\.5::placeholder {
|
33371
|
+
color: var(--overlay-reverse-0\.5);
|
33372
|
+
}
|
33373
|
+
|
32608
33374
|
.placeholder-positive::-moz-placeholder {
|
32609
33375
|
color: var(--positive);
|
32610
33376
|
}
|
@@ -32717,6 +33483,14 @@ video {
|
|
32717
33483
|
color: var(--surface-xl);
|
32718
33484
|
}
|
32719
33485
|
|
33486
|
+
.placeholder-surface-dash-widget::-moz-placeholder {
|
33487
|
+
color: var(--surface-dash-widget);
|
33488
|
+
}
|
33489
|
+
|
33490
|
+
.placeholder-surface-dash-widget::placeholder {
|
33491
|
+
color: var(--surface-dash-widget);
|
33492
|
+
}
|
33493
|
+
|
32720
33494
|
.placeholder-text-and-icons::-moz-placeholder {
|
32721
33495
|
color: var(--text-and-icons);
|
32722
33496
|
}
|
@@ -32821,6 +33595,14 @@ video {
|
|
32821
33595
|
color: var(--code-text);
|
32822
33596
|
}
|
32823
33597
|
|
33598
|
+
.focus\:placeholder-neutral:focus::-moz-placeholder {
|
33599
|
+
color: var(--neutral);
|
33600
|
+
}
|
33601
|
+
|
33602
|
+
.focus\:placeholder-neutral:focus::placeholder {
|
33603
|
+
color: var(--neutral);
|
33604
|
+
}
|
33605
|
+
|
32824
33606
|
.focus\:placeholder-critical:focus::-moz-placeholder {
|
32825
33607
|
color: var(--critical);
|
32826
33608
|
}
|
@@ -33021,6 +33803,30 @@ video {
|
|
33021
33803
|
color: var(--lines-light);
|
33022
33804
|
}
|
33023
33805
|
|
33806
|
+
.focus\:placeholder-border-reg:focus::-moz-placeholder {
|
33807
|
+
color: var(--border-reg);
|
33808
|
+
}
|
33809
|
+
|
33810
|
+
.focus\:placeholder-border-reg:focus::placeholder {
|
33811
|
+
color: var(--border-reg);
|
33812
|
+
}
|
33813
|
+
|
33814
|
+
.focus\:placeholder-border-faint:focus::-moz-placeholder {
|
33815
|
+
color: var(--border-faint);
|
33816
|
+
}
|
33817
|
+
|
33818
|
+
.focus\:placeholder-border-faint:focus::placeholder {
|
33819
|
+
color: var(--border-faint);
|
33820
|
+
}
|
33821
|
+
|
33822
|
+
.focus\:placeholder-border-bold:focus::-moz-placeholder {
|
33823
|
+
color: var(--border-bold);
|
33824
|
+
}
|
33825
|
+
|
33826
|
+
.focus\:placeholder-border-bold:focus::placeholder {
|
33827
|
+
color: var(--border-bold);
|
33828
|
+
}
|
33829
|
+
|
33024
33830
|
.focus\:placeholder-low:focus::-moz-placeholder {
|
33025
33831
|
color: var(--low);
|
33026
33832
|
}
|
@@ -33117,6 +33923,14 @@ video {
|
|
33117
33923
|
color: var(--overlay-2);
|
33118
33924
|
}
|
33119
33925
|
|
33926
|
+
.focus\:placeholder-overlay-reverse-0\.5:focus::-moz-placeholder {
|
33927
|
+
color: var(--overlay-reverse-0\.5);
|
33928
|
+
}
|
33929
|
+
|
33930
|
+
.focus\:placeholder-overlay-reverse-0\.5:focus::placeholder {
|
33931
|
+
color: var(--overlay-reverse-0\.5);
|
33932
|
+
}
|
33933
|
+
|
33120
33934
|
.focus\:placeholder-positive:focus::-moz-placeholder {
|
33121
33935
|
color: var(--positive);
|
33122
33936
|
}
|
@@ -33229,6 +34043,14 @@ video {
|
|
33229
34043
|
color: var(--surface-xl);
|
33230
34044
|
}
|
33231
34045
|
|
34046
|
+
.focus\:placeholder-surface-dash-widget:focus::-moz-placeholder {
|
34047
|
+
color: var(--surface-dash-widget);
|
34048
|
+
}
|
34049
|
+
|
34050
|
+
.focus\:placeholder-surface-dash-widget:focus::placeholder {
|
34051
|
+
color: var(--surface-dash-widget);
|
34052
|
+
}
|
34053
|
+
|
33232
34054
|
.focus\:placeholder-text-and-icons:focus::-moz-placeholder {
|
33233
34055
|
color: var(--text-and-icons);
|
33234
34056
|
}
|
@@ -33529,6 +34351,10 @@ video {
|
|
33529
34351
|
caret-color: var(--code-text);
|
33530
34352
|
}
|
33531
34353
|
|
34354
|
+
.caret-neutral {
|
34355
|
+
caret-color: var(--neutral);
|
34356
|
+
}
|
34357
|
+
|
33532
34358
|
.caret-critical {
|
33533
34359
|
caret-color: var(--critical);
|
33534
34360
|
}
|
@@ -33629,6 +34455,18 @@ video {
|
|
33629
34455
|
caret-color: var(--lines-light);
|
33630
34456
|
}
|
33631
34457
|
|
34458
|
+
.caret-border-reg {
|
34459
|
+
caret-color: var(--border-reg);
|
34460
|
+
}
|
34461
|
+
|
34462
|
+
.caret-border-faint {
|
34463
|
+
caret-color: var(--border-faint);
|
34464
|
+
}
|
34465
|
+
|
34466
|
+
.caret-border-bold {
|
34467
|
+
caret-color: var(--border-bold);
|
34468
|
+
}
|
34469
|
+
|
33632
34470
|
.caret-low {
|
33633
34471
|
caret-color: var(--low);
|
33634
34472
|
}
|
@@ -33677,6 +34515,10 @@ video {
|
|
33677
34515
|
caret-color: var(--overlay-2);
|
33678
34516
|
}
|
33679
34517
|
|
34518
|
+
.caret-overlay-reverse-0\.5 {
|
34519
|
+
caret-color: var(--overlay-reverse-0\.5);
|
34520
|
+
}
|
34521
|
+
|
33680
34522
|
.caret-positive {
|
33681
34523
|
caret-color: var(--positive);
|
33682
34524
|
}
|
@@ -33733,6 +34575,10 @@ video {
|
|
33733
34575
|
caret-color: var(--surface-xl);
|
33734
34576
|
}
|
33735
34577
|
|
34578
|
+
.caret-surface-dash-widget {
|
34579
|
+
caret-color: var(--surface-dash-widget);
|
34580
|
+
}
|
34581
|
+
|
33736
34582
|
.caret-text-and-icons {
|
33737
34583
|
caret-color: var(--text-and-icons);
|
33738
34584
|
}
|
@@ -34976,6 +35822,10 @@ video {
|
|
34976
35822
|
--tw-ring-color: var(--code-text);
|
34977
35823
|
}
|
34978
35824
|
|
35825
|
+
.ring-neutral {
|
35826
|
+
--tw-ring-color: var(--neutral);
|
35827
|
+
}
|
35828
|
+
|
34979
35829
|
.ring-critical {
|
34980
35830
|
--tw-ring-color: var(--critical);
|
34981
35831
|
}
|
@@ -35076,6 +35926,18 @@ video {
|
|
35076
35926
|
--tw-ring-color: var(--lines-light);
|
35077
35927
|
}
|
35078
35928
|
|
35929
|
+
.ring-border-reg {
|
35930
|
+
--tw-ring-color: var(--border-reg);
|
35931
|
+
}
|
35932
|
+
|
35933
|
+
.ring-border-faint {
|
35934
|
+
--tw-ring-color: var(--border-faint);
|
35935
|
+
}
|
35936
|
+
|
35937
|
+
.ring-border-bold {
|
35938
|
+
--tw-ring-color: var(--border-bold);
|
35939
|
+
}
|
35940
|
+
|
35079
35941
|
.ring-low {
|
35080
35942
|
--tw-ring-color: var(--low);
|
35081
35943
|
}
|
@@ -35124,6 +35986,10 @@ video {
|
|
35124
35986
|
--tw-ring-color: var(--overlay-2);
|
35125
35987
|
}
|
35126
35988
|
|
35989
|
+
.ring-overlay-reverse-0\.5 {
|
35990
|
+
--tw-ring-color: var(--overlay-reverse-0\.5);
|
35991
|
+
}
|
35992
|
+
|
35127
35993
|
.ring-positive {
|
35128
35994
|
--tw-ring-color: var(--positive);
|
35129
35995
|
}
|
@@ -35180,6 +36046,10 @@ video {
|
|
35180
36046
|
--tw-ring-color: var(--surface-xl);
|
35181
36047
|
}
|
35182
36048
|
|
36049
|
+
.ring-surface-dash-widget {
|
36050
|
+
--tw-ring-color: var(--surface-dash-widget);
|
36051
|
+
}
|
36052
|
+
|
35183
36053
|
.ring-text-and-icons {
|
35184
36054
|
--tw-ring-color: var(--text-and-icons);
|
35185
36055
|
}
|
@@ -35232,6 +36102,10 @@ video {
|
|
35232
36102
|
--tw-ring-color: var(--code-text);
|
35233
36103
|
}
|
35234
36104
|
|
36105
|
+
.focus-within\:ring-neutral:focus-within {
|
36106
|
+
--tw-ring-color: var(--neutral);
|
36107
|
+
}
|
36108
|
+
|
35235
36109
|
.focus-within\:ring-critical:focus-within {
|
35236
36110
|
--tw-ring-color: var(--critical);
|
35237
36111
|
}
|
@@ -35332,6 +36206,18 @@ video {
|
|
35332
36206
|
--tw-ring-color: var(--lines-light);
|
35333
36207
|
}
|
35334
36208
|
|
36209
|
+
.focus-within\:ring-border-reg:focus-within {
|
36210
|
+
--tw-ring-color: var(--border-reg);
|
36211
|
+
}
|
36212
|
+
|
36213
|
+
.focus-within\:ring-border-faint:focus-within {
|
36214
|
+
--tw-ring-color: var(--border-faint);
|
36215
|
+
}
|
36216
|
+
|
36217
|
+
.focus-within\:ring-border-bold:focus-within {
|
36218
|
+
--tw-ring-color: var(--border-bold);
|
36219
|
+
}
|
36220
|
+
|
35335
36221
|
.focus-within\:ring-low:focus-within {
|
35336
36222
|
--tw-ring-color: var(--low);
|
35337
36223
|
}
|
@@ -35380,6 +36266,10 @@ video {
|
|
35380
36266
|
--tw-ring-color: var(--overlay-2);
|
35381
36267
|
}
|
35382
36268
|
|
36269
|
+
.focus-within\:ring-overlay-reverse-0\.5:focus-within {
|
36270
|
+
--tw-ring-color: var(--overlay-reverse-0\.5);
|
36271
|
+
}
|
36272
|
+
|
35383
36273
|
.focus-within\:ring-positive:focus-within {
|
35384
36274
|
--tw-ring-color: var(--positive);
|
35385
36275
|
}
|
@@ -35436,6 +36326,10 @@ video {
|
|
35436
36326
|
--tw-ring-color: var(--surface-xl);
|
35437
36327
|
}
|
35438
36328
|
|
36329
|
+
.focus-within\:ring-surface-dash-widget:focus-within {
|
36330
|
+
--tw-ring-color: var(--surface-dash-widget);
|
36331
|
+
}
|
36332
|
+
|
35439
36333
|
.focus-within\:ring-text-and-icons:focus-within {
|
35440
36334
|
--tw-ring-color: var(--text-and-icons);
|
35441
36335
|
}
|
@@ -35488,6 +36382,10 @@ video {
|
|
35488
36382
|
--tw-ring-color: var(--code-text);
|
35489
36383
|
}
|
35490
36384
|
|
36385
|
+
.focus\:ring-neutral:focus {
|
36386
|
+
--tw-ring-color: var(--neutral);
|
36387
|
+
}
|
36388
|
+
|
35491
36389
|
.focus\:ring-critical:focus {
|
35492
36390
|
--tw-ring-color: var(--critical);
|
35493
36391
|
}
|
@@ -35588,6 +36486,18 @@ video {
|
|
35588
36486
|
--tw-ring-color: var(--lines-light);
|
35589
36487
|
}
|
35590
36488
|
|
36489
|
+
.focus\:ring-border-reg:focus {
|
36490
|
+
--tw-ring-color: var(--border-reg);
|
36491
|
+
}
|
36492
|
+
|
36493
|
+
.focus\:ring-border-faint:focus {
|
36494
|
+
--tw-ring-color: var(--border-faint);
|
36495
|
+
}
|
36496
|
+
|
36497
|
+
.focus\:ring-border-bold:focus {
|
36498
|
+
--tw-ring-color: var(--border-bold);
|
36499
|
+
}
|
36500
|
+
|
35591
36501
|
.focus\:ring-low:focus {
|
35592
36502
|
--tw-ring-color: var(--low);
|
35593
36503
|
}
|
@@ -35636,6 +36546,10 @@ video {
|
|
35636
36546
|
--tw-ring-color: var(--overlay-2);
|
35637
36547
|
}
|
35638
36548
|
|
36549
|
+
.focus\:ring-overlay-reverse-0\.5:focus {
|
36550
|
+
--tw-ring-color: var(--overlay-reverse-0\.5);
|
36551
|
+
}
|
36552
|
+
|
35639
36553
|
.focus\:ring-positive:focus {
|
35640
36554
|
--tw-ring-color: var(--positive);
|
35641
36555
|
}
|
@@ -35692,6 +36606,10 @@ video {
|
|
35692
36606
|
--tw-ring-color: var(--surface-xl);
|
35693
36607
|
}
|
35694
36608
|
|
36609
|
+
.focus\:ring-surface-dash-widget:focus {
|
36610
|
+
--tw-ring-color: var(--surface-dash-widget);
|
36611
|
+
}
|
36612
|
+
|
35695
36613
|
.focus\:ring-text-and-icons:focus {
|
35696
36614
|
--tw-ring-color: var(--text-and-icons);
|
35697
36615
|
}
|
@@ -35984,6 +36902,10 @@ video {
|
|
35984
36902
|
--tw-ring-offset-color: var(--code-text);
|
35985
36903
|
}
|
35986
36904
|
|
36905
|
+
.ring-offset-neutral {
|
36906
|
+
--tw-ring-offset-color: var(--neutral);
|
36907
|
+
}
|
36908
|
+
|
35987
36909
|
.ring-offset-critical {
|
35988
36910
|
--tw-ring-offset-color: var(--critical);
|
35989
36911
|
}
|
@@ -36084,6 +37006,18 @@ video {
|
|
36084
37006
|
--tw-ring-offset-color: var(--lines-light);
|
36085
37007
|
}
|
36086
37008
|
|
37009
|
+
.ring-offset-border-reg {
|
37010
|
+
--tw-ring-offset-color: var(--border-reg);
|
37011
|
+
}
|
37012
|
+
|
37013
|
+
.ring-offset-border-faint {
|
37014
|
+
--tw-ring-offset-color: var(--border-faint);
|
37015
|
+
}
|
37016
|
+
|
37017
|
+
.ring-offset-border-bold {
|
37018
|
+
--tw-ring-offset-color: var(--border-bold);
|
37019
|
+
}
|
37020
|
+
|
36087
37021
|
.ring-offset-low {
|
36088
37022
|
--tw-ring-offset-color: var(--low);
|
36089
37023
|
}
|
@@ -36132,6 +37066,10 @@ video {
|
|
36132
37066
|
--tw-ring-offset-color: var(--overlay-2);
|
36133
37067
|
}
|
36134
37068
|
|
37069
|
+
.ring-offset-overlay-reverse-0\.5 {
|
37070
|
+
--tw-ring-offset-color: var(--overlay-reverse-0\.5);
|
37071
|
+
}
|
37072
|
+
|
36135
37073
|
.ring-offset-positive {
|
36136
37074
|
--tw-ring-offset-color: var(--positive);
|
36137
37075
|
}
|
@@ -36188,6 +37126,10 @@ video {
|
|
36188
37126
|
--tw-ring-offset-color: var(--surface-xl);
|
36189
37127
|
}
|
36190
37128
|
|
37129
|
+
.ring-offset-surface-dash-widget {
|
37130
|
+
--tw-ring-offset-color: var(--surface-dash-widget);
|
37131
|
+
}
|
37132
|
+
|
36191
37133
|
.ring-offset-text-and-icons {
|
36192
37134
|
--tw-ring-offset-color: var(--text-and-icons);
|
36193
37135
|
}
|
@@ -36240,6 +37182,10 @@ video {
|
|
36240
37182
|
--tw-ring-offset-color: var(--code-text);
|
36241
37183
|
}
|
36242
37184
|
|
37185
|
+
.focus-within\:ring-offset-neutral:focus-within {
|
37186
|
+
--tw-ring-offset-color: var(--neutral);
|
37187
|
+
}
|
37188
|
+
|
36243
37189
|
.focus-within\:ring-offset-critical:focus-within {
|
36244
37190
|
--tw-ring-offset-color: var(--critical);
|
36245
37191
|
}
|
@@ -36340,6 +37286,18 @@ video {
|
|
36340
37286
|
--tw-ring-offset-color: var(--lines-light);
|
36341
37287
|
}
|
36342
37288
|
|
37289
|
+
.focus-within\:ring-offset-border-reg:focus-within {
|
37290
|
+
--tw-ring-offset-color: var(--border-reg);
|
37291
|
+
}
|
37292
|
+
|
37293
|
+
.focus-within\:ring-offset-border-faint:focus-within {
|
37294
|
+
--tw-ring-offset-color: var(--border-faint);
|
37295
|
+
}
|
37296
|
+
|
37297
|
+
.focus-within\:ring-offset-border-bold:focus-within {
|
37298
|
+
--tw-ring-offset-color: var(--border-bold);
|
37299
|
+
}
|
37300
|
+
|
36343
37301
|
.focus-within\:ring-offset-low:focus-within {
|
36344
37302
|
--tw-ring-offset-color: var(--low);
|
36345
37303
|
}
|
@@ -36388,6 +37346,10 @@ video {
|
|
36388
37346
|
--tw-ring-offset-color: var(--overlay-2);
|
36389
37347
|
}
|
36390
37348
|
|
37349
|
+
.focus-within\:ring-offset-overlay-reverse-0\.5:focus-within {
|
37350
|
+
--tw-ring-offset-color: var(--overlay-reverse-0\.5);
|
37351
|
+
}
|
37352
|
+
|
36391
37353
|
.focus-within\:ring-offset-positive:focus-within {
|
36392
37354
|
--tw-ring-offset-color: var(--positive);
|
36393
37355
|
}
|
@@ -36444,6 +37406,10 @@ video {
|
|
36444
37406
|
--tw-ring-offset-color: var(--surface-xl);
|
36445
37407
|
}
|
36446
37408
|
|
37409
|
+
.focus-within\:ring-offset-surface-dash-widget:focus-within {
|
37410
|
+
--tw-ring-offset-color: var(--surface-dash-widget);
|
37411
|
+
}
|
37412
|
+
|
36447
37413
|
.focus-within\:ring-offset-text-and-icons:focus-within {
|
36448
37414
|
--tw-ring-offset-color: var(--text-and-icons);
|
36449
37415
|
}
|
@@ -36496,6 +37462,10 @@ video {
|
|
36496
37462
|
--tw-ring-offset-color: var(--code-text);
|
36497
37463
|
}
|
36498
37464
|
|
37465
|
+
.focus\:ring-offset-neutral:focus {
|
37466
|
+
--tw-ring-offset-color: var(--neutral);
|
37467
|
+
}
|
37468
|
+
|
36499
37469
|
.focus\:ring-offset-critical:focus {
|
36500
37470
|
--tw-ring-offset-color: var(--critical);
|
36501
37471
|
}
|
@@ -36596,6 +37566,18 @@ video {
|
|
36596
37566
|
--tw-ring-offset-color: var(--lines-light);
|
36597
37567
|
}
|
36598
37568
|
|
37569
|
+
.focus\:ring-offset-border-reg:focus {
|
37570
|
+
--tw-ring-offset-color: var(--border-reg);
|
37571
|
+
}
|
37572
|
+
|
37573
|
+
.focus\:ring-offset-border-faint:focus {
|
37574
|
+
--tw-ring-offset-color: var(--border-faint);
|
37575
|
+
}
|
37576
|
+
|
37577
|
+
.focus\:ring-offset-border-bold:focus {
|
37578
|
+
--tw-ring-offset-color: var(--border-bold);
|
37579
|
+
}
|
37580
|
+
|
36599
37581
|
.focus\:ring-offset-low:focus {
|
36600
37582
|
--tw-ring-offset-color: var(--low);
|
36601
37583
|
}
|
@@ -36644,6 +37626,10 @@ video {
|
|
36644
37626
|
--tw-ring-offset-color: var(--overlay-2);
|
36645
37627
|
}
|
36646
37628
|
|
37629
|
+
.focus\:ring-offset-overlay-reverse-0\.5:focus {
|
37630
|
+
--tw-ring-offset-color: var(--overlay-reverse-0\.5);
|
37631
|
+
}
|
37632
|
+
|
36647
37633
|
.focus\:ring-offset-positive:focus {
|
36648
37634
|
--tw-ring-offset-color: var(--positive);
|
36649
37635
|
}
|
@@ -36700,6 +37686,10 @@ video {
|
|
36700
37686
|
--tw-ring-offset-color: var(--surface-xl);
|
36701
37687
|
}
|
36702
37688
|
|
37689
|
+
.focus\:ring-offset-surface-dash-widget:focus {
|
37690
|
+
--tw-ring-offset-color: var(--surface-dash-widget);
|
37691
|
+
}
|
37692
|
+
|
36703
37693
|
.focus\:ring-offset-text-and-icons:focus {
|
36704
37694
|
--tw-ring-offset-color: var(--text-and-icons);
|
36705
37695
|
}
|