@nswds/app 1.16.0 → 1.17.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/dist/globals.css +685 -126
- package/dist/index.cjs +3383 -3264
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -5
- package/dist/index.d.ts +6 -5
- package/dist/index.js +4882 -4762
- package/dist/index.js.map +1 -1
- package/dist/styles.css +685 -126
- package/dist/styles.css.map +1 -1
- package/package.json +5 -5
- package/dist/index.css +0 -552
- package/dist/index.css.map +0 -1
package/dist/globals.css
CHANGED
|
@@ -825,6 +825,9 @@
|
|
|
825
825
|
.w-72 {
|
|
826
826
|
width: calc(var(--spacing) * 72);
|
|
827
827
|
}
|
|
828
|
+
.w-80 {
|
|
829
|
+
width: calc(var(--spacing) * 80);
|
|
830
|
+
}
|
|
828
831
|
.w-\[44px\] {
|
|
829
832
|
width: 44px;
|
|
830
833
|
}
|
|
@@ -912,6 +915,9 @@
|
|
|
912
915
|
.flex-shrink-0 {
|
|
913
916
|
flex-shrink: 0;
|
|
914
917
|
}
|
|
918
|
+
.shrink {
|
|
919
|
+
flex-shrink: 1;
|
|
920
|
+
}
|
|
915
921
|
.shrink-0 {
|
|
916
922
|
flex-shrink: 0;
|
|
917
923
|
}
|
|
@@ -1784,6 +1790,9 @@
|
|
|
1784
1790
|
.text-gray-500 {
|
|
1785
1791
|
color: var(--color-gray-500);
|
|
1786
1792
|
}
|
|
1793
|
+
.text-gray-600 {
|
|
1794
|
+
color: var(--color-gray-600);
|
|
1795
|
+
}
|
|
1787
1796
|
.text-gray-800 {
|
|
1788
1797
|
color: var(--color-gray-800);
|
|
1789
1798
|
}
|
|
@@ -4511,27 +4520,27 @@
|
|
|
4511
4520
|
}
|
|
4512
4521
|
}
|
|
4513
4522
|
.dark\:block {
|
|
4514
|
-
&:where(
|
|
4523
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4515
4524
|
display: block;
|
|
4516
4525
|
}
|
|
4517
4526
|
}
|
|
4518
4527
|
.dark\:hidden {
|
|
4519
|
-
&:where(
|
|
4528
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4520
4529
|
display: none;
|
|
4521
4530
|
}
|
|
4522
4531
|
}
|
|
4523
4532
|
.dark\:border-gray-600 {
|
|
4524
|
-
&:where(
|
|
4533
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4525
4534
|
border-color: var(--color-gray-600);
|
|
4526
4535
|
}
|
|
4527
4536
|
}
|
|
4528
4537
|
.dark\:border-nsw-grey-50 {
|
|
4529
|
-
&:where(
|
|
4538
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4530
4539
|
border-color: var(--color-nsw-grey-50);
|
|
4531
4540
|
}
|
|
4532
4541
|
}
|
|
4533
4542
|
.dark\:border-nsw-grey-200\/10 {
|
|
4534
|
-
&:where(
|
|
4543
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4535
4544
|
border-color: color-mix(in srgb, oklch(0.9401 0 0) 10%, transparent);
|
|
4536
4545
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4537
4546
|
border-color: color-mix(in oklab, var(--color-nsw-grey-200) 10%, transparent);
|
|
@@ -4539,7 +4548,7 @@
|
|
|
4539
4548
|
}
|
|
4540
4549
|
}
|
|
4541
4550
|
.dark\:border-nsw-grey-200\/15 {
|
|
4542
|
-
&:where(
|
|
4551
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4543
4552
|
border-color: color-mix(in srgb, oklch(0.9401 0 0) 15%, transparent);
|
|
4544
4553
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4545
4554
|
border-color: color-mix(in oklab, var(--color-nsw-grey-200) 15%, transparent);
|
|
@@ -4547,7 +4556,7 @@
|
|
|
4547
4556
|
}
|
|
4548
4557
|
}
|
|
4549
4558
|
.dark\:border-nsw-grey-200\/20 {
|
|
4550
|
-
&:where(
|
|
4559
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4551
4560
|
border-color: color-mix(in srgb, oklch(0.9401 0 0) 20%, transparent);
|
|
4552
4561
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4553
4562
|
border-color: color-mix(in oklab, var(--color-nsw-grey-200) 20%, transparent);
|
|
@@ -4555,17 +4564,17 @@
|
|
|
4555
4564
|
}
|
|
4556
4565
|
}
|
|
4557
4566
|
.dark\:border-slate-800 {
|
|
4558
|
-
&:where(
|
|
4567
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4559
4568
|
border-color: var(--color-slate-800);
|
|
4560
4569
|
}
|
|
4561
4570
|
}
|
|
4562
4571
|
.dark\:border-white {
|
|
4563
|
-
&:where(
|
|
4572
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4564
4573
|
border-color: var(--color-white);
|
|
4565
4574
|
}
|
|
4566
4575
|
}
|
|
4567
4576
|
.dark\:border-white\/5 {
|
|
4568
|
-
&:where(
|
|
4577
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4569
4578
|
border-color: color-mix(in srgb, #fff 5%, transparent);
|
|
4570
4579
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4571
4580
|
border-color: color-mix(in oklab, var(--color-white) 5%, transparent);
|
|
@@ -4573,37 +4582,37 @@
|
|
|
4573
4582
|
}
|
|
4574
4583
|
}
|
|
4575
4584
|
.dark\:bg-\(--badge-bg\) {
|
|
4576
|
-
&:where(
|
|
4585
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4577
4586
|
background-color: var(--badge-bg);
|
|
4578
4587
|
}
|
|
4579
4588
|
}
|
|
4580
4589
|
.dark\:bg-\(--btn-bg\) {
|
|
4581
|
-
&:where(
|
|
4590
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4582
4591
|
background-color: var(--btn-bg);
|
|
4583
4592
|
}
|
|
4584
4593
|
}
|
|
4585
4594
|
.dark\:bg-blue-950 {
|
|
4586
|
-
&:where(
|
|
4595
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4587
4596
|
background-color: var(--color-blue-950);
|
|
4588
4597
|
}
|
|
4589
4598
|
}
|
|
4590
4599
|
.dark\:bg-gray-700 {
|
|
4591
|
-
&:where(
|
|
4600
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4592
4601
|
background-color: var(--color-gray-700);
|
|
4593
4602
|
}
|
|
4594
4603
|
}
|
|
4595
4604
|
.dark\:bg-gray-800 {
|
|
4596
|
-
&:where(
|
|
4605
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4597
4606
|
background-color: var(--color-gray-800);
|
|
4598
4607
|
}
|
|
4599
4608
|
}
|
|
4600
4609
|
.dark\:bg-gray-900 {
|
|
4601
|
-
&:where(
|
|
4610
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4602
4611
|
background-color: var(--color-gray-900);
|
|
4603
4612
|
}
|
|
4604
4613
|
}
|
|
4605
4614
|
.dark\:bg-input\/30 {
|
|
4606
|
-
&:where(
|
|
4615
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4607
4616
|
background-color: var(--input);
|
|
4608
4617
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4609
4618
|
background-color: color-mix(in oklab, var(--input) 30%, transparent);
|
|
@@ -4611,7 +4620,7 @@
|
|
|
4611
4620
|
}
|
|
4612
4621
|
}
|
|
4613
4622
|
.dark\:bg-nsw-grey-100\/20 {
|
|
4614
|
-
&:where(
|
|
4623
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4615
4624
|
background-color: color-mix(in srgb, oklch(0.9700500000000001 0 0) 20%, transparent);
|
|
4616
4625
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4617
4626
|
background-color: color-mix(in oklab, var(--color-nsw-grey-100) 20%, transparent);
|
|
@@ -4619,12 +4628,12 @@
|
|
|
4619
4628
|
}
|
|
4620
4629
|
}
|
|
4621
4630
|
.dark\:bg-nsw-grey-800 {
|
|
4622
|
-
&:where(
|
|
4631
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4623
4632
|
background-color: var(--color-nsw-grey-800);
|
|
4624
4633
|
}
|
|
4625
4634
|
}
|
|
4626
4635
|
.dark\:bg-slate-900\/95 {
|
|
4627
|
-
&:where(
|
|
4636
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4628
4637
|
background-color: color-mix(in srgb, oklch(20.8% 0.042 265.755) 95%, transparent);
|
|
4629
4638
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4630
4639
|
background-color: color-mix(in oklab, var(--color-slate-900) 95%, transparent);
|
|
@@ -4632,12 +4641,12 @@
|
|
|
4632
4641
|
}
|
|
4633
4642
|
}
|
|
4634
4643
|
.dark\:bg-transparent {
|
|
4635
|
-
&:where(
|
|
4644
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4636
4645
|
background-color: transparent;
|
|
4637
4646
|
}
|
|
4638
4647
|
}
|
|
4639
4648
|
.dark\:bg-white\/15 {
|
|
4640
|
-
&:where(
|
|
4649
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4641
4650
|
background-color: color-mix(in srgb, #fff 15%, transparent);
|
|
4642
4651
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4643
4652
|
background-color: color-mix(in oklab, var(--color-white) 15%, transparent);
|
|
@@ -4645,67 +4654,67 @@
|
|
|
4645
4654
|
}
|
|
4646
4655
|
}
|
|
4647
4656
|
.dark\:fill-nsw-grey-100 {
|
|
4648
|
-
&:where(
|
|
4657
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4649
4658
|
fill: var(--color-nsw-grey-100);
|
|
4650
4659
|
}
|
|
4651
4660
|
}
|
|
4652
4661
|
.dark\:fill-white {
|
|
4653
|
-
&:where(
|
|
4662
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4654
4663
|
fill: var(--color-white);
|
|
4655
4664
|
}
|
|
4656
4665
|
}
|
|
4657
4666
|
.dark\:text-gray-400 {
|
|
4658
|
-
&:where(
|
|
4667
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4659
4668
|
color: var(--color-gray-400);
|
|
4660
4669
|
}
|
|
4661
4670
|
}
|
|
4662
4671
|
.dark\:text-muted-foreground {
|
|
4663
|
-
&:where(
|
|
4672
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4664
4673
|
color: var(--muted-foreground);
|
|
4665
4674
|
}
|
|
4666
4675
|
}
|
|
4667
4676
|
.dark\:text-nsw-grey-200 {
|
|
4668
|
-
&:where(
|
|
4677
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4669
4678
|
color: var(--color-nsw-grey-200);
|
|
4670
4679
|
}
|
|
4671
4680
|
}
|
|
4672
4681
|
.dark\:text-nsw-grey-400 {
|
|
4673
|
-
&:where(
|
|
4682
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4674
4683
|
color: var(--color-nsw-grey-400);
|
|
4675
4684
|
}
|
|
4676
4685
|
}
|
|
4677
4686
|
.dark\:text-nsw-grey-800 {
|
|
4678
|
-
&:where(
|
|
4687
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4679
4688
|
color: var(--color-nsw-grey-800);
|
|
4680
4689
|
}
|
|
4681
4690
|
}
|
|
4682
4691
|
.dark\:text-primary {
|
|
4683
|
-
&:where(
|
|
4692
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4684
4693
|
color: oklch(0.29 0.1173 259.84);
|
|
4685
4694
|
}
|
|
4686
4695
|
}
|
|
4687
4696
|
.dark\:text-primary-dark {
|
|
4688
|
-
&:where(
|
|
4697
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4689
4698
|
color: oklch(0.23925 0.099705 259.84);
|
|
4690
4699
|
}
|
|
4691
4700
|
}
|
|
4692
4701
|
.dark\:text-secondary {
|
|
4693
|
-
&:where(
|
|
4702
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4694
4703
|
color: oklch(0.9267 0.0417 227.89);
|
|
4695
4704
|
}
|
|
4696
4705
|
}
|
|
4697
4706
|
.dark\:text-slate-400 {
|
|
4698
|
-
&:where(
|
|
4707
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4699
4708
|
color: var(--color-slate-400);
|
|
4700
4709
|
}
|
|
4701
4710
|
}
|
|
4702
4711
|
.dark\:text-white {
|
|
4703
|
-
&:where(
|
|
4712
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4704
4713
|
color: var(--color-white);
|
|
4705
4714
|
}
|
|
4706
4715
|
}
|
|
4707
4716
|
.dark\:text-white\/80 {
|
|
4708
|
-
&:where(
|
|
4717
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4709
4718
|
color: color-mix(in srgb, #fff 80%, transparent);
|
|
4710
4719
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4711
4720
|
color: color-mix(in oklab, var(--color-white) 80%, transparent);
|
|
@@ -4713,7 +4722,7 @@
|
|
|
4713
4722
|
}
|
|
4714
4723
|
}
|
|
4715
4724
|
.dark\:shadow-none {
|
|
4716
|
-
&:where(
|
|
4725
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4717
4726
|
--tw-shadow: 0 0 #0000;
|
|
4718
4727
|
box-shadow:
|
|
4719
4728
|
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
@@ -4721,7 +4730,7 @@
|
|
|
4721
4730
|
}
|
|
4722
4731
|
}
|
|
4723
4732
|
.dark\:backdrop-blur-sm {
|
|
4724
|
-
&:where(
|
|
4733
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4725
4734
|
--tw-backdrop-blur: blur(var(--blur-sm));
|
|
4726
4735
|
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
|
|
4727
4736
|
var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,)
|
|
@@ -4734,7 +4743,7 @@
|
|
|
4734
4743
|
}
|
|
4735
4744
|
}
|
|
4736
4745
|
.dark\:\[--badge-bg\:var\(--color-accent\)\]\/50 {
|
|
4737
|
-
&:where(
|
|
4746
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4738
4747
|
--badge-bg: color-mix(in srgb, oklch(0.562 0.2175 20.33) 50%, transparent);
|
|
4739
4748
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4740
4749
|
--badge-bg: color-mix(in oklab, var(--color-accent) 50%, transparent);
|
|
@@ -4742,7 +4751,7 @@
|
|
|
4742
4751
|
}
|
|
4743
4752
|
}
|
|
4744
4753
|
.dark\:\[--badge-bg\:var\(--color-error\)\]\/50 {
|
|
4745
|
-
&:where(
|
|
4754
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4746
4755
|
--badge-bg: color-mix(in srgb, oklch(0.502 0.1927 18.08) 50%, transparent);
|
|
4747
4756
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4748
4757
|
--badge-bg: color-mix(in oklab, var(--color-error) 50%, transparent);
|
|
@@ -4750,7 +4759,7 @@
|
|
|
4750
4759
|
}
|
|
4751
4760
|
}
|
|
4752
4761
|
.dark\:\[--badge-bg\:var\(--color-info\)\]\/50 {
|
|
4753
|
-
&:where(
|
|
4762
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4754
4763
|
--badge-bg: color-mix(in srgb, oklch(0.4506 0.1233 262.35) 50%, transparent);
|
|
4755
4764
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4756
4765
|
--badge-bg: color-mix(in oklab, var(--color-info) 50%, transparent);
|
|
@@ -4758,12 +4767,12 @@
|
|
|
4758
4767
|
}
|
|
4759
4768
|
}
|
|
4760
4769
|
.dark\:\[--badge-bg\:var\(--color-nsw-grey-100\)\] {
|
|
4761
|
-
&:where(
|
|
4770
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4762
4771
|
--badge-bg: var(--color-nsw-grey-100);
|
|
4763
4772
|
}
|
|
4764
4773
|
}
|
|
4765
4774
|
.dark\:\[--badge-bg\:var\(--color-primary\)\]\/90 {
|
|
4766
|
-
&:where(
|
|
4775
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4767
4776
|
--badge-bg: color-mix(in srgb, oklch(0.29 0.1173 259.84) 90%, transparent);
|
|
4768
4777
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4769
4778
|
--badge-bg: color-mix(in oklab, var(--color-primary) 90%, transparent);
|
|
@@ -4771,7 +4780,7 @@
|
|
|
4771
4780
|
}
|
|
4772
4781
|
}
|
|
4773
4782
|
.dark\:\[--badge-bg\:var\(--color-secondary\)\]\/30 {
|
|
4774
|
-
&:where(
|
|
4783
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4775
4784
|
--badge-bg: color-mix(in srgb, oklch(0.9267 0.0417 227.89) 30%, transparent);
|
|
4776
4785
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4777
4786
|
--badge-bg: color-mix(in oklab, var(--color-secondary) 30%, transparent);
|
|
@@ -4779,7 +4788,7 @@
|
|
|
4779
4788
|
}
|
|
4780
4789
|
}
|
|
4781
4790
|
.dark\:\[--badge-bg\:var\(--color-success\)\]\/50 {
|
|
4782
|
-
&:where(
|
|
4791
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4783
4792
|
--badge-bg: color-mix(in srgb, oklch(0.549 0.1849 142.8) 50%, transparent);
|
|
4784
4793
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4785
4794
|
--badge-bg: color-mix(in oklab, var(--color-success) 50%, transparent);
|
|
@@ -4787,7 +4796,7 @@
|
|
|
4787
4796
|
}
|
|
4788
4797
|
}
|
|
4789
4798
|
.dark\:\[--badge-bg\:var\(--color-tertiary\)\]\/50 {
|
|
4790
|
-
&:where(
|
|
4799
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4791
4800
|
--badge-bg: color-mix(in srgb, oklch(0.5751 0.2298 260.76) 50%, transparent);
|
|
4792
4801
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4793
4802
|
--badge-bg: color-mix(in oklab, var(--color-tertiary) 50%, transparent);
|
|
@@ -4795,7 +4804,7 @@
|
|
|
4795
4804
|
}
|
|
4796
4805
|
}
|
|
4797
4806
|
.dark\:\[--badge-bg\:var\(--color-warning\)\]\/50 {
|
|
4798
|
-
&:where(
|
|
4807
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4799
4808
|
--badge-bg: color-mix(in srgb, oklch(0.5833 0.169705 43.9973) 50%, transparent);
|
|
4800
4809
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4801
4810
|
--badge-bg: color-mix(in oklab, var(--color-warning) 50%, transparent);
|
|
@@ -4803,37 +4812,37 @@
|
|
|
4803
4812
|
}
|
|
4804
4813
|
}
|
|
4805
4814
|
.dark\:\[--badge-bg\:var\(--color-white\)\] {
|
|
4806
|
-
&:where(
|
|
4815
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4807
4816
|
--badge-bg: var(--color-white);
|
|
4808
4817
|
}
|
|
4809
4818
|
}
|
|
4810
4819
|
.dark\:\[--badge-bg\:white\]\/15 {
|
|
4811
|
-
&:where(
|
|
4820
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4812
4821
|
--badge-bg: color-mix(in oklab, white 15%, transparent);
|
|
4813
4822
|
}
|
|
4814
4823
|
}
|
|
4815
4824
|
.dark\:\[--btn-bg\:var\(--color-nsw-grey-600\)\] {
|
|
4816
|
-
&:where(
|
|
4825
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4817
4826
|
--btn-bg: var(--color-nsw-grey-600);
|
|
4818
4827
|
}
|
|
4819
4828
|
}
|
|
4820
4829
|
.dark\:\[--btn-bg\:var\(--color-nsw-grey-800\)\] {
|
|
4821
|
-
&:where(
|
|
4830
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4822
4831
|
--btn-bg: var(--color-nsw-grey-800);
|
|
4823
4832
|
}
|
|
4824
4833
|
}
|
|
4825
4834
|
.dark\:\[--btn-bg\:var\(--color-primary-light\)\] {
|
|
4826
|
-
&:where(
|
|
4835
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4827
4836
|
--btn-bg: var(--color-primary-light);
|
|
4828
4837
|
}
|
|
4829
4838
|
}
|
|
4830
4839
|
.dark\:\[--btn-bg\:white\] {
|
|
4831
|
-
&:where(
|
|
4840
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4832
4841
|
--btn-bg: white;
|
|
4833
4842
|
}
|
|
4834
4843
|
}
|
|
4835
4844
|
.dark\:\[--btn-hover-overlay\:var\(--color-nsw-grey-800\)\]\/5 {
|
|
4836
|
-
&:where(
|
|
4845
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4837
4846
|
--btn-hover-overlay: color-mix(in srgb, oklch(0.2694 0.0104 242.08) 5%, transparent);
|
|
4838
4847
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4839
4848
|
--btn-hover-overlay: color-mix(in oklab, var(--color-nsw-grey-800) 5%, transparent);
|
|
@@ -4841,7 +4850,7 @@
|
|
|
4841
4850
|
}
|
|
4842
4851
|
}
|
|
4843
4852
|
.dark\:\[--btn-hover-overlay\:var\(--color-primary-dark\)\]\/5 {
|
|
4844
|
-
&:where(
|
|
4853
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4845
4854
|
--btn-hover-overlay: color-mix(in srgb, oklch(0.23925 0.099705 259.84) 5%, transparent);
|
|
4846
4855
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4847
4856
|
--btn-hover-overlay: color-mix(in oklab, var(--color-primary-dark) 5%, transparent);
|
|
@@ -4849,7 +4858,7 @@
|
|
|
4849
4858
|
}
|
|
4850
4859
|
}
|
|
4851
4860
|
.dark\:\[--btn-hover-overlay\:var\(--color-white\)\]\/5 {
|
|
4852
|
-
&:where(
|
|
4861
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4853
4862
|
--btn-hover-overlay: color-mix(in srgb, #fff 5%, transparent);
|
|
4854
4863
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4855
4864
|
--btn-hover-overlay: color-mix(in oklab, var(--color-white) 5%, transparent);
|
|
@@ -4857,17 +4866,17 @@
|
|
|
4857
4866
|
}
|
|
4858
4867
|
}
|
|
4859
4868
|
.dark\:\[--btn-icon\:var\(--color-primary-dark\)\] {
|
|
4860
|
-
&:where(
|
|
4869
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4861
4870
|
--btn-icon: var(--color-primary-dark);
|
|
4862
4871
|
}
|
|
4863
4872
|
}
|
|
4864
4873
|
.dark\:\[--btn-icon\:var\(--color-white\)\] {
|
|
4865
|
-
&:where(
|
|
4874
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4866
4875
|
--btn-icon: var(--color-white);
|
|
4867
4876
|
}
|
|
4868
4877
|
}
|
|
4869
4878
|
.dark\:\[--focus-outline\:var\(--color-accent-dark\)\]\/80 {
|
|
4870
|
-
&:where(
|
|
4879
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4871
4880
|
--focus-outline: color-mix(
|
|
4872
4881
|
in srgb,
|
|
4873
4882
|
oklch(0.50075 0.19485 19.529999999999998) 80%,
|
|
@@ -4879,7 +4888,7 @@
|
|
|
4879
4888
|
}
|
|
4880
4889
|
}
|
|
4881
4890
|
.dark\:\[--focus-outline\:var\(--color-error-dark\)\]\/80 {
|
|
4882
|
-
&:where(
|
|
4891
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4883
4892
|
--focus-outline: color-mix(
|
|
4884
4893
|
in srgb,
|
|
4885
4894
|
oklch(0.41415 0.16379500000000002 18.08) 80%,
|
|
@@ -4891,7 +4900,7 @@
|
|
|
4891
4900
|
}
|
|
4892
4901
|
}
|
|
4893
4902
|
.dark\:\[--focus-outline\:var\(--color-info-dark\)\]\/80 {
|
|
4894
|
-
&:where(
|
|
4903
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4895
4904
|
--focus-outline: color-mix(
|
|
4896
4905
|
in srgb,
|
|
4897
4906
|
oklch(0.371745 0.10480500000000001 262.35) 80%,
|
|
@@ -4903,12 +4912,12 @@
|
|
|
4903
4912
|
}
|
|
4904
4913
|
}
|
|
4905
4914
|
.dark\:\[--focus-outline\:var\(--color-primary-light\)\] {
|
|
4906
|
-
&:where(
|
|
4915
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4907
4916
|
--focus-outline: var(--color-primary-light);
|
|
4908
4917
|
}
|
|
4909
4918
|
}
|
|
4910
4919
|
.dark\:\[--focus-outline\:var\(--color-secondary\)\]\/55 {
|
|
4911
|
-
&:where(
|
|
4920
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4912
4921
|
--focus-outline: color-mix(in srgb, oklch(0.9267 0.0417 227.89) 55%, transparent);
|
|
4913
4922
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4914
4923
|
--focus-outline: color-mix(in oklab, var(--color-secondary) 55%, transparent);
|
|
@@ -4916,7 +4925,7 @@
|
|
|
4916
4925
|
}
|
|
4917
4926
|
}
|
|
4918
4927
|
.dark\:\[--focus-outline\:var\(--color-success-dark\)\]\/80 {
|
|
4919
|
-
&:where(
|
|
4928
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4920
4929
|
--focus-outline: color-mix(in srgb, oklch(0.452925 0.157165 142.8) 80%, transparent);
|
|
4921
4930
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4922
4931
|
--focus-outline: color-mix(in oklab, var(--color-success-dark) 80%, transparent);
|
|
@@ -4924,7 +4933,7 @@
|
|
|
4924
4933
|
}
|
|
4925
4934
|
}
|
|
4926
4935
|
.dark\:\[--focus-outline\:var\(--color-tertiary\)\]\/80 {
|
|
4927
|
-
&:where(
|
|
4936
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4928
4937
|
--focus-outline: color-mix(in srgb, oklch(0.5751 0.2298 260.76) 80%, transparent);
|
|
4929
4938
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4930
4939
|
--focus-outline: color-mix(in oklab, var(--color-tertiary) 80%, transparent);
|
|
@@ -4932,7 +4941,7 @@
|
|
|
4932
4941
|
}
|
|
4933
4942
|
}
|
|
4934
4943
|
.dark\:\[--focus-outline\:var\(--color-warning-dark\)\]\/80 {
|
|
4935
|
-
&:where(
|
|
4944
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4936
4945
|
--focus-outline: color-mix(in srgb, oklch(0.4812225 0.14424925 43.9973) 80%, transparent);
|
|
4937
4946
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4938
4947
|
--focus-outline: color-mix(in oklab, var(--color-warning-dark) 80%, transparent);
|
|
@@ -4940,12 +4949,12 @@
|
|
|
4940
4949
|
}
|
|
4941
4950
|
}
|
|
4942
4951
|
.dark\:\[--focus-outline\:var\(--color-white\)\] {
|
|
4943
|
-
&:where(
|
|
4952
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4944
4953
|
--focus-outline: var(--color-white);
|
|
4945
4954
|
}
|
|
4946
4955
|
}
|
|
4947
4956
|
.dark\:\[--focus-outline\:var\(--color-white\)\]\/25 {
|
|
4948
|
-
&:where(
|
|
4957
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4949
4958
|
--focus-outline: color-mix(in srgb, #fff 25%, transparent);
|
|
4950
4959
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4951
4960
|
--focus-outline: color-mix(in oklab, var(--color-white) 25%, transparent);
|
|
@@ -4953,22 +4962,22 @@
|
|
|
4953
4962
|
}
|
|
4954
4963
|
}
|
|
4955
4964
|
.dark\:\[--focus-outline\:white\] {
|
|
4956
|
-
&:where(
|
|
4965
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4957
4966
|
--focus-outline: white;
|
|
4958
4967
|
}
|
|
4959
4968
|
}
|
|
4960
4969
|
.dark\:\[--focus-outline\:white\]\/30 {
|
|
4961
|
-
&:where(
|
|
4970
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4962
4971
|
--focus-outline: color-mix(in oklab, white 30%, transparent);
|
|
4963
4972
|
}
|
|
4964
4973
|
}
|
|
4965
4974
|
.dark\:\[--toggle-border\:white\]\/40 {
|
|
4966
|
-
&:where(
|
|
4975
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4967
4976
|
--toggle-border: color-mix(in oklab, white 40%, transparent);
|
|
4968
4977
|
}
|
|
4969
4978
|
}
|
|
4970
4979
|
.dark\:group-hover\:fill-nsw-grey-500 {
|
|
4971
|
-
&:where(
|
|
4980
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4972
4981
|
&:is(:where(.group):hover *) {
|
|
4973
4982
|
@media (hover: hover) {
|
|
4974
4983
|
fill: var(--color-nsw-grey-500);
|
|
@@ -4977,7 +4986,7 @@
|
|
|
4977
4986
|
}
|
|
4978
4987
|
}
|
|
4979
4988
|
.dark\:group-data-active\:bg-white\/15 {
|
|
4980
|
-
&:where(
|
|
4989
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4981
4990
|
&:is(:where(.group)[data-active] *) {
|
|
4982
4991
|
background-color: color-mix(in srgb, #fff 15%, transparent);
|
|
4983
4992
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4987,7 +4996,7 @@
|
|
|
4987
4996
|
}
|
|
4988
4997
|
}
|
|
4989
4998
|
.dark\:group-data-hover\:border-nsw-grey-200\/20 {
|
|
4990
|
-
&:where(
|
|
4999
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4991
5000
|
&:is(:where(.group)[data-hover] *) {
|
|
4992
5001
|
border-color: color-mix(in srgb, oklch(0.9401 0 0) 20%, transparent);
|
|
4993
5002
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4997,7 +5006,7 @@
|
|
|
4997
5006
|
}
|
|
4998
5007
|
}
|
|
4999
5008
|
.dark\:group-data-hover\:bg-white\/10 {
|
|
5000
|
-
&:where(
|
|
5009
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5001
5010
|
&:is(:where(.group)[data-hover] *) {
|
|
5002
5011
|
background-color: color-mix(in srgb, #fff 10%, transparent);
|
|
5003
5012
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5007,7 +5016,7 @@
|
|
|
5007
5016
|
}
|
|
5008
5017
|
}
|
|
5009
5018
|
.dark\:group-data-hover\:bg-white\/20 {
|
|
5010
|
-
&:where(
|
|
5019
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5011
5020
|
&:is(:where(.group)[data-hover] *) {
|
|
5012
5021
|
background-color: color-mix(in srgb, #fff 20%, transparent);
|
|
5013
5022
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5017,7 +5026,7 @@
|
|
|
5017
5026
|
}
|
|
5018
5027
|
}
|
|
5019
5028
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-accent\)\]\/80 {
|
|
5020
|
-
&:where(
|
|
5029
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5021
5030
|
&:is(:where(.group)[data-hover] *) {
|
|
5022
5031
|
--badge-bg: color-mix(in srgb, oklch(0.562 0.2175 20.33) 80%, transparent);
|
|
5023
5032
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5027,7 +5036,7 @@
|
|
|
5027
5036
|
}
|
|
5028
5037
|
}
|
|
5029
5038
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-error\)\]\/80 {
|
|
5030
|
-
&:where(
|
|
5039
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5031
5040
|
&:is(:where(.group)[data-hover] *) {
|
|
5032
5041
|
--badge-bg: color-mix(in srgb, oklch(0.502 0.1927 18.08) 80%, transparent);
|
|
5033
5042
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5037,7 +5046,7 @@
|
|
|
5037
5046
|
}
|
|
5038
5047
|
}
|
|
5039
5048
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-info\)\]\/80 {
|
|
5040
|
-
&:where(
|
|
5049
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5041
5050
|
&:is(:where(.group)[data-hover] *) {
|
|
5042
5051
|
--badge-bg: color-mix(in srgb, oklch(0.4506 0.1233 262.35) 80%, transparent);
|
|
5043
5052
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5047,28 +5056,28 @@
|
|
|
5047
5056
|
}
|
|
5048
5057
|
}
|
|
5049
5058
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-nsw-grey-100\)\] {
|
|
5050
|
-
&:where(
|
|
5059
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5051
5060
|
&:is(:where(.group)[data-hover] *) {
|
|
5052
5061
|
--badge-bg: var(--color-nsw-grey-100);
|
|
5053
5062
|
}
|
|
5054
5063
|
}
|
|
5055
5064
|
}
|
|
5056
5065
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-nsw-grey-200\)\] {
|
|
5057
|
-
&:where(
|
|
5066
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5058
5067
|
&:is(:where(.group)[data-hover] *) {
|
|
5059
5068
|
--badge-bg: var(--color-nsw-grey-200);
|
|
5060
5069
|
}
|
|
5061
5070
|
}
|
|
5062
5071
|
}
|
|
5063
5072
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-primary-light\)\] {
|
|
5064
|
-
&:where(
|
|
5073
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5065
5074
|
&:is(:where(.group)[data-hover] *) {
|
|
5066
5075
|
--badge-bg: var(--color-primary-light);
|
|
5067
5076
|
}
|
|
5068
5077
|
}
|
|
5069
5078
|
}
|
|
5070
5079
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-secondary\)\]\/45 {
|
|
5071
|
-
&:where(
|
|
5080
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5072
5081
|
&:is(:where(.group)[data-hover] *) {
|
|
5073
5082
|
--badge-bg: color-mix(in srgb, oklch(0.9267 0.0417 227.89) 45%, transparent);
|
|
5074
5083
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5078,7 +5087,7 @@
|
|
|
5078
5087
|
}
|
|
5079
5088
|
}
|
|
5080
5089
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-success\)\]\/80 {
|
|
5081
|
-
&:where(
|
|
5090
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5082
5091
|
&:is(:where(.group)[data-hover] *) {
|
|
5083
5092
|
--badge-bg: color-mix(in srgb, oklch(0.549 0.1849 142.8) 80%, transparent);
|
|
5084
5093
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5088,7 +5097,7 @@
|
|
|
5088
5097
|
}
|
|
5089
5098
|
}
|
|
5090
5099
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-tertiary\)\]\/80 {
|
|
5091
|
-
&:where(
|
|
5100
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5092
5101
|
&:is(:where(.group)[data-hover] *) {
|
|
5093
5102
|
--badge-bg: color-mix(in srgb, oklch(0.5751 0.2298 260.76) 80%, transparent);
|
|
5094
5103
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5098,7 +5107,7 @@
|
|
|
5098
5107
|
}
|
|
5099
5108
|
}
|
|
5100
5109
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-warning\)\]\/80 {
|
|
5101
|
-
&:where(
|
|
5110
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5102
5111
|
&:is(:where(.group)[data-hover] *) {
|
|
5103
5112
|
--badge-bg: color-mix(in srgb, oklch(0.5833 0.169705 43.9973) 80%, transparent);
|
|
5104
5113
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5108,21 +5117,21 @@
|
|
|
5108
5117
|
}
|
|
5109
5118
|
}
|
|
5110
5119
|
.dark\:group-data-hover\:\[--badge-bg\:white\]\/20 {
|
|
5111
|
-
&:where(
|
|
5120
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5112
5121
|
&:is(:where(.group)[data-hover] *) {
|
|
5113
5122
|
--badge-bg: color-mix(in oklab, white 20%, transparent);
|
|
5114
5123
|
}
|
|
5115
5124
|
}
|
|
5116
5125
|
}
|
|
5117
5126
|
.dark\:group-data-\[state\=checked\]\:border-nsw-grey-400 {
|
|
5118
|
-
&:where(
|
|
5127
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5119
5128
|
&:is(:where(.group)[data-state='checked'] *) {
|
|
5120
5129
|
border-color: var(--color-nsw-grey-400);
|
|
5121
5130
|
}
|
|
5122
5131
|
}
|
|
5123
5132
|
}
|
|
5124
5133
|
.dark\:before\:hidden {
|
|
5125
|
-
&:where(
|
|
5134
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5126
5135
|
&::before {
|
|
5127
5136
|
content: var(--tw-content);
|
|
5128
5137
|
display: none;
|
|
@@ -5130,7 +5139,7 @@
|
|
|
5130
5139
|
}
|
|
5131
5140
|
}
|
|
5132
5141
|
.dark\:after\:-inset-px {
|
|
5133
|
-
&:where(
|
|
5142
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5134
5143
|
&::after {
|
|
5135
5144
|
content: var(--tw-content);
|
|
5136
5145
|
inset: -1px;
|
|
@@ -5138,7 +5147,7 @@
|
|
|
5138
5147
|
}
|
|
5139
5148
|
}
|
|
5140
5149
|
.dark\:after\:rounded-sm {
|
|
5141
|
-
&:where(
|
|
5150
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5142
5151
|
&::after {
|
|
5143
5152
|
content: var(--tw-content);
|
|
5144
5153
|
border-radius: var(--radius-sm);
|
|
@@ -5146,7 +5155,7 @@
|
|
|
5146
5155
|
}
|
|
5147
5156
|
}
|
|
5148
5157
|
.dark\:hover\:border-nsw-grey-400 {
|
|
5149
|
-
&:where(
|
|
5158
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5150
5159
|
&:hover {
|
|
5151
5160
|
@media (hover: hover) {
|
|
5152
5161
|
border-color: var(--color-nsw-grey-400);
|
|
@@ -5155,7 +5164,7 @@
|
|
|
5155
5164
|
}
|
|
5156
5165
|
}
|
|
5157
5166
|
.dark\:hover\:bg-gray-700 {
|
|
5158
|
-
&:where(
|
|
5167
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5159
5168
|
&:hover {
|
|
5160
5169
|
@media (hover: hover) {
|
|
5161
5170
|
background-color: var(--color-gray-700);
|
|
@@ -5164,7 +5173,7 @@
|
|
|
5164
5173
|
}
|
|
5165
5174
|
}
|
|
5166
5175
|
.dark\:hover\:bg-input\/50 {
|
|
5167
|
-
&:where(
|
|
5176
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5168
5177
|
&:hover {
|
|
5169
5178
|
@media (hover: hover) {
|
|
5170
5179
|
background-color: var(--input);
|
|
@@ -5176,7 +5185,7 @@
|
|
|
5176
5185
|
}
|
|
5177
5186
|
}
|
|
5178
5187
|
.dark\:hover\:bg-nsw-grey-700 {
|
|
5179
|
-
&:where(
|
|
5188
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5180
5189
|
&:hover {
|
|
5181
5190
|
@media (hover: hover) {
|
|
5182
5191
|
background-color: var(--color-nsw-grey-700);
|
|
@@ -5185,7 +5194,7 @@
|
|
|
5185
5194
|
}
|
|
5186
5195
|
}
|
|
5187
5196
|
.dark\:hover\:bg-white\/10 {
|
|
5188
|
-
&:where(
|
|
5197
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5189
5198
|
&:hover {
|
|
5190
5199
|
@media (hover: hover) {
|
|
5191
5200
|
background-color: color-mix(in srgb, #fff 10%, transparent);
|
|
@@ -5197,7 +5206,7 @@
|
|
|
5197
5206
|
}
|
|
5198
5207
|
}
|
|
5199
5208
|
.dark\:hover\:text-slate-300 {
|
|
5200
|
-
&:where(
|
|
5209
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5201
5210
|
&:hover {
|
|
5202
5211
|
@media (hover: hover) {
|
|
5203
5212
|
color: var(--color-slate-300);
|
|
@@ -5206,7 +5215,7 @@
|
|
|
5206
5215
|
}
|
|
5207
5216
|
}
|
|
5208
5217
|
.dark\:hover\:text-white {
|
|
5209
|
-
&:where(
|
|
5218
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5210
5219
|
&:hover {
|
|
5211
5220
|
@media (hover: hover) {
|
|
5212
5221
|
color: var(--color-white);
|
|
@@ -5217,14 +5226,14 @@
|
|
|
5217
5226
|
.hover\:dark\:text-gray-300 {
|
|
5218
5227
|
&:hover {
|
|
5219
5228
|
@media (hover: hover) {
|
|
5220
|
-
&:where(
|
|
5229
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5221
5230
|
color: var(--color-gray-300);
|
|
5222
5231
|
}
|
|
5223
5232
|
}
|
|
5224
5233
|
}
|
|
5225
5234
|
}
|
|
5226
5235
|
.dark\:hover\:outline-white\/10 {
|
|
5227
|
-
&:where(
|
|
5236
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5228
5237
|
&:hover {
|
|
5229
5238
|
@media (hover: hover) {
|
|
5230
5239
|
outline-color: color-mix(in srgb, #fff 10%, transparent);
|
|
@@ -5236,7 +5245,7 @@
|
|
|
5236
5245
|
}
|
|
5237
5246
|
}
|
|
5238
5247
|
.dark\:hover\:\[--toggle-border\:white\]\/50 {
|
|
5239
|
-
&:where(
|
|
5248
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5240
5249
|
&:hover {
|
|
5241
5250
|
@media (hover: hover) {
|
|
5242
5251
|
--toggle-border: color-mix(in oklab, white 50%, transparent);
|
|
@@ -5245,7 +5254,7 @@
|
|
|
5245
5254
|
}
|
|
5246
5255
|
}
|
|
5247
5256
|
.dark\:focus\:outline-nsw-grey-300\/20 {
|
|
5248
|
-
&:where(
|
|
5257
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5249
5258
|
&:focus {
|
|
5250
5259
|
outline-color: color-mix(in srgb, oklch(0.9016 0.0039 294.435) 20%, transparent);
|
|
5251
5260
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5255,28 +5264,28 @@
|
|
|
5255
5264
|
}
|
|
5256
5265
|
}
|
|
5257
5266
|
.dark\:focus\:outline-white {
|
|
5258
|
-
&:where(
|
|
5267
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5259
5268
|
&:focus {
|
|
5260
5269
|
outline-color: var(--color-white);
|
|
5261
5270
|
}
|
|
5262
5271
|
}
|
|
5263
5272
|
}
|
|
5264
5273
|
.dark\:aria-invalid\:ring-error\/40 {
|
|
5265
|
-
&:where(
|
|
5274
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5266
5275
|
&[aria-invalid='true'] {
|
|
5267
5276
|
--tw-ring-color: color-mix(in oklab, oklch(0.502 0.1927 18.08) 40%, transparent);
|
|
5268
5277
|
}
|
|
5269
5278
|
}
|
|
5270
5279
|
}
|
|
5271
5280
|
.dark\:data-active\:bg-white {
|
|
5272
|
-
&:where(
|
|
5281
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5273
5282
|
&[data-active] {
|
|
5274
5283
|
background-color: var(--color-white);
|
|
5275
5284
|
}
|
|
5276
5285
|
}
|
|
5277
5286
|
}
|
|
5278
5287
|
.dark\:data-active\:bg-white\/10 {
|
|
5279
|
-
&:where(
|
|
5288
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5280
5289
|
&[data-active] {
|
|
5281
5290
|
background-color: color-mix(in srgb, #fff 10%, transparent);
|
|
5282
5291
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5286,49 +5295,49 @@
|
|
|
5286
5295
|
}
|
|
5287
5296
|
}
|
|
5288
5297
|
.dark\:data-active\:text-primary {
|
|
5289
|
-
&:where(
|
|
5298
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5290
5299
|
&[data-active] {
|
|
5291
5300
|
color: oklch(0.29 0.1173 259.84);
|
|
5292
5301
|
}
|
|
5293
5302
|
}
|
|
5294
5303
|
}
|
|
5295
5304
|
.dark\:data-active\:\[--btn-icon\:var\(--color-nsw-grey-50\)\] {
|
|
5296
|
-
&:where(
|
|
5305
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5297
5306
|
&[data-active] {
|
|
5298
5307
|
--btn-icon: var(--color-nsw-grey-50);
|
|
5299
5308
|
}
|
|
5300
5309
|
}
|
|
5301
5310
|
}
|
|
5302
5311
|
.dark\:data-active\:\[--btn-icon\:var\(--color-primary\)\] {
|
|
5303
|
-
&:where(
|
|
5312
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5304
5313
|
&[data-active] {
|
|
5305
5314
|
--btn-icon: var(--color-primary);
|
|
5306
5315
|
}
|
|
5307
5316
|
}
|
|
5308
5317
|
}
|
|
5309
5318
|
.dark\:data-active\:\[--btn-icon\:var\(--color-primary-darker\)\] {
|
|
5310
|
-
&:where(
|
|
5319
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5311
5320
|
&[data-active] {
|
|
5312
5321
|
--btn-icon: var(--color-primary-darker);
|
|
5313
5322
|
}
|
|
5314
5323
|
}
|
|
5315
5324
|
}
|
|
5316
5325
|
.dark\:data-active\:\[--btn-icon\:var\(--color-white\)\] {
|
|
5317
|
-
&:where(
|
|
5326
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5318
5327
|
&[data-active] {
|
|
5319
5328
|
--btn-icon: var(--color-white);
|
|
5320
5329
|
}
|
|
5321
5330
|
}
|
|
5322
5331
|
}
|
|
5323
5332
|
.dark\:data-hover\:bg-white {
|
|
5324
|
-
&:where(
|
|
5333
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5325
5334
|
&[data-hover] {
|
|
5326
5335
|
background-color: var(--color-white);
|
|
5327
5336
|
}
|
|
5328
5337
|
}
|
|
5329
5338
|
}
|
|
5330
5339
|
.dark\:data-hover\:bg-white\/10 {
|
|
5331
|
-
&:where(
|
|
5340
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5332
5341
|
&[data-hover] {
|
|
5333
5342
|
background-color: color-mix(in srgb, #fff 10%, transparent);
|
|
5334
5343
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5338,42 +5347,42 @@
|
|
|
5338
5347
|
}
|
|
5339
5348
|
}
|
|
5340
5349
|
.dark\:data-hover\:text-primary {
|
|
5341
|
-
&:where(
|
|
5350
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5342
5351
|
&[data-hover] {
|
|
5343
5352
|
color: oklch(0.29 0.1173 259.84);
|
|
5344
5353
|
}
|
|
5345
5354
|
}
|
|
5346
5355
|
}
|
|
5347
5356
|
.dark\:data-hover\:\[--btn-icon\:var\(--color-nsw-grey-50\)\] {
|
|
5348
|
-
&:where(
|
|
5357
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5349
5358
|
&[data-hover] {
|
|
5350
5359
|
--btn-icon: var(--color-nsw-grey-50);
|
|
5351
5360
|
}
|
|
5352
5361
|
}
|
|
5353
5362
|
}
|
|
5354
5363
|
.dark\:data-hover\:\[--btn-icon\:var\(--color-primary\)\] {
|
|
5355
|
-
&:where(
|
|
5364
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5356
5365
|
&[data-hover] {
|
|
5357
5366
|
--btn-icon: var(--color-primary);
|
|
5358
5367
|
}
|
|
5359
5368
|
}
|
|
5360
5369
|
}
|
|
5361
5370
|
.dark\:data-hover\:\[--btn-icon\:var\(--color-primary-darker\)\] {
|
|
5362
|
-
&:where(
|
|
5371
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5363
5372
|
&[data-hover] {
|
|
5364
5373
|
--btn-icon: var(--color-primary-darker);
|
|
5365
5374
|
}
|
|
5366
5375
|
}
|
|
5367
5376
|
}
|
|
5368
5377
|
.dark\:data-hover\:\[--btn-icon\:var\(--color-white\)\] {
|
|
5369
|
-
&:where(
|
|
5378
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5370
5379
|
&[data-hover] {
|
|
5371
5380
|
--btn-icon: var(--color-white);
|
|
5372
5381
|
}
|
|
5373
5382
|
}
|
|
5374
5383
|
}
|
|
5375
5384
|
.dark\:data-\[state\=active\]\:bg-input\/30 {
|
|
5376
|
-
&:where(
|
|
5385
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5377
5386
|
&[data-state='active'] {
|
|
5378
5387
|
background-color: var(--input);
|
|
5379
5388
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5383,21 +5392,21 @@
|
|
|
5383
5392
|
}
|
|
5384
5393
|
}
|
|
5385
5394
|
.dark\:data-\[state\=active\]\:text-foreground {
|
|
5386
|
-
&:where(
|
|
5395
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5387
5396
|
&[data-state='active'] {
|
|
5388
5397
|
color: var(--foreground);
|
|
5389
5398
|
}
|
|
5390
5399
|
}
|
|
5391
5400
|
}
|
|
5392
5401
|
.dark\:data-\[state\=checked\]\:bg-primary {
|
|
5393
|
-
&:where(
|
|
5402
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5394
5403
|
&[data-state='checked'] {
|
|
5395
5404
|
background-color: oklch(0.29 0.1173 259.84);
|
|
5396
5405
|
}
|
|
5397
5406
|
}
|
|
5398
5407
|
}
|
|
5399
5408
|
.dark\:data-\[state\=on\]\:bg-white\/10 {
|
|
5400
|
-
&:where(
|
|
5409
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5401
5410
|
&[data-state='on'] {
|
|
5402
5411
|
background-color: color-mix(in srgb, #fff 10%, transparent);
|
|
5403
5412
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5407,21 +5416,21 @@
|
|
|
5407
5416
|
}
|
|
5408
5417
|
}
|
|
5409
5418
|
.dark\:data-\[state\=on\]\:text-white {
|
|
5410
|
-
&:where(
|
|
5419
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5411
5420
|
&[data-state='on'] {
|
|
5412
5421
|
color: var(--color-white);
|
|
5413
5422
|
}
|
|
5414
5423
|
}
|
|
5415
5424
|
}
|
|
5416
5425
|
.dark\:data-\[state\=unchecked\]\:bg-foreground {
|
|
5417
|
-
&:where(
|
|
5426
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5418
5427
|
&[data-state='unchecked'] {
|
|
5419
5428
|
background-color: var(--foreground);
|
|
5420
5429
|
}
|
|
5421
5430
|
}
|
|
5422
5431
|
}
|
|
5423
5432
|
.dark\:data-\[state\=unchecked\]\:bg-input\/80 {
|
|
5424
|
-
&:where(
|
|
5433
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5425
5434
|
&[data-state='unchecked'] {
|
|
5426
5435
|
background-color: var(--input);
|
|
5427
5436
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5671,7 +5680,7 @@
|
|
|
5671
5680
|
}
|
|
5672
5681
|
}
|
|
5673
5682
|
.dark\:\[\@supports\(backdrop-filter\:blur\(0\)\)\]\:bg-slate-900\/75 {
|
|
5674
|
-
&:where(
|
|
5683
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5675
5684
|
@supports (backdrop-filter: blur(0)) {
|
|
5676
5685
|
background-color: color-mix(in srgb, oklch(20.8% 0.042 265.755) 75%, transparent);
|
|
5677
5686
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5690,7 +5699,7 @@
|
|
|
5690
5699
|
--input: var(--color-nsw-grey-200);
|
|
5691
5700
|
--ring: var(--color-nsw-grey-600);
|
|
5692
5701
|
}
|
|
5693
|
-
|
|
5702
|
+
[data-theme='dark'] {
|
|
5694
5703
|
--background: var(--color-nsw-grey-900);
|
|
5695
5704
|
--foreground: var(--color-nsw-grey-50);
|
|
5696
5705
|
--muted: var(--color-nsw-grey-600);
|
|
@@ -5715,6 +5724,556 @@
|
|
|
5715
5724
|
display: none;
|
|
5716
5725
|
}
|
|
5717
5726
|
}
|
|
5727
|
+
code[class*='language-'],
|
|
5728
|
+
pre[class*='language-'] {
|
|
5729
|
+
color: #ccc;
|
|
5730
|
+
background: none;
|
|
5731
|
+
font-family:
|
|
5732
|
+
Consolas,
|
|
5733
|
+
Monaco,
|
|
5734
|
+
Andale Mono,
|
|
5735
|
+
Ubuntu Mono,
|
|
5736
|
+
monospace;
|
|
5737
|
+
font-size: 1em;
|
|
5738
|
+
word-wrap: normal;
|
|
5739
|
+
}
|
|
5740
|
+
pre[class*='language-'] {
|
|
5741
|
+
padding: 1em;
|
|
5742
|
+
margin: 0.5em 0;
|
|
5743
|
+
overflow: auto;
|
|
5744
|
+
}
|
|
5745
|
+
:not(pre) > code[class*='language-'],
|
|
5746
|
+
pre[class*='language-'] {
|
|
5747
|
+
background: #2d2d2d;
|
|
5748
|
+
}
|
|
5749
|
+
:not(pre) > code[class*='language-'] {
|
|
5750
|
+
white-space: normal;
|
|
5751
|
+
}
|
|
5752
|
+
.token.block-comment,
|
|
5753
|
+
.token.cdata,
|
|
5754
|
+
.token.comment,
|
|
5755
|
+
.token.doctype,
|
|
5756
|
+
.token.prolog {
|
|
5757
|
+
color: #999;
|
|
5758
|
+
}
|
|
5759
|
+
.token.punctuation {
|
|
5760
|
+
color: #ccc;
|
|
5761
|
+
}
|
|
5762
|
+
.token.attr-name,
|
|
5763
|
+
.token.deleted,
|
|
5764
|
+
.token.namespace,
|
|
5765
|
+
.token.tag {
|
|
5766
|
+
color: #e2777a;
|
|
5767
|
+
}
|
|
5768
|
+
.token.function-name {
|
|
5769
|
+
color: #6196cc;
|
|
5770
|
+
}
|
|
5771
|
+
.token.boolean,
|
|
5772
|
+
.token.function,
|
|
5773
|
+
.token.number {
|
|
5774
|
+
color: #f08d49;
|
|
5775
|
+
}
|
|
5776
|
+
.token.class-name,
|
|
5777
|
+
.token.constant,
|
|
5778
|
+
.token.property,
|
|
5779
|
+
.token.symbol {
|
|
5780
|
+
color: #f8c555;
|
|
5781
|
+
}
|
|
5782
|
+
.token.atrule,
|
|
5783
|
+
.token.builtin,
|
|
5784
|
+
.token.important,
|
|
5785
|
+
.token.keyword,
|
|
5786
|
+
.token.selector {
|
|
5787
|
+
color: #cc99cd;
|
|
5788
|
+
}
|
|
5789
|
+
.token.attr-value,
|
|
5790
|
+
.token.char,
|
|
5791
|
+
.token.regex,
|
|
5792
|
+
.token.string,
|
|
5793
|
+
.token.variable {
|
|
5794
|
+
color: #7ec699;
|
|
5795
|
+
}
|
|
5796
|
+
.token.entity,
|
|
5797
|
+
.token.operator,
|
|
5798
|
+
.token.url {
|
|
5799
|
+
color: #67cdcc;
|
|
5800
|
+
}
|
|
5801
|
+
.token.inserted {
|
|
5802
|
+
color: green;
|
|
5803
|
+
}
|
|
5804
|
+
.code-responsive-wrapper {
|
|
5805
|
+
background-color: #fff;
|
|
5806
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fillRule='evenodd'%3E%3Cg fill='%23d1d5db' fill-opacity='0.4'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
|
|
5807
|
+
}
|
|
5808
|
+
code[class*='language-'],
|
|
5809
|
+
pre[class*='language-'] {
|
|
5810
|
+
margin-bottom: 1.25rem;
|
|
5811
|
+
margin-top: 0;
|
|
5812
|
+
border-radius: 0.5rem;
|
|
5813
|
+
font-size: 0.875rem;
|
|
5814
|
+
line-height: 1.25rem;
|
|
5815
|
+
font-weight: 400;
|
|
5816
|
+
--tw-text-opacity: 1;
|
|
5817
|
+
color: rgb(231 70 148 / var(--tw-text-opacity, 1));
|
|
5818
|
+
font-family:
|
|
5819
|
+
Menlo,
|
|
5820
|
+
ui-monospace,
|
|
5821
|
+
SFMono-Regular,
|
|
5822
|
+
Monaco,
|
|
5823
|
+
Consolas,
|
|
5824
|
+
Liberation Mono,
|
|
5825
|
+
Courier New,
|
|
5826
|
+
monospace;
|
|
5827
|
+
direction: ltr;
|
|
5828
|
+
text-align: left;
|
|
5829
|
+
white-space: pre;
|
|
5830
|
+
word-spacing: normal;
|
|
5831
|
+
word-break: normal;
|
|
5832
|
+
line-height: 1.5;
|
|
5833
|
+
text-shadow: none;
|
|
5834
|
+
-moz-tab-size: 4;
|
|
5835
|
+
-o-tab-size: 4;
|
|
5836
|
+
tab-size: 4;
|
|
5837
|
+
-webkit-hyphens: none;
|
|
5838
|
+
hyphens: none;
|
|
5839
|
+
}
|
|
5840
|
+
div + pre[class*='language-'] {
|
|
5841
|
+
margin-bottom: 0;
|
|
5842
|
+
}
|
|
5843
|
+
.highlight {
|
|
5844
|
+
overflow: hidden;
|
|
5845
|
+
}
|
|
5846
|
+
.highlight-line {
|
|
5847
|
+
display: block;
|
|
5848
|
+
padding-left: 1em;
|
|
5849
|
+
margin-left: -1em;
|
|
5850
|
+
margin-right: -1em;
|
|
5851
|
+
--tw-bg-opacity: 1;
|
|
5852
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
|
5853
|
+
}
|
|
5854
|
+
.highlight pre[class*='language-'] {
|
|
5855
|
+
margin: 1rem 0 2rem;
|
|
5856
|
+
border-radius: 0.75rem;
|
|
5857
|
+
--tw-bg-opacity: 1;
|
|
5858
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
5859
|
+
padding: 1.5rem;
|
|
5860
|
+
font-size: 0.875rem;
|
|
5861
|
+
line-height: 1.25rem;
|
|
5862
|
+
}
|
|
5863
|
+
.code-preview-wrapper + .code-syntax-wrapper > .code-syntax,
|
|
5864
|
+
.code-preview-wrapper
|
|
5865
|
+
+ .code-syntax-wrapper
|
|
5866
|
+
> .code-syntax
|
|
5867
|
+
> .relative
|
|
5868
|
+
> [data-code-wrapper]
|
|
5869
|
+
> .highlight
|
|
5870
|
+
pre[class*='language-'] {
|
|
5871
|
+
margin-top: 0;
|
|
5872
|
+
border-radius: 0;
|
|
5873
|
+
}
|
|
5874
|
+
.code-preview-wrapper + .code-syntax-wrapper {
|
|
5875
|
+
margin-bottom: 1rem;
|
|
5876
|
+
}
|
|
5877
|
+
.code-preview-wrapper
|
|
5878
|
+
+ .code-syntax-wrapper
|
|
5879
|
+
> .code-syntax
|
|
5880
|
+
> .relative
|
|
5881
|
+
> [data-code-wrapper]
|
|
5882
|
+
> .highlight
|
|
5883
|
+
> pre[class*='language-'] {
|
|
5884
|
+
margin: 0;
|
|
5885
|
+
--tw-bg-opacity: 1;
|
|
5886
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
5887
|
+
padding: 1rem;
|
|
5888
|
+
}
|
|
5889
|
+
:not(pre) > code[class*='language-'],
|
|
5890
|
+
pre[class*='language-'] {
|
|
5891
|
+
--tw-bg-opacity: 1;
|
|
5892
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
5893
|
+
}
|
|
5894
|
+
:not(pre) > code[class*='language-'] {
|
|
5895
|
+
padding: 0.1em;
|
|
5896
|
+
border-radius: 0.3em;
|
|
5897
|
+
}
|
|
5898
|
+
.token.cdata,
|
|
5899
|
+
.token.comment,
|
|
5900
|
+
.token.doctype,
|
|
5901
|
+
.token.prolog {
|
|
5902
|
+
--tw-text-opacity: 1;
|
|
5903
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
5904
|
+
}
|
|
5905
|
+
.token.punctuation {
|
|
5906
|
+
--tw-text-opacity: 1;
|
|
5907
|
+
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
5908
|
+
}
|
|
5909
|
+
.namespace {
|
|
5910
|
+
opacity: 0.7;
|
|
5911
|
+
}
|
|
5912
|
+
.token.class-name,
|
|
5913
|
+
.token.keyword,
|
|
5914
|
+
.token.property,
|
|
5915
|
+
.token.tag {
|
|
5916
|
+
--tw-text-opacity: 1;
|
|
5917
|
+
color: rgb(126 58 242 / var(--tw-text-opacity, 1));
|
|
5918
|
+
}
|
|
5919
|
+
.token.boolean,
|
|
5920
|
+
.token.constant {
|
|
5921
|
+
--tw-text-opacity: 1;
|
|
5922
|
+
color: rgb(16 185 129 / var(--tw-text-opacity, 1));
|
|
5923
|
+
}
|
|
5924
|
+
.token.deleted,
|
|
5925
|
+
.token.symbol {
|
|
5926
|
+
--tw-text-opacity: 1;
|
|
5927
|
+
color: rgb(240 82 82 / var(--tw-text-opacity, 1));
|
|
5928
|
+
}
|
|
5929
|
+
.token.number {
|
|
5930
|
+
--tw-text-opacity: 1;
|
|
5931
|
+
color: rgb(231 70 148 / var(--tw-text-opacity, 1));
|
|
5932
|
+
}
|
|
5933
|
+
.token.attr-name,
|
|
5934
|
+
.token.builtin,
|
|
5935
|
+
.token.char,
|
|
5936
|
+
.token.inserted,
|
|
5937
|
+
.token.selector,
|
|
5938
|
+
.token.string {
|
|
5939
|
+
--tw-text-opacity: 1;
|
|
5940
|
+
color: rgb(2 132 199 / var(--tw-text-opacity, 1));
|
|
5941
|
+
}
|
|
5942
|
+
.token.variable {
|
|
5943
|
+
--tw-text-opacity: 1;
|
|
5944
|
+
color: rgb(144 97 249 / var(--tw-text-opacity, 1));
|
|
5945
|
+
}
|
|
5946
|
+
.token.operator {
|
|
5947
|
+
--tw-text-opacity: 1;
|
|
5948
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
5949
|
+
}
|
|
5950
|
+
.token.entity {
|
|
5951
|
+
--tw-text-opacity: 1;
|
|
5952
|
+
color: rgb(227 160 8 / var(--tw-text-opacity, 1));
|
|
5953
|
+
cursor: help;
|
|
5954
|
+
}
|
|
5955
|
+
.token.url {
|
|
5956
|
+
--tw-text-opacity: 1;
|
|
5957
|
+
color: rgb(8 145 178 / var(--tw-text-opacity, 1));
|
|
5958
|
+
}
|
|
5959
|
+
.language-css .token.string,
|
|
5960
|
+
.style .token.string {
|
|
5961
|
+
--tw-text-opacity: 1;
|
|
5962
|
+
color: rgb(240 82 82 / var(--tw-text-opacity, 1));
|
|
5963
|
+
}
|
|
5964
|
+
.token.atrule,
|
|
5965
|
+
.token.attr-value {
|
|
5966
|
+
--tw-text-opacity: 1;
|
|
5967
|
+
color: rgb(5 150 105 / var(--tw-text-opacity, 1));
|
|
5968
|
+
}
|
|
5969
|
+
.token.function {
|
|
5970
|
+
--tw-text-opacity: 1;
|
|
5971
|
+
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
5972
|
+
}
|
|
5973
|
+
.token.regex {
|
|
5974
|
+
color: #e9c062;
|
|
5975
|
+
}
|
|
5976
|
+
.token.important {
|
|
5977
|
+
color: #fd971f;
|
|
5978
|
+
}
|
|
5979
|
+
.token.bold,
|
|
5980
|
+
.token.important {
|
|
5981
|
+
font-weight: 700;
|
|
5982
|
+
}
|
|
5983
|
+
.token.italic {
|
|
5984
|
+
font-style: italic;
|
|
5985
|
+
}
|
|
5986
|
+
.token {
|
|
5987
|
+
--tw-text-opacity: 1;
|
|
5988
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
5989
|
+
}
|
|
5990
|
+
code.language-bash,
|
|
5991
|
+
code.language-tsx,
|
|
5992
|
+
pre.language-bash {
|
|
5993
|
+
--tw-text-opacity: 1;
|
|
5994
|
+
color: rgb(8 145 178 / var(--tw-text-opacity, 1));
|
|
5995
|
+
}
|
|
5996
|
+
code.language-tsx .token.function {
|
|
5997
|
+
--tw-text-opacity: 1;
|
|
5998
|
+
color: rgb(14 159 110 / var(--tw-text-opacity, 1));
|
|
5999
|
+
}
|
|
6000
|
+
code.language-tsx .token.punctuation {
|
|
6001
|
+
--tw-text-opacity: 1;
|
|
6002
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
6003
|
+
}
|
|
6004
|
+
code.language-tsx .token.keyword {
|
|
6005
|
+
--tw-text-opacity: 1;
|
|
6006
|
+
color: rgb(217 70 239 / var(--tw-text-opacity, 1));
|
|
6007
|
+
}
|
|
6008
|
+
code.language-tsx .token.comment {
|
|
6009
|
+
--tw-text-opacity: 1;
|
|
6010
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
6011
|
+
}
|
|
6012
|
+
code.language-tsx .token.class-name,
|
|
6013
|
+
code.language-tsx .token.string {
|
|
6014
|
+
--tw-text-opacity: 1;
|
|
6015
|
+
color: rgb(126 58 242 / var(--tw-text-opacity, 1));
|
|
6016
|
+
}
|
|
6017
|
+
code.language-tsx .token {
|
|
6018
|
+
background: transparent;
|
|
6019
|
+
}
|
|
6020
|
+
code.language-html .token.tag {
|
|
6021
|
+
--tw-text-opacity: 1;
|
|
6022
|
+
color: rgb(162 28 175 / var(--tw-text-opacity, 1));
|
|
6023
|
+
}
|
|
6024
|
+
code.language-html .token.attr-name {
|
|
6025
|
+
color: rgb(75 85 99 / var(--tw-text-opacity, 1));
|
|
6026
|
+
}
|
|
6027
|
+
code.language-html .token.attr-value {
|
|
6028
|
+
--tw-text-opacity: 1;
|
|
6029
|
+
color: rgb(8 145 178 / var(--tw-text-opacity, 1));
|
|
6030
|
+
}
|
|
6031
|
+
code.language-html .token.punctuation {
|
|
6032
|
+
--tw-text-opacity: 1;
|
|
6033
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
6034
|
+
}
|
|
6035
|
+
code.language-html .token.attr-name {
|
|
6036
|
+
--tw-text-opacity: 1;
|
|
6037
|
+
color: rgb(5 122 85 / var(--tw-text-opacity, 1));
|
|
6038
|
+
}
|
|
6039
|
+
code.language-html .token.comment {
|
|
6040
|
+
--tw-text-opacity: 1;
|
|
6041
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
6042
|
+
}
|
|
6043
|
+
#carbonads * {
|
|
6044
|
+
margin: initial;
|
|
6045
|
+
padding: initial;
|
|
6046
|
+
}
|
|
6047
|
+
#carbonads {
|
|
6048
|
+
font-family:
|
|
6049
|
+
-apple-system,
|
|
6050
|
+
BlinkMacSystemFont,
|
|
6051
|
+
Segoe UI,
|
|
6052
|
+
Roboto,
|
|
6053
|
+
Oxygen-Sans,
|
|
6054
|
+
Ubuntu,
|
|
6055
|
+
Cantarell,
|
|
6056
|
+
Helvetica Neue,
|
|
6057
|
+
Helvetica,
|
|
6058
|
+
Arial,
|
|
6059
|
+
sans-serif;
|
|
6060
|
+
margin: 0;
|
|
6061
|
+
display: flex;
|
|
6062
|
+
max-width: 330px;
|
|
6063
|
+
box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.1);
|
|
6064
|
+
z-index: 100;
|
|
6065
|
+
--tw-bg-opacity: 1;
|
|
6066
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
6067
|
+
}
|
|
6068
|
+
#carbonads a {
|
|
6069
|
+
text-decoration: none;
|
|
6070
|
+
}
|
|
6071
|
+
#carbonads a,
|
|
6072
|
+
#carbonads a:hover {
|
|
6073
|
+
color: inherit;
|
|
6074
|
+
}
|
|
6075
|
+
#carbonads span {
|
|
6076
|
+
position: relative;
|
|
6077
|
+
display: block;
|
|
6078
|
+
overflow: hidden;
|
|
6079
|
+
}
|
|
6080
|
+
#carbonads .carbon-wrap {
|
|
6081
|
+
display: flex;
|
|
6082
|
+
}
|
|
6083
|
+
#carbonads .carbon-img {
|
|
6084
|
+
display: block;
|
|
6085
|
+
margin: 0;
|
|
6086
|
+
line-height: 1;
|
|
6087
|
+
}
|
|
6088
|
+
#carbonads .carbon-img img {
|
|
6089
|
+
display: block;
|
|
6090
|
+
}
|
|
6091
|
+
#carbonads .carbon-text {
|
|
6092
|
+
font-size: 13px;
|
|
6093
|
+
padding: 10px;
|
|
6094
|
+
margin-bottom: 16px;
|
|
6095
|
+
line-height: 1.5;
|
|
6096
|
+
text-align: left;
|
|
6097
|
+
}
|
|
6098
|
+
#carbonads .carbon-poweredby {
|
|
6099
|
+
--tw-bg-opacity: 1;
|
|
6100
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
|
6101
|
+
display: block;
|
|
6102
|
+
padding: 6px 8px;
|
|
6103
|
+
text-align: center;
|
|
6104
|
+
text-transform: uppercase;
|
|
6105
|
+
letter-spacing: 0.5px;
|
|
6106
|
+
font-weight: 600;
|
|
6107
|
+
font-size: 8px;
|
|
6108
|
+
line-height: 1;
|
|
6109
|
+
position: absolute;
|
|
6110
|
+
bottom: 0;
|
|
6111
|
+
right: 0;
|
|
6112
|
+
}
|
|
6113
|
+
.dark .code-responsive-wrapper {
|
|
6114
|
+
background-color: #111827;
|
|
6115
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fillRule='evenodd'%3E%3Cg fill='%236b7280' fill-opacity='0.4'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
|
|
6116
|
+
}
|
|
6117
|
+
.dark code[class*='language-'],
|
|
6118
|
+
.dark pre[class*='language-'] {
|
|
6119
|
+
--tw-text-opacity: 1;
|
|
6120
|
+
color: rgb(241 126 184 / var(--tw-text-opacity, 1));
|
|
6121
|
+
}
|
|
6122
|
+
.dark .highlight-line {
|
|
6123
|
+
--tw-bg-opacity: 1;
|
|
6124
|
+
background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
|
|
6125
|
+
}
|
|
6126
|
+
.dark
|
|
6127
|
+
.code-preview-wrapper
|
|
6128
|
+
+ .code-syntax-wrapper
|
|
6129
|
+
> .code-syntax
|
|
6130
|
+
> .relative
|
|
6131
|
+
> [data-code-wrapper]
|
|
6132
|
+
> .highlight
|
|
6133
|
+
> pre[class*='language-'],
|
|
6134
|
+
.dark .highlight pre[class*='language-'],
|
|
6135
|
+
.dark :not(pre) > code[class*='language-'],
|
|
6136
|
+
.dark pre[class*='language-'] {
|
|
6137
|
+
--tw-bg-opacity: 1;
|
|
6138
|
+
background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
|
|
6139
|
+
}
|
|
6140
|
+
.dark .token.cdata,
|
|
6141
|
+
.dark .token.comment,
|
|
6142
|
+
.dark .token.doctype,
|
|
6143
|
+
.dark .token.prolog {
|
|
6144
|
+
--tw-text-opacity: 1;
|
|
6145
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
6146
|
+
}
|
|
6147
|
+
.dark .token.punctuation {
|
|
6148
|
+
--tw-text-opacity: 1;
|
|
6149
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
6150
|
+
}
|
|
6151
|
+
.dark .token.class-name,
|
|
6152
|
+
.dark .token.keyword,
|
|
6153
|
+
.dark .token.property,
|
|
6154
|
+
.dark .token.tag {
|
|
6155
|
+
--tw-text-opacity: 1;
|
|
6156
|
+
color: rgb(172 148 250 / var(--tw-text-opacity, 1));
|
|
6157
|
+
}
|
|
6158
|
+
.dark .token.boolean,
|
|
6159
|
+
.dark .token.constant {
|
|
6160
|
+
--tw-text-opacity: 1;
|
|
6161
|
+
color: rgb(52 211 153 / var(--tw-text-opacity, 1));
|
|
6162
|
+
}
|
|
6163
|
+
.dark .token.deleted,
|
|
6164
|
+
.dark .token.symbol {
|
|
6165
|
+
--tw-text-opacity: 1;
|
|
6166
|
+
color: rgb(249 128 128 / var(--tw-text-opacity, 1));
|
|
6167
|
+
}
|
|
6168
|
+
.dark .token.number {
|
|
6169
|
+
--tw-text-opacity: 1;
|
|
6170
|
+
color: rgb(241 126 184 / var(--tw-text-opacity, 1));
|
|
6171
|
+
}
|
|
6172
|
+
.dark .token.attr-name,
|
|
6173
|
+
.dark .token.builtin,
|
|
6174
|
+
.dark .token.char,
|
|
6175
|
+
.dark .token.inserted,
|
|
6176
|
+
.dark .token.selector,
|
|
6177
|
+
.dark .token.string {
|
|
6178
|
+
--tw-text-opacity: 1;
|
|
6179
|
+
color: rgb(56 189 248 / var(--tw-text-opacity, 1));
|
|
6180
|
+
}
|
|
6181
|
+
.dark .token.variable {
|
|
6182
|
+
--tw-text-opacity: 1;
|
|
6183
|
+
color: rgb(172 148 250 / var(--tw-text-opacity, 1));
|
|
6184
|
+
}
|
|
6185
|
+
.dark .token.operator {
|
|
6186
|
+
--tw-text-opacity: 1;
|
|
6187
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
6188
|
+
}
|
|
6189
|
+
.dark .token.entity {
|
|
6190
|
+
--tw-text-opacity: 1;
|
|
6191
|
+
color: rgb(250 202 21 / var(--tw-text-opacity, 1));
|
|
6192
|
+
}
|
|
6193
|
+
.dark .token.url {
|
|
6194
|
+
--tw-text-opacity: 1;
|
|
6195
|
+
color: rgb(6 182 212 / var(--tw-text-opacity, 1));
|
|
6196
|
+
}
|
|
6197
|
+
.dark .language-css .token.string,
|
|
6198
|
+
.dark .style .token.string {
|
|
6199
|
+
--tw-text-opacity: 1;
|
|
6200
|
+
color: rgb(249 128 128 / var(--tw-text-opacity, 1));
|
|
6201
|
+
}
|
|
6202
|
+
.dark .token.atrule,
|
|
6203
|
+
.dark .token.attr-value {
|
|
6204
|
+
--tw-text-opacity: 1;
|
|
6205
|
+
color: rgb(110 231 183 / var(--tw-text-opacity, 1));
|
|
6206
|
+
}
|
|
6207
|
+
.dark .token.function {
|
|
6208
|
+
--tw-text-opacity: 1;
|
|
6209
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
6210
|
+
}
|
|
6211
|
+
.dark .token {
|
|
6212
|
+
--tw-text-opacity: 1;
|
|
6213
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
6214
|
+
}
|
|
6215
|
+
.dark code.language-bash,
|
|
6216
|
+
.dark code.language-tsx,
|
|
6217
|
+
.dark pre.language-bash {
|
|
6218
|
+
--tw-text-opacity: 1;
|
|
6219
|
+
color: rgb(34 211 238 / var(--tw-text-opacity, 1));
|
|
6220
|
+
}
|
|
6221
|
+
.dark code.language-tsx .token.function {
|
|
6222
|
+
--tw-text-opacity: 1;
|
|
6223
|
+
color: rgb(132 225 188 / var(--tw-text-opacity, 1));
|
|
6224
|
+
}
|
|
6225
|
+
.dark code.language-tsx .token.punctuation {
|
|
6226
|
+
--tw-text-opacity: 1;
|
|
6227
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
6228
|
+
}
|
|
6229
|
+
.dark code.language-tsx .token.keyword {
|
|
6230
|
+
--tw-text-opacity: 1;
|
|
6231
|
+
color: rgb(232 121 249 / var(--tw-text-opacity, 1));
|
|
6232
|
+
}
|
|
6233
|
+
.dark code.language-tsx .token.comment {
|
|
6234
|
+
--tw-text-opacity: 1;
|
|
6235
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
6236
|
+
}
|
|
6237
|
+
.dark code.language-tsx .token.class-name,
|
|
6238
|
+
.dark code.language-tsx .token.string {
|
|
6239
|
+
--tw-text-opacity: 1;
|
|
6240
|
+
color: rgb(172 148 250 / var(--tw-text-opacity, 1));
|
|
6241
|
+
}
|
|
6242
|
+
.dark code.language-html .token.tag {
|
|
6243
|
+
--tw-text-opacity: 1;
|
|
6244
|
+
color: rgb(232 121 249 / var(--tw-text-opacity, 1));
|
|
6245
|
+
}
|
|
6246
|
+
.dark code.language-html .token.attr-name {
|
|
6247
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
6248
|
+
}
|
|
6249
|
+
.dark code.language-html .token.attr-value {
|
|
6250
|
+
--tw-text-opacity: 1;
|
|
6251
|
+
color: rgb(34 211 238 / var(--tw-text-opacity, 1));
|
|
6252
|
+
}
|
|
6253
|
+
.dark code.language-html .token.punctuation {
|
|
6254
|
+
--tw-text-opacity: 1;
|
|
6255
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
6256
|
+
}
|
|
6257
|
+
.dark code.language-html .token.attr-name {
|
|
6258
|
+
--tw-text-opacity: 1;
|
|
6259
|
+
color: rgb(49 196 141 / var(--tw-text-opacity, 1));
|
|
6260
|
+
}
|
|
6261
|
+
.dark code.language-html .token.comment {
|
|
6262
|
+
--tw-text-opacity: 1;
|
|
6263
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
6264
|
+
}
|
|
6265
|
+
.dark #carbonads {
|
|
6266
|
+
--tw-bg-opacity: 1;
|
|
6267
|
+
--tw-text-opacity: 1;
|
|
6268
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
6269
|
+
}
|
|
6270
|
+
.dark #carbonads,
|
|
6271
|
+
.dark #carbonads .carbon-poweredby {
|
|
6272
|
+
background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
|
|
6273
|
+
}
|
|
6274
|
+
.dark #carbonads .carbon-poweredby {
|
|
6275
|
+
--tw-bg-opacity: 1;
|
|
6276
|
+
}
|
|
5718
6277
|
@keyframes enter {
|
|
5719
6278
|
from {
|
|
5720
6279
|
opacity: var(--tw-enter-opacity, 1);
|