@nswds/app 1.16.1 → 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 +2 -2
- package/dist/index.css +0 -552
- package/dist/index.css.map +0 -1
package/dist/styles.css
CHANGED
|
@@ -804,6 +804,9 @@
|
|
|
804
804
|
.w-72 {
|
|
805
805
|
width: calc(var(--spacing) * 72);
|
|
806
806
|
}
|
|
807
|
+
.w-80 {
|
|
808
|
+
width: calc(var(--spacing) * 80);
|
|
809
|
+
}
|
|
807
810
|
.w-\[44px\] {
|
|
808
811
|
width: 44px;
|
|
809
812
|
}
|
|
@@ -888,6 +891,9 @@
|
|
|
888
891
|
.flex-shrink-0 {
|
|
889
892
|
flex-shrink: 0;
|
|
890
893
|
}
|
|
894
|
+
.shrink {
|
|
895
|
+
flex-shrink: 1;
|
|
896
|
+
}
|
|
891
897
|
.shrink-0 {
|
|
892
898
|
flex-shrink: 0;
|
|
893
899
|
}
|
|
@@ -1727,6 +1733,9 @@
|
|
|
1727
1733
|
.text-gray-500 {
|
|
1728
1734
|
color: var(--color-gray-500);
|
|
1729
1735
|
}
|
|
1736
|
+
.text-gray-600 {
|
|
1737
|
+
color: var(--color-gray-600);
|
|
1738
|
+
}
|
|
1730
1739
|
.text-gray-800 {
|
|
1731
1740
|
color: var(--color-gray-800);
|
|
1732
1741
|
}
|
|
@@ -4431,27 +4440,27 @@
|
|
|
4431
4440
|
}
|
|
4432
4441
|
}
|
|
4433
4442
|
.dark\:block {
|
|
4434
|
-
&:where(
|
|
4443
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4435
4444
|
display: block;
|
|
4436
4445
|
}
|
|
4437
4446
|
}
|
|
4438
4447
|
.dark\:hidden {
|
|
4439
|
-
&:where(
|
|
4448
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4440
4449
|
display: none;
|
|
4441
4450
|
}
|
|
4442
4451
|
}
|
|
4443
4452
|
.dark\:border-gray-600 {
|
|
4444
|
-
&:where(
|
|
4453
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4445
4454
|
border-color: var(--color-gray-600);
|
|
4446
4455
|
}
|
|
4447
4456
|
}
|
|
4448
4457
|
.dark\:border-nsw-grey-50 {
|
|
4449
|
-
&:where(
|
|
4458
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4450
4459
|
border-color: var(--color-nsw-grey-50);
|
|
4451
4460
|
}
|
|
4452
4461
|
}
|
|
4453
4462
|
.dark\:border-nsw-grey-200\/10 {
|
|
4454
|
-
&:where(
|
|
4463
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4455
4464
|
border-color: color-mix(in srgb, oklch(0.9401 0 0) 10%, transparent);
|
|
4456
4465
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4457
4466
|
border-color: color-mix(in oklab, var(--color-nsw-grey-200) 10%, transparent);
|
|
@@ -4459,7 +4468,7 @@
|
|
|
4459
4468
|
}
|
|
4460
4469
|
}
|
|
4461
4470
|
.dark\:border-nsw-grey-200\/15 {
|
|
4462
|
-
&:where(
|
|
4471
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4463
4472
|
border-color: color-mix(in srgb, oklch(0.9401 0 0) 15%, transparent);
|
|
4464
4473
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4465
4474
|
border-color: color-mix(in oklab, var(--color-nsw-grey-200) 15%, transparent);
|
|
@@ -4467,7 +4476,7 @@
|
|
|
4467
4476
|
}
|
|
4468
4477
|
}
|
|
4469
4478
|
.dark\:border-nsw-grey-200\/20 {
|
|
4470
|
-
&:where(
|
|
4479
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4471
4480
|
border-color: color-mix(in srgb, oklch(0.9401 0 0) 20%, transparent);
|
|
4472
4481
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4473
4482
|
border-color: color-mix(in oklab, var(--color-nsw-grey-200) 20%, transparent);
|
|
@@ -4475,17 +4484,17 @@
|
|
|
4475
4484
|
}
|
|
4476
4485
|
}
|
|
4477
4486
|
.dark\:border-slate-800 {
|
|
4478
|
-
&:where(
|
|
4487
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4479
4488
|
border-color: var(--color-slate-800);
|
|
4480
4489
|
}
|
|
4481
4490
|
}
|
|
4482
4491
|
.dark\:border-white {
|
|
4483
|
-
&:where(
|
|
4492
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4484
4493
|
border-color: var(--color-white);
|
|
4485
4494
|
}
|
|
4486
4495
|
}
|
|
4487
4496
|
.dark\:border-white\/5 {
|
|
4488
|
-
&:where(
|
|
4497
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4489
4498
|
border-color: color-mix(in srgb, #fff 5%, transparent);
|
|
4490
4499
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4491
4500
|
border-color: color-mix(in oklab, var(--color-white) 5%, transparent);
|
|
@@ -4493,37 +4502,37 @@
|
|
|
4493
4502
|
}
|
|
4494
4503
|
}
|
|
4495
4504
|
.dark\:bg-\(--badge-bg\) {
|
|
4496
|
-
&:where(
|
|
4505
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4497
4506
|
background-color: var(--badge-bg);
|
|
4498
4507
|
}
|
|
4499
4508
|
}
|
|
4500
4509
|
.dark\:bg-\(--btn-bg\) {
|
|
4501
|
-
&:where(
|
|
4510
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4502
4511
|
background-color: var(--btn-bg);
|
|
4503
4512
|
}
|
|
4504
4513
|
}
|
|
4505
4514
|
.dark\:bg-blue-950 {
|
|
4506
|
-
&:where(
|
|
4515
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4507
4516
|
background-color: var(--color-blue-950);
|
|
4508
4517
|
}
|
|
4509
4518
|
}
|
|
4510
4519
|
.dark\:bg-gray-700 {
|
|
4511
|
-
&:where(
|
|
4520
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4512
4521
|
background-color: var(--color-gray-700);
|
|
4513
4522
|
}
|
|
4514
4523
|
}
|
|
4515
4524
|
.dark\:bg-gray-800 {
|
|
4516
|
-
&:where(
|
|
4525
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4517
4526
|
background-color: var(--color-gray-800);
|
|
4518
4527
|
}
|
|
4519
4528
|
}
|
|
4520
4529
|
.dark\:bg-gray-900 {
|
|
4521
|
-
&:where(
|
|
4530
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4522
4531
|
background-color: var(--color-gray-900);
|
|
4523
4532
|
}
|
|
4524
4533
|
}
|
|
4525
4534
|
.dark\:bg-input\/30 {
|
|
4526
|
-
&:where(
|
|
4535
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4527
4536
|
background-color: var(--input);
|
|
4528
4537
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4529
4538
|
background-color: color-mix(in oklab, var(--input) 30%, transparent);
|
|
@@ -4531,7 +4540,7 @@
|
|
|
4531
4540
|
}
|
|
4532
4541
|
}
|
|
4533
4542
|
.dark\:bg-nsw-grey-100\/20 {
|
|
4534
|
-
&:where(
|
|
4543
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4535
4544
|
background-color: color-mix(in srgb, oklch(0.9700500000000001 0 0) 20%, transparent);
|
|
4536
4545
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4537
4546
|
background-color: color-mix(in oklab, var(--color-nsw-grey-100) 20%, transparent);
|
|
@@ -4539,12 +4548,12 @@
|
|
|
4539
4548
|
}
|
|
4540
4549
|
}
|
|
4541
4550
|
.dark\:bg-nsw-grey-800 {
|
|
4542
|
-
&:where(
|
|
4551
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4543
4552
|
background-color: var(--color-nsw-grey-800);
|
|
4544
4553
|
}
|
|
4545
4554
|
}
|
|
4546
4555
|
.dark\:bg-slate-900\/95 {
|
|
4547
|
-
&:where(
|
|
4556
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4548
4557
|
background-color: color-mix(in srgb, oklch(20.8% 0.042 265.755) 95%, transparent);
|
|
4549
4558
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4550
4559
|
background-color: color-mix(in oklab, var(--color-slate-900) 95%, transparent);
|
|
@@ -4552,12 +4561,12 @@
|
|
|
4552
4561
|
}
|
|
4553
4562
|
}
|
|
4554
4563
|
.dark\:bg-transparent {
|
|
4555
|
-
&:where(
|
|
4564
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4556
4565
|
background-color: transparent;
|
|
4557
4566
|
}
|
|
4558
4567
|
}
|
|
4559
4568
|
.dark\:bg-white\/15 {
|
|
4560
|
-
&:where(
|
|
4569
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4561
4570
|
background-color: color-mix(in srgb, #fff 15%, transparent);
|
|
4562
4571
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4563
4572
|
background-color: color-mix(in oklab, var(--color-white) 15%, transparent);
|
|
@@ -4565,67 +4574,67 @@
|
|
|
4565
4574
|
}
|
|
4566
4575
|
}
|
|
4567
4576
|
.dark\:fill-nsw-grey-100 {
|
|
4568
|
-
&:where(
|
|
4577
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4569
4578
|
fill: var(--color-nsw-grey-100);
|
|
4570
4579
|
}
|
|
4571
4580
|
}
|
|
4572
4581
|
.dark\:fill-white {
|
|
4573
|
-
&:where(
|
|
4582
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4574
4583
|
fill: var(--color-white);
|
|
4575
4584
|
}
|
|
4576
4585
|
}
|
|
4577
4586
|
.dark\:text-gray-400 {
|
|
4578
|
-
&:where(
|
|
4587
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4579
4588
|
color: var(--color-gray-400);
|
|
4580
4589
|
}
|
|
4581
4590
|
}
|
|
4582
4591
|
.dark\:text-muted-foreground {
|
|
4583
|
-
&:where(
|
|
4592
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4584
4593
|
color: var(--muted-foreground);
|
|
4585
4594
|
}
|
|
4586
4595
|
}
|
|
4587
4596
|
.dark\:text-nsw-grey-200 {
|
|
4588
|
-
&:where(
|
|
4597
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4589
4598
|
color: var(--color-nsw-grey-200);
|
|
4590
4599
|
}
|
|
4591
4600
|
}
|
|
4592
4601
|
.dark\:text-nsw-grey-400 {
|
|
4593
|
-
&:where(
|
|
4602
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4594
4603
|
color: var(--color-nsw-grey-400);
|
|
4595
4604
|
}
|
|
4596
4605
|
}
|
|
4597
4606
|
.dark\:text-nsw-grey-800 {
|
|
4598
|
-
&:where(
|
|
4607
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4599
4608
|
color: var(--color-nsw-grey-800);
|
|
4600
4609
|
}
|
|
4601
4610
|
}
|
|
4602
4611
|
.dark\:text-primary {
|
|
4603
|
-
&:where(
|
|
4612
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4604
4613
|
color: oklch(0.29 0.1173 259.84);
|
|
4605
4614
|
}
|
|
4606
4615
|
}
|
|
4607
4616
|
.dark\:text-primary-dark {
|
|
4608
|
-
&:where(
|
|
4617
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4609
4618
|
color: oklch(0.23925 0.099705 259.84);
|
|
4610
4619
|
}
|
|
4611
4620
|
}
|
|
4612
4621
|
.dark\:text-secondary {
|
|
4613
|
-
&:where(
|
|
4622
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4614
4623
|
color: oklch(0.9267 0.0417 227.89);
|
|
4615
4624
|
}
|
|
4616
4625
|
}
|
|
4617
4626
|
.dark\:text-slate-400 {
|
|
4618
|
-
&:where(
|
|
4627
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4619
4628
|
color: var(--color-slate-400);
|
|
4620
4629
|
}
|
|
4621
4630
|
}
|
|
4622
4631
|
.dark\:text-white {
|
|
4623
|
-
&:where(
|
|
4632
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4624
4633
|
color: var(--color-white);
|
|
4625
4634
|
}
|
|
4626
4635
|
}
|
|
4627
4636
|
.dark\:text-white\/80 {
|
|
4628
|
-
&:where(
|
|
4637
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4629
4638
|
color: color-mix(in srgb, #fff 80%, transparent);
|
|
4630
4639
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4631
4640
|
color: color-mix(in oklab, var(--color-white) 80%, transparent);
|
|
@@ -4633,7 +4642,7 @@
|
|
|
4633
4642
|
}
|
|
4634
4643
|
}
|
|
4635
4644
|
.dark\:shadow-none {
|
|
4636
|
-
&:where(
|
|
4645
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4637
4646
|
--tw-shadow: 0 0 #0000;
|
|
4638
4647
|
box-shadow:
|
|
4639
4648
|
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
@@ -4641,7 +4650,7 @@
|
|
|
4641
4650
|
}
|
|
4642
4651
|
}
|
|
4643
4652
|
.dark\:backdrop-blur-sm {
|
|
4644
|
-
&:where(
|
|
4653
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4645
4654
|
--tw-backdrop-blur: blur(var(--blur-sm));
|
|
4646
4655
|
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
|
|
4647
4656
|
var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,)
|
|
@@ -4654,7 +4663,7 @@
|
|
|
4654
4663
|
}
|
|
4655
4664
|
}
|
|
4656
4665
|
.dark\:\[--badge-bg\:var\(--color-accent\)\]\/50 {
|
|
4657
|
-
&:where(
|
|
4666
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4658
4667
|
--badge-bg: color-mix(in srgb, oklch(0.562 0.2175 20.33) 50%, transparent);
|
|
4659
4668
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4660
4669
|
--badge-bg: color-mix(in oklab, var(--color-accent) 50%, transparent);
|
|
@@ -4662,7 +4671,7 @@
|
|
|
4662
4671
|
}
|
|
4663
4672
|
}
|
|
4664
4673
|
.dark\:\[--badge-bg\:var\(--color-error\)\]\/50 {
|
|
4665
|
-
&:where(
|
|
4674
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4666
4675
|
--badge-bg: color-mix(in srgb, oklch(0.502 0.1927 18.08) 50%, transparent);
|
|
4667
4676
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4668
4677
|
--badge-bg: color-mix(in oklab, var(--color-error) 50%, transparent);
|
|
@@ -4670,7 +4679,7 @@
|
|
|
4670
4679
|
}
|
|
4671
4680
|
}
|
|
4672
4681
|
.dark\:\[--badge-bg\:var\(--color-info\)\]\/50 {
|
|
4673
|
-
&:where(
|
|
4682
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4674
4683
|
--badge-bg: color-mix(in srgb, oklch(0.4506 0.1233 262.35) 50%, transparent);
|
|
4675
4684
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4676
4685
|
--badge-bg: color-mix(in oklab, var(--color-info) 50%, transparent);
|
|
@@ -4678,12 +4687,12 @@
|
|
|
4678
4687
|
}
|
|
4679
4688
|
}
|
|
4680
4689
|
.dark\:\[--badge-bg\:var\(--color-nsw-grey-100\)\] {
|
|
4681
|
-
&:where(
|
|
4690
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4682
4691
|
--badge-bg: var(--color-nsw-grey-100);
|
|
4683
4692
|
}
|
|
4684
4693
|
}
|
|
4685
4694
|
.dark\:\[--badge-bg\:var\(--color-primary\)\]\/90 {
|
|
4686
|
-
&:where(
|
|
4695
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4687
4696
|
--badge-bg: color-mix(in srgb, oklch(0.29 0.1173 259.84) 90%, transparent);
|
|
4688
4697
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4689
4698
|
--badge-bg: color-mix(in oklab, var(--color-primary) 90%, transparent);
|
|
@@ -4691,7 +4700,7 @@
|
|
|
4691
4700
|
}
|
|
4692
4701
|
}
|
|
4693
4702
|
.dark\:\[--badge-bg\:var\(--color-secondary\)\]\/30 {
|
|
4694
|
-
&:where(
|
|
4703
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4695
4704
|
--badge-bg: color-mix(in srgb, oklch(0.9267 0.0417 227.89) 30%, transparent);
|
|
4696
4705
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4697
4706
|
--badge-bg: color-mix(in oklab, var(--color-secondary) 30%, transparent);
|
|
@@ -4699,7 +4708,7 @@
|
|
|
4699
4708
|
}
|
|
4700
4709
|
}
|
|
4701
4710
|
.dark\:\[--badge-bg\:var\(--color-success\)\]\/50 {
|
|
4702
|
-
&:where(
|
|
4711
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4703
4712
|
--badge-bg: color-mix(in srgb, oklch(0.549 0.1849 142.8) 50%, transparent);
|
|
4704
4713
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4705
4714
|
--badge-bg: color-mix(in oklab, var(--color-success) 50%, transparent);
|
|
@@ -4707,7 +4716,7 @@
|
|
|
4707
4716
|
}
|
|
4708
4717
|
}
|
|
4709
4718
|
.dark\:\[--badge-bg\:var\(--color-tertiary\)\]\/50 {
|
|
4710
|
-
&:where(
|
|
4719
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4711
4720
|
--badge-bg: color-mix(in srgb, oklch(0.5751 0.2298 260.76) 50%, transparent);
|
|
4712
4721
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4713
4722
|
--badge-bg: color-mix(in oklab, var(--color-tertiary) 50%, transparent);
|
|
@@ -4715,7 +4724,7 @@
|
|
|
4715
4724
|
}
|
|
4716
4725
|
}
|
|
4717
4726
|
.dark\:\[--badge-bg\:var\(--color-warning\)\]\/50 {
|
|
4718
|
-
&:where(
|
|
4727
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4719
4728
|
--badge-bg: color-mix(in srgb, oklch(0.5833 0.169705 43.9973) 50%, transparent);
|
|
4720
4729
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4721
4730
|
--badge-bg: color-mix(in oklab, var(--color-warning) 50%, transparent);
|
|
@@ -4723,37 +4732,37 @@
|
|
|
4723
4732
|
}
|
|
4724
4733
|
}
|
|
4725
4734
|
.dark\:\[--badge-bg\:var\(--color-white\)\] {
|
|
4726
|
-
&:where(
|
|
4735
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4727
4736
|
--badge-bg: var(--color-white);
|
|
4728
4737
|
}
|
|
4729
4738
|
}
|
|
4730
4739
|
.dark\:\[--badge-bg\:white\]\/15 {
|
|
4731
|
-
&:where(
|
|
4740
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4732
4741
|
--badge-bg: color-mix(in oklab, white 15%, transparent);
|
|
4733
4742
|
}
|
|
4734
4743
|
}
|
|
4735
4744
|
.dark\:\[--btn-bg\:var\(--color-nsw-grey-600\)\] {
|
|
4736
|
-
&:where(
|
|
4745
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4737
4746
|
--btn-bg: var(--color-nsw-grey-600);
|
|
4738
4747
|
}
|
|
4739
4748
|
}
|
|
4740
4749
|
.dark\:\[--btn-bg\:var\(--color-nsw-grey-800\)\] {
|
|
4741
|
-
&:where(
|
|
4750
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4742
4751
|
--btn-bg: var(--color-nsw-grey-800);
|
|
4743
4752
|
}
|
|
4744
4753
|
}
|
|
4745
4754
|
.dark\:\[--btn-bg\:var\(--color-primary-light\)\] {
|
|
4746
|
-
&:where(
|
|
4755
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4747
4756
|
--btn-bg: var(--color-primary-light);
|
|
4748
4757
|
}
|
|
4749
4758
|
}
|
|
4750
4759
|
.dark\:\[--btn-bg\:white\] {
|
|
4751
|
-
&:where(
|
|
4760
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4752
4761
|
--btn-bg: white;
|
|
4753
4762
|
}
|
|
4754
4763
|
}
|
|
4755
4764
|
.dark\:\[--btn-hover-overlay\:var\(--color-nsw-grey-800\)\]\/5 {
|
|
4756
|
-
&:where(
|
|
4765
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4757
4766
|
--btn-hover-overlay: color-mix(in srgb, oklch(0.2694 0.0104 242.08) 5%, transparent);
|
|
4758
4767
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4759
4768
|
--btn-hover-overlay: color-mix(in oklab, var(--color-nsw-grey-800) 5%, transparent);
|
|
@@ -4761,7 +4770,7 @@
|
|
|
4761
4770
|
}
|
|
4762
4771
|
}
|
|
4763
4772
|
.dark\:\[--btn-hover-overlay\:var\(--color-primary-dark\)\]\/5 {
|
|
4764
|
-
&:where(
|
|
4773
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4765
4774
|
--btn-hover-overlay: color-mix(in srgb, oklch(0.23925 0.099705 259.84) 5%, transparent);
|
|
4766
4775
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4767
4776
|
--btn-hover-overlay: color-mix(in oklab, var(--color-primary-dark) 5%, transparent);
|
|
@@ -4769,7 +4778,7 @@
|
|
|
4769
4778
|
}
|
|
4770
4779
|
}
|
|
4771
4780
|
.dark\:\[--btn-hover-overlay\:var\(--color-white\)\]\/5 {
|
|
4772
|
-
&:where(
|
|
4781
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4773
4782
|
--btn-hover-overlay: color-mix(in srgb, #fff 5%, transparent);
|
|
4774
4783
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4775
4784
|
--btn-hover-overlay: color-mix(in oklab, var(--color-white) 5%, transparent);
|
|
@@ -4777,17 +4786,17 @@
|
|
|
4777
4786
|
}
|
|
4778
4787
|
}
|
|
4779
4788
|
.dark\:\[--btn-icon\:var\(--color-primary-dark\)\] {
|
|
4780
|
-
&:where(
|
|
4789
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4781
4790
|
--btn-icon: var(--color-primary-dark);
|
|
4782
4791
|
}
|
|
4783
4792
|
}
|
|
4784
4793
|
.dark\:\[--btn-icon\:var\(--color-white\)\] {
|
|
4785
|
-
&:where(
|
|
4794
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4786
4795
|
--btn-icon: var(--color-white);
|
|
4787
4796
|
}
|
|
4788
4797
|
}
|
|
4789
4798
|
.dark\:\[--focus-outline\:var\(--color-accent-dark\)\]\/80 {
|
|
4790
|
-
&:where(
|
|
4799
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4791
4800
|
--focus-outline: color-mix(
|
|
4792
4801
|
in srgb,
|
|
4793
4802
|
oklch(0.50075 0.19485 19.529999999999998) 80%,
|
|
@@ -4799,7 +4808,7 @@
|
|
|
4799
4808
|
}
|
|
4800
4809
|
}
|
|
4801
4810
|
.dark\:\[--focus-outline\:var\(--color-error-dark\)\]\/80 {
|
|
4802
|
-
&:where(
|
|
4811
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4803
4812
|
--focus-outline: color-mix(
|
|
4804
4813
|
in srgb,
|
|
4805
4814
|
oklch(0.41415 0.16379500000000002 18.08) 80%,
|
|
@@ -4811,7 +4820,7 @@
|
|
|
4811
4820
|
}
|
|
4812
4821
|
}
|
|
4813
4822
|
.dark\:\[--focus-outline\:var\(--color-info-dark\)\]\/80 {
|
|
4814
|
-
&:where(
|
|
4823
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4815
4824
|
--focus-outline: color-mix(
|
|
4816
4825
|
in srgb,
|
|
4817
4826
|
oklch(0.371745 0.10480500000000001 262.35) 80%,
|
|
@@ -4823,12 +4832,12 @@
|
|
|
4823
4832
|
}
|
|
4824
4833
|
}
|
|
4825
4834
|
.dark\:\[--focus-outline\:var\(--color-primary-light\)\] {
|
|
4826
|
-
&:where(
|
|
4835
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4827
4836
|
--focus-outline: var(--color-primary-light);
|
|
4828
4837
|
}
|
|
4829
4838
|
}
|
|
4830
4839
|
.dark\:\[--focus-outline\:var\(--color-secondary\)\]\/55 {
|
|
4831
|
-
&:where(
|
|
4840
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4832
4841
|
--focus-outline: color-mix(in srgb, oklch(0.9267 0.0417 227.89) 55%, transparent);
|
|
4833
4842
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4834
4843
|
--focus-outline: color-mix(in oklab, var(--color-secondary) 55%, transparent);
|
|
@@ -4836,7 +4845,7 @@
|
|
|
4836
4845
|
}
|
|
4837
4846
|
}
|
|
4838
4847
|
.dark\:\[--focus-outline\:var\(--color-success-dark\)\]\/80 {
|
|
4839
|
-
&:where(
|
|
4848
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4840
4849
|
--focus-outline: color-mix(in srgb, oklch(0.452925 0.157165 142.8) 80%, transparent);
|
|
4841
4850
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4842
4851
|
--focus-outline: color-mix(in oklab, var(--color-success-dark) 80%, transparent);
|
|
@@ -4844,7 +4853,7 @@
|
|
|
4844
4853
|
}
|
|
4845
4854
|
}
|
|
4846
4855
|
.dark\:\[--focus-outline\:var\(--color-tertiary\)\]\/80 {
|
|
4847
|
-
&:where(
|
|
4856
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4848
4857
|
--focus-outline: color-mix(in srgb, oklch(0.5751 0.2298 260.76) 80%, transparent);
|
|
4849
4858
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4850
4859
|
--focus-outline: color-mix(in oklab, var(--color-tertiary) 80%, transparent);
|
|
@@ -4852,7 +4861,7 @@
|
|
|
4852
4861
|
}
|
|
4853
4862
|
}
|
|
4854
4863
|
.dark\:\[--focus-outline\:var\(--color-warning-dark\)\]\/80 {
|
|
4855
|
-
&:where(
|
|
4864
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4856
4865
|
--focus-outline: color-mix(in srgb, oklch(0.4812225 0.14424925 43.9973) 80%, transparent);
|
|
4857
4866
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4858
4867
|
--focus-outline: color-mix(in oklab, var(--color-warning-dark) 80%, transparent);
|
|
@@ -4860,12 +4869,12 @@
|
|
|
4860
4869
|
}
|
|
4861
4870
|
}
|
|
4862
4871
|
.dark\:\[--focus-outline\:var\(--color-white\)\] {
|
|
4863
|
-
&:where(
|
|
4872
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4864
4873
|
--focus-outline: var(--color-white);
|
|
4865
4874
|
}
|
|
4866
4875
|
}
|
|
4867
4876
|
.dark\:\[--focus-outline\:var\(--color-white\)\]\/25 {
|
|
4868
|
-
&:where(
|
|
4877
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4869
4878
|
--focus-outline: color-mix(in srgb, #fff 25%, transparent);
|
|
4870
4879
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4871
4880
|
--focus-outline: color-mix(in oklab, var(--color-white) 25%, transparent);
|
|
@@ -4873,22 +4882,22 @@
|
|
|
4873
4882
|
}
|
|
4874
4883
|
}
|
|
4875
4884
|
.dark\:\[--focus-outline\:white\] {
|
|
4876
|
-
&:where(
|
|
4885
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4877
4886
|
--focus-outline: white;
|
|
4878
4887
|
}
|
|
4879
4888
|
}
|
|
4880
4889
|
.dark\:\[--focus-outline\:white\]\/30 {
|
|
4881
|
-
&:where(
|
|
4890
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4882
4891
|
--focus-outline: color-mix(in oklab, white 30%, transparent);
|
|
4883
4892
|
}
|
|
4884
4893
|
}
|
|
4885
4894
|
.dark\:\[--toggle-border\:white\]\/40 {
|
|
4886
|
-
&:where(
|
|
4895
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4887
4896
|
--toggle-border: color-mix(in oklab, white 40%, transparent);
|
|
4888
4897
|
}
|
|
4889
4898
|
}
|
|
4890
4899
|
.dark\:group-hover\:fill-nsw-grey-500 {
|
|
4891
|
-
&:where(
|
|
4900
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4892
4901
|
&:is(:where(.group):hover *) {
|
|
4893
4902
|
@media (hover: hover) {
|
|
4894
4903
|
fill: var(--color-nsw-grey-500);
|
|
@@ -4897,7 +4906,7 @@
|
|
|
4897
4906
|
}
|
|
4898
4907
|
}
|
|
4899
4908
|
.dark\:group-data-active\:bg-white\/15 {
|
|
4900
|
-
&:where(
|
|
4909
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4901
4910
|
&:is(:where(.group)[data-active] *) {
|
|
4902
4911
|
background-color: color-mix(in srgb, #fff 15%, transparent);
|
|
4903
4912
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4907,7 +4916,7 @@
|
|
|
4907
4916
|
}
|
|
4908
4917
|
}
|
|
4909
4918
|
.dark\:group-data-hover\:border-nsw-grey-200\/20 {
|
|
4910
|
-
&:where(
|
|
4919
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4911
4920
|
&:is(:where(.group)[data-hover] *) {
|
|
4912
4921
|
border-color: color-mix(in srgb, oklch(0.9401 0 0) 20%, transparent);
|
|
4913
4922
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4917,7 +4926,7 @@
|
|
|
4917
4926
|
}
|
|
4918
4927
|
}
|
|
4919
4928
|
.dark\:group-data-hover\:bg-white\/10 {
|
|
4920
|
-
&:where(
|
|
4929
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4921
4930
|
&:is(:where(.group)[data-hover] *) {
|
|
4922
4931
|
background-color: color-mix(in srgb, #fff 10%, transparent);
|
|
4923
4932
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4927,7 +4936,7 @@
|
|
|
4927
4936
|
}
|
|
4928
4937
|
}
|
|
4929
4938
|
.dark\:group-data-hover\:bg-white\/20 {
|
|
4930
|
-
&:where(
|
|
4939
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4931
4940
|
&:is(:where(.group)[data-hover] *) {
|
|
4932
4941
|
background-color: color-mix(in srgb, #fff 20%, transparent);
|
|
4933
4942
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4937,7 +4946,7 @@
|
|
|
4937
4946
|
}
|
|
4938
4947
|
}
|
|
4939
4948
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-accent\)\]\/80 {
|
|
4940
|
-
&:where(
|
|
4949
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4941
4950
|
&:is(:where(.group)[data-hover] *) {
|
|
4942
4951
|
--badge-bg: color-mix(in srgb, oklch(0.562 0.2175 20.33) 80%, transparent);
|
|
4943
4952
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4947,7 +4956,7 @@
|
|
|
4947
4956
|
}
|
|
4948
4957
|
}
|
|
4949
4958
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-error\)\]\/80 {
|
|
4950
|
-
&:where(
|
|
4959
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4951
4960
|
&:is(:where(.group)[data-hover] *) {
|
|
4952
4961
|
--badge-bg: color-mix(in srgb, oklch(0.502 0.1927 18.08) 80%, transparent);
|
|
4953
4962
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4957,7 +4966,7 @@
|
|
|
4957
4966
|
}
|
|
4958
4967
|
}
|
|
4959
4968
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-info\)\]\/80 {
|
|
4960
|
-
&:where(
|
|
4969
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4961
4970
|
&:is(:where(.group)[data-hover] *) {
|
|
4962
4971
|
--badge-bg: color-mix(in srgb, oklch(0.4506 0.1233 262.35) 80%, transparent);
|
|
4963
4972
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4967,28 +4976,28 @@
|
|
|
4967
4976
|
}
|
|
4968
4977
|
}
|
|
4969
4978
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-nsw-grey-100\)\] {
|
|
4970
|
-
&:where(
|
|
4979
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4971
4980
|
&:is(:where(.group)[data-hover] *) {
|
|
4972
4981
|
--badge-bg: var(--color-nsw-grey-100);
|
|
4973
4982
|
}
|
|
4974
4983
|
}
|
|
4975
4984
|
}
|
|
4976
4985
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-nsw-grey-200\)\] {
|
|
4977
|
-
&:where(
|
|
4986
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4978
4987
|
&:is(:where(.group)[data-hover] *) {
|
|
4979
4988
|
--badge-bg: var(--color-nsw-grey-200);
|
|
4980
4989
|
}
|
|
4981
4990
|
}
|
|
4982
4991
|
}
|
|
4983
4992
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-primary-light\)\] {
|
|
4984
|
-
&:where(
|
|
4993
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4985
4994
|
&:is(:where(.group)[data-hover] *) {
|
|
4986
4995
|
--badge-bg: var(--color-primary-light);
|
|
4987
4996
|
}
|
|
4988
4997
|
}
|
|
4989
4998
|
}
|
|
4990
4999
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-secondary\)\]\/45 {
|
|
4991
|
-
&:where(
|
|
5000
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
4992
5001
|
&:is(:where(.group)[data-hover] *) {
|
|
4993
5002
|
--badge-bg: color-mix(in srgb, oklch(0.9267 0.0417 227.89) 45%, transparent);
|
|
4994
5003
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4998,7 +5007,7 @@
|
|
|
4998
5007
|
}
|
|
4999
5008
|
}
|
|
5000
5009
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-success\)\]\/80 {
|
|
5001
|
-
&:where(
|
|
5010
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5002
5011
|
&:is(:where(.group)[data-hover] *) {
|
|
5003
5012
|
--badge-bg: color-mix(in srgb, oklch(0.549 0.1849 142.8) 80%, transparent);
|
|
5004
5013
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5008,7 +5017,7 @@
|
|
|
5008
5017
|
}
|
|
5009
5018
|
}
|
|
5010
5019
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-tertiary\)\]\/80 {
|
|
5011
|
-
&:where(
|
|
5020
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5012
5021
|
&:is(:where(.group)[data-hover] *) {
|
|
5013
5022
|
--badge-bg: color-mix(in srgb, oklch(0.5751 0.2298 260.76) 80%, transparent);
|
|
5014
5023
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5018,7 +5027,7 @@
|
|
|
5018
5027
|
}
|
|
5019
5028
|
}
|
|
5020
5029
|
.dark\:group-data-hover\:\[--badge-bg\:var\(--color-warning\)\]\/80 {
|
|
5021
|
-
&:where(
|
|
5030
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5022
5031
|
&:is(:where(.group)[data-hover] *) {
|
|
5023
5032
|
--badge-bg: color-mix(in srgb, oklch(0.5833 0.169705 43.9973) 80%, transparent);
|
|
5024
5033
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5028,21 +5037,21 @@
|
|
|
5028
5037
|
}
|
|
5029
5038
|
}
|
|
5030
5039
|
.dark\:group-data-hover\:\[--badge-bg\:white\]\/20 {
|
|
5031
|
-
&:where(
|
|
5040
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5032
5041
|
&:is(:where(.group)[data-hover] *) {
|
|
5033
5042
|
--badge-bg: color-mix(in oklab, white 20%, transparent);
|
|
5034
5043
|
}
|
|
5035
5044
|
}
|
|
5036
5045
|
}
|
|
5037
5046
|
.dark\:group-data-\[state\=checked\]\:border-nsw-grey-400 {
|
|
5038
|
-
&:where(
|
|
5047
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5039
5048
|
&:is(:where(.group)[data-state='checked'] *) {
|
|
5040
5049
|
border-color: var(--color-nsw-grey-400);
|
|
5041
5050
|
}
|
|
5042
5051
|
}
|
|
5043
5052
|
}
|
|
5044
5053
|
.dark\:before\:hidden {
|
|
5045
|
-
&:where(
|
|
5054
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5046
5055
|
&::before {
|
|
5047
5056
|
content: var(--tw-content);
|
|
5048
5057
|
display: none;
|
|
@@ -5050,7 +5059,7 @@
|
|
|
5050
5059
|
}
|
|
5051
5060
|
}
|
|
5052
5061
|
.dark\:after\:-inset-px {
|
|
5053
|
-
&:where(
|
|
5062
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5054
5063
|
&::after {
|
|
5055
5064
|
content: var(--tw-content);
|
|
5056
5065
|
inset: -1px;
|
|
@@ -5058,7 +5067,7 @@
|
|
|
5058
5067
|
}
|
|
5059
5068
|
}
|
|
5060
5069
|
.dark\:after\:rounded-sm {
|
|
5061
|
-
&:where(
|
|
5070
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5062
5071
|
&::after {
|
|
5063
5072
|
content: var(--tw-content);
|
|
5064
5073
|
border-radius: var(--radius-sm);
|
|
@@ -5066,7 +5075,7 @@
|
|
|
5066
5075
|
}
|
|
5067
5076
|
}
|
|
5068
5077
|
.dark\:hover\:border-nsw-grey-400 {
|
|
5069
|
-
&:where(
|
|
5078
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5070
5079
|
&:hover {
|
|
5071
5080
|
@media (hover: hover) {
|
|
5072
5081
|
border-color: var(--color-nsw-grey-400);
|
|
@@ -5075,7 +5084,7 @@
|
|
|
5075
5084
|
}
|
|
5076
5085
|
}
|
|
5077
5086
|
.dark\:hover\:bg-gray-700 {
|
|
5078
|
-
&:where(
|
|
5087
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5079
5088
|
&:hover {
|
|
5080
5089
|
@media (hover: hover) {
|
|
5081
5090
|
background-color: var(--color-gray-700);
|
|
@@ -5084,7 +5093,7 @@
|
|
|
5084
5093
|
}
|
|
5085
5094
|
}
|
|
5086
5095
|
.dark\:hover\:bg-input\/50 {
|
|
5087
|
-
&:where(
|
|
5096
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5088
5097
|
&:hover {
|
|
5089
5098
|
@media (hover: hover) {
|
|
5090
5099
|
background-color: var(--input);
|
|
@@ -5096,7 +5105,7 @@
|
|
|
5096
5105
|
}
|
|
5097
5106
|
}
|
|
5098
5107
|
.dark\:hover\:bg-nsw-grey-700 {
|
|
5099
|
-
&:where(
|
|
5108
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5100
5109
|
&:hover {
|
|
5101
5110
|
@media (hover: hover) {
|
|
5102
5111
|
background-color: var(--color-nsw-grey-700);
|
|
@@ -5105,7 +5114,7 @@
|
|
|
5105
5114
|
}
|
|
5106
5115
|
}
|
|
5107
5116
|
.dark\:hover\:bg-white\/10 {
|
|
5108
|
-
&:where(
|
|
5117
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5109
5118
|
&:hover {
|
|
5110
5119
|
@media (hover: hover) {
|
|
5111
5120
|
background-color: color-mix(in srgb, #fff 10%, transparent);
|
|
@@ -5117,7 +5126,7 @@
|
|
|
5117
5126
|
}
|
|
5118
5127
|
}
|
|
5119
5128
|
.dark\:hover\:text-slate-300 {
|
|
5120
|
-
&:where(
|
|
5129
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5121
5130
|
&:hover {
|
|
5122
5131
|
@media (hover: hover) {
|
|
5123
5132
|
color: var(--color-slate-300);
|
|
@@ -5126,7 +5135,7 @@
|
|
|
5126
5135
|
}
|
|
5127
5136
|
}
|
|
5128
5137
|
.dark\:hover\:text-white {
|
|
5129
|
-
&:where(
|
|
5138
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5130
5139
|
&:hover {
|
|
5131
5140
|
@media (hover: hover) {
|
|
5132
5141
|
color: var(--color-white);
|
|
@@ -5137,14 +5146,14 @@
|
|
|
5137
5146
|
.hover\:dark\:text-gray-300 {
|
|
5138
5147
|
&:hover {
|
|
5139
5148
|
@media (hover: hover) {
|
|
5140
|
-
&:where(
|
|
5149
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5141
5150
|
color: var(--color-gray-300);
|
|
5142
5151
|
}
|
|
5143
5152
|
}
|
|
5144
5153
|
}
|
|
5145
5154
|
}
|
|
5146
5155
|
.dark\:hover\:outline-white\/10 {
|
|
5147
|
-
&:where(
|
|
5156
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5148
5157
|
&:hover {
|
|
5149
5158
|
@media (hover: hover) {
|
|
5150
5159
|
outline-color: color-mix(in srgb, #fff 10%, transparent);
|
|
@@ -5156,7 +5165,7 @@
|
|
|
5156
5165
|
}
|
|
5157
5166
|
}
|
|
5158
5167
|
.dark\:hover\:\[--toggle-border\:white\]\/50 {
|
|
5159
|
-
&:where(
|
|
5168
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5160
5169
|
&:hover {
|
|
5161
5170
|
@media (hover: hover) {
|
|
5162
5171
|
--toggle-border: color-mix(in oklab, white 50%, transparent);
|
|
@@ -5165,7 +5174,7 @@
|
|
|
5165
5174
|
}
|
|
5166
5175
|
}
|
|
5167
5176
|
.dark\:focus\:outline-nsw-grey-300\/20 {
|
|
5168
|
-
&:where(
|
|
5177
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5169
5178
|
&:focus {
|
|
5170
5179
|
outline-color: color-mix(in srgb, oklch(0.9016 0.0039 294.435) 20%, transparent);
|
|
5171
5180
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5175,28 +5184,28 @@
|
|
|
5175
5184
|
}
|
|
5176
5185
|
}
|
|
5177
5186
|
.dark\:focus\:outline-white {
|
|
5178
|
-
&:where(
|
|
5187
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5179
5188
|
&:focus {
|
|
5180
5189
|
outline-color: var(--color-white);
|
|
5181
5190
|
}
|
|
5182
5191
|
}
|
|
5183
5192
|
}
|
|
5184
5193
|
.dark\:aria-invalid\:ring-error\/40 {
|
|
5185
|
-
&:where(
|
|
5194
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5186
5195
|
&[aria-invalid='true'] {
|
|
5187
5196
|
--tw-ring-color: color-mix(in oklab, oklch(0.502 0.1927 18.08) 40%, transparent);
|
|
5188
5197
|
}
|
|
5189
5198
|
}
|
|
5190
5199
|
}
|
|
5191
5200
|
.dark\:data-active\:bg-white {
|
|
5192
|
-
&:where(
|
|
5201
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5193
5202
|
&[data-active] {
|
|
5194
5203
|
background-color: var(--color-white);
|
|
5195
5204
|
}
|
|
5196
5205
|
}
|
|
5197
5206
|
}
|
|
5198
5207
|
.dark\:data-active\:bg-white\/10 {
|
|
5199
|
-
&:where(
|
|
5208
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5200
5209
|
&[data-active] {
|
|
5201
5210
|
background-color: color-mix(in srgb, #fff 10%, transparent);
|
|
5202
5211
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5206,49 +5215,49 @@
|
|
|
5206
5215
|
}
|
|
5207
5216
|
}
|
|
5208
5217
|
.dark\:data-active\:text-primary {
|
|
5209
|
-
&:where(
|
|
5218
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5210
5219
|
&[data-active] {
|
|
5211
5220
|
color: oklch(0.29 0.1173 259.84);
|
|
5212
5221
|
}
|
|
5213
5222
|
}
|
|
5214
5223
|
}
|
|
5215
5224
|
.dark\:data-active\:\[--btn-icon\:var\(--color-nsw-grey-50\)\] {
|
|
5216
|
-
&:where(
|
|
5225
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5217
5226
|
&[data-active] {
|
|
5218
5227
|
--btn-icon: var(--color-nsw-grey-50);
|
|
5219
5228
|
}
|
|
5220
5229
|
}
|
|
5221
5230
|
}
|
|
5222
5231
|
.dark\:data-active\:\[--btn-icon\:var\(--color-primary\)\] {
|
|
5223
|
-
&:where(
|
|
5232
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5224
5233
|
&[data-active] {
|
|
5225
5234
|
--btn-icon: var(--color-primary);
|
|
5226
5235
|
}
|
|
5227
5236
|
}
|
|
5228
5237
|
}
|
|
5229
5238
|
.dark\:data-active\:\[--btn-icon\:var\(--color-primary-darker\)\] {
|
|
5230
|
-
&:where(
|
|
5239
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5231
5240
|
&[data-active] {
|
|
5232
5241
|
--btn-icon: var(--color-primary-darker);
|
|
5233
5242
|
}
|
|
5234
5243
|
}
|
|
5235
5244
|
}
|
|
5236
5245
|
.dark\:data-active\:\[--btn-icon\:var\(--color-white\)\] {
|
|
5237
|
-
&:where(
|
|
5246
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5238
5247
|
&[data-active] {
|
|
5239
5248
|
--btn-icon: var(--color-white);
|
|
5240
5249
|
}
|
|
5241
5250
|
}
|
|
5242
5251
|
}
|
|
5243
5252
|
.dark\:data-hover\:bg-white {
|
|
5244
|
-
&:where(
|
|
5253
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5245
5254
|
&[data-hover] {
|
|
5246
5255
|
background-color: var(--color-white);
|
|
5247
5256
|
}
|
|
5248
5257
|
}
|
|
5249
5258
|
}
|
|
5250
5259
|
.dark\:data-hover\:bg-white\/10 {
|
|
5251
|
-
&:where(
|
|
5260
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5252
5261
|
&[data-hover] {
|
|
5253
5262
|
background-color: color-mix(in srgb, #fff 10%, transparent);
|
|
5254
5263
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5258,42 +5267,42 @@
|
|
|
5258
5267
|
}
|
|
5259
5268
|
}
|
|
5260
5269
|
.dark\:data-hover\:text-primary {
|
|
5261
|
-
&:where(
|
|
5270
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5262
5271
|
&[data-hover] {
|
|
5263
5272
|
color: oklch(0.29 0.1173 259.84);
|
|
5264
5273
|
}
|
|
5265
5274
|
}
|
|
5266
5275
|
}
|
|
5267
5276
|
.dark\:data-hover\:\[--btn-icon\:var\(--color-nsw-grey-50\)\] {
|
|
5268
|
-
&:where(
|
|
5277
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5269
5278
|
&[data-hover] {
|
|
5270
5279
|
--btn-icon: var(--color-nsw-grey-50);
|
|
5271
5280
|
}
|
|
5272
5281
|
}
|
|
5273
5282
|
}
|
|
5274
5283
|
.dark\:data-hover\:\[--btn-icon\:var\(--color-primary\)\] {
|
|
5275
|
-
&:where(
|
|
5284
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5276
5285
|
&[data-hover] {
|
|
5277
5286
|
--btn-icon: var(--color-primary);
|
|
5278
5287
|
}
|
|
5279
5288
|
}
|
|
5280
5289
|
}
|
|
5281
5290
|
.dark\:data-hover\:\[--btn-icon\:var\(--color-primary-darker\)\] {
|
|
5282
|
-
&:where(
|
|
5291
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5283
5292
|
&[data-hover] {
|
|
5284
5293
|
--btn-icon: var(--color-primary-darker);
|
|
5285
5294
|
}
|
|
5286
5295
|
}
|
|
5287
5296
|
}
|
|
5288
5297
|
.dark\:data-hover\:\[--btn-icon\:var\(--color-white\)\] {
|
|
5289
|
-
&:where(
|
|
5298
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5290
5299
|
&[data-hover] {
|
|
5291
5300
|
--btn-icon: var(--color-white);
|
|
5292
5301
|
}
|
|
5293
5302
|
}
|
|
5294
5303
|
}
|
|
5295
5304
|
.dark\:data-\[state\=active\]\:bg-input\/30 {
|
|
5296
|
-
&:where(
|
|
5305
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5297
5306
|
&[data-state='active'] {
|
|
5298
5307
|
background-color: var(--input);
|
|
5299
5308
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5303,21 +5312,21 @@
|
|
|
5303
5312
|
}
|
|
5304
5313
|
}
|
|
5305
5314
|
.dark\:data-\[state\=active\]\:text-foreground {
|
|
5306
|
-
&:where(
|
|
5315
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5307
5316
|
&[data-state='active'] {
|
|
5308
5317
|
color: var(--foreground);
|
|
5309
5318
|
}
|
|
5310
5319
|
}
|
|
5311
5320
|
}
|
|
5312
5321
|
.dark\:data-\[state\=checked\]\:bg-primary {
|
|
5313
|
-
&:where(
|
|
5322
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5314
5323
|
&[data-state='checked'] {
|
|
5315
5324
|
background-color: oklch(0.29 0.1173 259.84);
|
|
5316
5325
|
}
|
|
5317
5326
|
}
|
|
5318
5327
|
}
|
|
5319
5328
|
.dark\:data-\[state\=on\]\:bg-white\/10 {
|
|
5320
|
-
&:where(
|
|
5329
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5321
5330
|
&[data-state='on'] {
|
|
5322
5331
|
background-color: color-mix(in srgb, #fff 10%, transparent);
|
|
5323
5332
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5327,21 +5336,21 @@
|
|
|
5327
5336
|
}
|
|
5328
5337
|
}
|
|
5329
5338
|
.dark\:data-\[state\=on\]\:text-white {
|
|
5330
|
-
&:where(
|
|
5339
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5331
5340
|
&[data-state='on'] {
|
|
5332
5341
|
color: var(--color-white);
|
|
5333
5342
|
}
|
|
5334
5343
|
}
|
|
5335
5344
|
}
|
|
5336
5345
|
.dark\:data-\[state\=unchecked\]\:bg-foreground {
|
|
5337
|
-
&:where(
|
|
5346
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5338
5347
|
&[data-state='unchecked'] {
|
|
5339
5348
|
background-color: var(--foreground);
|
|
5340
5349
|
}
|
|
5341
5350
|
}
|
|
5342
5351
|
}
|
|
5343
5352
|
.dark\:data-\[state\=unchecked\]\:bg-input\/80 {
|
|
5344
|
-
&:where(
|
|
5353
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5345
5354
|
&[data-state='unchecked'] {
|
|
5346
5355
|
background-color: var(--input);
|
|
5347
5356
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5585,7 +5594,7 @@
|
|
|
5585
5594
|
}
|
|
5586
5595
|
}
|
|
5587
5596
|
.dark\:\[\@supports\(backdrop-filter\:blur\(0\)\)\]\:bg-slate-900\/75 {
|
|
5588
|
-
&:where(
|
|
5597
|
+
&:where([data-theme='dark'], [data-theme='dark'] *) {
|
|
5589
5598
|
@supports (backdrop-filter: blur(0)) {
|
|
5590
5599
|
background-color: color-mix(in srgb, oklch(20.8% 0.042 265.755) 75%, transparent);
|
|
5591
5600
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5604,7 +5613,7 @@
|
|
|
5604
5613
|
--input: var(--color-nsw-grey-200);
|
|
5605
5614
|
--ring: var(--color-nsw-grey-600);
|
|
5606
5615
|
}
|
|
5607
|
-
|
|
5616
|
+
[data-theme='dark'] {
|
|
5608
5617
|
--background: var(--color-nsw-grey-900);
|
|
5609
5618
|
--foreground: var(--color-nsw-grey-50);
|
|
5610
5619
|
--muted: var(--color-nsw-grey-600);
|
|
@@ -5629,6 +5638,556 @@
|
|
|
5629
5638
|
display: none;
|
|
5630
5639
|
}
|
|
5631
5640
|
}
|
|
5641
|
+
code[class*='language-'],
|
|
5642
|
+
pre[class*='language-'] {
|
|
5643
|
+
color: #ccc;
|
|
5644
|
+
background: none;
|
|
5645
|
+
font-family:
|
|
5646
|
+
Consolas,
|
|
5647
|
+
Monaco,
|
|
5648
|
+
Andale Mono,
|
|
5649
|
+
Ubuntu Mono,
|
|
5650
|
+
monospace;
|
|
5651
|
+
font-size: 1em;
|
|
5652
|
+
word-wrap: normal;
|
|
5653
|
+
}
|
|
5654
|
+
pre[class*='language-'] {
|
|
5655
|
+
padding: 1em;
|
|
5656
|
+
margin: 0.5em 0;
|
|
5657
|
+
overflow: auto;
|
|
5658
|
+
}
|
|
5659
|
+
:not(pre) > code[class*='language-'],
|
|
5660
|
+
pre[class*='language-'] {
|
|
5661
|
+
background: #2d2d2d;
|
|
5662
|
+
}
|
|
5663
|
+
:not(pre) > code[class*='language-'] {
|
|
5664
|
+
white-space: normal;
|
|
5665
|
+
}
|
|
5666
|
+
.token.block-comment,
|
|
5667
|
+
.token.cdata,
|
|
5668
|
+
.token.comment,
|
|
5669
|
+
.token.doctype,
|
|
5670
|
+
.token.prolog {
|
|
5671
|
+
color: #999;
|
|
5672
|
+
}
|
|
5673
|
+
.token.punctuation {
|
|
5674
|
+
color: #ccc;
|
|
5675
|
+
}
|
|
5676
|
+
.token.attr-name,
|
|
5677
|
+
.token.deleted,
|
|
5678
|
+
.token.namespace,
|
|
5679
|
+
.token.tag {
|
|
5680
|
+
color: #e2777a;
|
|
5681
|
+
}
|
|
5682
|
+
.token.function-name {
|
|
5683
|
+
color: #6196cc;
|
|
5684
|
+
}
|
|
5685
|
+
.token.boolean,
|
|
5686
|
+
.token.function,
|
|
5687
|
+
.token.number {
|
|
5688
|
+
color: #f08d49;
|
|
5689
|
+
}
|
|
5690
|
+
.token.class-name,
|
|
5691
|
+
.token.constant,
|
|
5692
|
+
.token.property,
|
|
5693
|
+
.token.symbol {
|
|
5694
|
+
color: #f8c555;
|
|
5695
|
+
}
|
|
5696
|
+
.token.atrule,
|
|
5697
|
+
.token.builtin,
|
|
5698
|
+
.token.important,
|
|
5699
|
+
.token.keyword,
|
|
5700
|
+
.token.selector {
|
|
5701
|
+
color: #cc99cd;
|
|
5702
|
+
}
|
|
5703
|
+
.token.attr-value,
|
|
5704
|
+
.token.char,
|
|
5705
|
+
.token.regex,
|
|
5706
|
+
.token.string,
|
|
5707
|
+
.token.variable {
|
|
5708
|
+
color: #7ec699;
|
|
5709
|
+
}
|
|
5710
|
+
.token.entity,
|
|
5711
|
+
.token.operator,
|
|
5712
|
+
.token.url {
|
|
5713
|
+
color: #67cdcc;
|
|
5714
|
+
}
|
|
5715
|
+
.token.inserted {
|
|
5716
|
+
color: green;
|
|
5717
|
+
}
|
|
5718
|
+
.code-responsive-wrapper {
|
|
5719
|
+
background-color: #fff;
|
|
5720
|
+
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");
|
|
5721
|
+
}
|
|
5722
|
+
code[class*='language-'],
|
|
5723
|
+
pre[class*='language-'] {
|
|
5724
|
+
margin-bottom: 1.25rem;
|
|
5725
|
+
margin-top: 0;
|
|
5726
|
+
border-radius: 0.5rem;
|
|
5727
|
+
font-size: 0.875rem;
|
|
5728
|
+
line-height: 1.25rem;
|
|
5729
|
+
font-weight: 400;
|
|
5730
|
+
--tw-text-opacity: 1;
|
|
5731
|
+
color: rgb(231 70 148 / var(--tw-text-opacity, 1));
|
|
5732
|
+
font-family:
|
|
5733
|
+
Menlo,
|
|
5734
|
+
ui-monospace,
|
|
5735
|
+
SFMono-Regular,
|
|
5736
|
+
Monaco,
|
|
5737
|
+
Consolas,
|
|
5738
|
+
Liberation Mono,
|
|
5739
|
+
Courier New,
|
|
5740
|
+
monospace;
|
|
5741
|
+
direction: ltr;
|
|
5742
|
+
text-align: left;
|
|
5743
|
+
white-space: pre;
|
|
5744
|
+
word-spacing: normal;
|
|
5745
|
+
word-break: normal;
|
|
5746
|
+
line-height: 1.5;
|
|
5747
|
+
text-shadow: none;
|
|
5748
|
+
-moz-tab-size: 4;
|
|
5749
|
+
-o-tab-size: 4;
|
|
5750
|
+
tab-size: 4;
|
|
5751
|
+
-webkit-hyphens: none;
|
|
5752
|
+
hyphens: none;
|
|
5753
|
+
}
|
|
5754
|
+
div + pre[class*='language-'] {
|
|
5755
|
+
margin-bottom: 0;
|
|
5756
|
+
}
|
|
5757
|
+
.highlight {
|
|
5758
|
+
overflow: hidden;
|
|
5759
|
+
}
|
|
5760
|
+
.highlight-line {
|
|
5761
|
+
display: block;
|
|
5762
|
+
padding-left: 1em;
|
|
5763
|
+
margin-left: -1em;
|
|
5764
|
+
margin-right: -1em;
|
|
5765
|
+
--tw-bg-opacity: 1;
|
|
5766
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
|
5767
|
+
}
|
|
5768
|
+
.highlight pre[class*='language-'] {
|
|
5769
|
+
margin: 1rem 0 2rem;
|
|
5770
|
+
border-radius: 0.75rem;
|
|
5771
|
+
--tw-bg-opacity: 1;
|
|
5772
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
5773
|
+
padding: 1.5rem;
|
|
5774
|
+
font-size: 0.875rem;
|
|
5775
|
+
line-height: 1.25rem;
|
|
5776
|
+
}
|
|
5777
|
+
.code-preview-wrapper + .code-syntax-wrapper > .code-syntax,
|
|
5778
|
+
.code-preview-wrapper
|
|
5779
|
+
+ .code-syntax-wrapper
|
|
5780
|
+
> .code-syntax
|
|
5781
|
+
> .relative
|
|
5782
|
+
> [data-code-wrapper]
|
|
5783
|
+
> .highlight
|
|
5784
|
+
pre[class*='language-'] {
|
|
5785
|
+
margin-top: 0;
|
|
5786
|
+
border-radius: 0;
|
|
5787
|
+
}
|
|
5788
|
+
.code-preview-wrapper + .code-syntax-wrapper {
|
|
5789
|
+
margin-bottom: 1rem;
|
|
5790
|
+
}
|
|
5791
|
+
.code-preview-wrapper
|
|
5792
|
+
+ .code-syntax-wrapper
|
|
5793
|
+
> .code-syntax
|
|
5794
|
+
> .relative
|
|
5795
|
+
> [data-code-wrapper]
|
|
5796
|
+
> .highlight
|
|
5797
|
+
> pre[class*='language-'] {
|
|
5798
|
+
margin: 0;
|
|
5799
|
+
--tw-bg-opacity: 1;
|
|
5800
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
5801
|
+
padding: 1rem;
|
|
5802
|
+
}
|
|
5803
|
+
:not(pre) > code[class*='language-'],
|
|
5804
|
+
pre[class*='language-'] {
|
|
5805
|
+
--tw-bg-opacity: 1;
|
|
5806
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
5807
|
+
}
|
|
5808
|
+
:not(pre) > code[class*='language-'] {
|
|
5809
|
+
padding: 0.1em;
|
|
5810
|
+
border-radius: 0.3em;
|
|
5811
|
+
}
|
|
5812
|
+
.token.cdata,
|
|
5813
|
+
.token.comment,
|
|
5814
|
+
.token.doctype,
|
|
5815
|
+
.token.prolog {
|
|
5816
|
+
--tw-text-opacity: 1;
|
|
5817
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
5818
|
+
}
|
|
5819
|
+
.token.punctuation {
|
|
5820
|
+
--tw-text-opacity: 1;
|
|
5821
|
+
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
5822
|
+
}
|
|
5823
|
+
.namespace {
|
|
5824
|
+
opacity: 0.7;
|
|
5825
|
+
}
|
|
5826
|
+
.token.class-name,
|
|
5827
|
+
.token.keyword,
|
|
5828
|
+
.token.property,
|
|
5829
|
+
.token.tag {
|
|
5830
|
+
--tw-text-opacity: 1;
|
|
5831
|
+
color: rgb(126 58 242 / var(--tw-text-opacity, 1));
|
|
5832
|
+
}
|
|
5833
|
+
.token.boolean,
|
|
5834
|
+
.token.constant {
|
|
5835
|
+
--tw-text-opacity: 1;
|
|
5836
|
+
color: rgb(16 185 129 / var(--tw-text-opacity, 1));
|
|
5837
|
+
}
|
|
5838
|
+
.token.deleted,
|
|
5839
|
+
.token.symbol {
|
|
5840
|
+
--tw-text-opacity: 1;
|
|
5841
|
+
color: rgb(240 82 82 / var(--tw-text-opacity, 1));
|
|
5842
|
+
}
|
|
5843
|
+
.token.number {
|
|
5844
|
+
--tw-text-opacity: 1;
|
|
5845
|
+
color: rgb(231 70 148 / var(--tw-text-opacity, 1));
|
|
5846
|
+
}
|
|
5847
|
+
.token.attr-name,
|
|
5848
|
+
.token.builtin,
|
|
5849
|
+
.token.char,
|
|
5850
|
+
.token.inserted,
|
|
5851
|
+
.token.selector,
|
|
5852
|
+
.token.string {
|
|
5853
|
+
--tw-text-opacity: 1;
|
|
5854
|
+
color: rgb(2 132 199 / var(--tw-text-opacity, 1));
|
|
5855
|
+
}
|
|
5856
|
+
.token.variable {
|
|
5857
|
+
--tw-text-opacity: 1;
|
|
5858
|
+
color: rgb(144 97 249 / var(--tw-text-opacity, 1));
|
|
5859
|
+
}
|
|
5860
|
+
.token.operator {
|
|
5861
|
+
--tw-text-opacity: 1;
|
|
5862
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
5863
|
+
}
|
|
5864
|
+
.token.entity {
|
|
5865
|
+
--tw-text-opacity: 1;
|
|
5866
|
+
color: rgb(227 160 8 / var(--tw-text-opacity, 1));
|
|
5867
|
+
cursor: help;
|
|
5868
|
+
}
|
|
5869
|
+
.token.url {
|
|
5870
|
+
--tw-text-opacity: 1;
|
|
5871
|
+
color: rgb(8 145 178 / var(--tw-text-opacity, 1));
|
|
5872
|
+
}
|
|
5873
|
+
.language-css .token.string,
|
|
5874
|
+
.style .token.string {
|
|
5875
|
+
--tw-text-opacity: 1;
|
|
5876
|
+
color: rgb(240 82 82 / var(--tw-text-opacity, 1));
|
|
5877
|
+
}
|
|
5878
|
+
.token.atrule,
|
|
5879
|
+
.token.attr-value {
|
|
5880
|
+
--tw-text-opacity: 1;
|
|
5881
|
+
color: rgb(5 150 105 / var(--tw-text-opacity, 1));
|
|
5882
|
+
}
|
|
5883
|
+
.token.function {
|
|
5884
|
+
--tw-text-opacity: 1;
|
|
5885
|
+
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
5886
|
+
}
|
|
5887
|
+
.token.regex {
|
|
5888
|
+
color: #e9c062;
|
|
5889
|
+
}
|
|
5890
|
+
.token.important {
|
|
5891
|
+
color: #fd971f;
|
|
5892
|
+
}
|
|
5893
|
+
.token.bold,
|
|
5894
|
+
.token.important {
|
|
5895
|
+
font-weight: 700;
|
|
5896
|
+
}
|
|
5897
|
+
.token.italic {
|
|
5898
|
+
font-style: italic;
|
|
5899
|
+
}
|
|
5900
|
+
.token {
|
|
5901
|
+
--tw-text-opacity: 1;
|
|
5902
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
5903
|
+
}
|
|
5904
|
+
code.language-bash,
|
|
5905
|
+
code.language-tsx,
|
|
5906
|
+
pre.language-bash {
|
|
5907
|
+
--tw-text-opacity: 1;
|
|
5908
|
+
color: rgb(8 145 178 / var(--tw-text-opacity, 1));
|
|
5909
|
+
}
|
|
5910
|
+
code.language-tsx .token.function {
|
|
5911
|
+
--tw-text-opacity: 1;
|
|
5912
|
+
color: rgb(14 159 110 / var(--tw-text-opacity, 1));
|
|
5913
|
+
}
|
|
5914
|
+
code.language-tsx .token.punctuation {
|
|
5915
|
+
--tw-text-opacity: 1;
|
|
5916
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
5917
|
+
}
|
|
5918
|
+
code.language-tsx .token.keyword {
|
|
5919
|
+
--tw-text-opacity: 1;
|
|
5920
|
+
color: rgb(217 70 239 / var(--tw-text-opacity, 1));
|
|
5921
|
+
}
|
|
5922
|
+
code.language-tsx .token.comment {
|
|
5923
|
+
--tw-text-opacity: 1;
|
|
5924
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
5925
|
+
}
|
|
5926
|
+
code.language-tsx .token.class-name,
|
|
5927
|
+
code.language-tsx .token.string {
|
|
5928
|
+
--tw-text-opacity: 1;
|
|
5929
|
+
color: rgb(126 58 242 / var(--tw-text-opacity, 1));
|
|
5930
|
+
}
|
|
5931
|
+
code.language-tsx .token {
|
|
5932
|
+
background: transparent;
|
|
5933
|
+
}
|
|
5934
|
+
code.language-html .token.tag {
|
|
5935
|
+
--tw-text-opacity: 1;
|
|
5936
|
+
color: rgb(162 28 175 / var(--tw-text-opacity, 1));
|
|
5937
|
+
}
|
|
5938
|
+
code.language-html .token.attr-name {
|
|
5939
|
+
color: rgb(75 85 99 / var(--tw-text-opacity, 1));
|
|
5940
|
+
}
|
|
5941
|
+
code.language-html .token.attr-value {
|
|
5942
|
+
--tw-text-opacity: 1;
|
|
5943
|
+
color: rgb(8 145 178 / var(--tw-text-opacity, 1));
|
|
5944
|
+
}
|
|
5945
|
+
code.language-html .token.punctuation {
|
|
5946
|
+
--tw-text-opacity: 1;
|
|
5947
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
5948
|
+
}
|
|
5949
|
+
code.language-html .token.attr-name {
|
|
5950
|
+
--tw-text-opacity: 1;
|
|
5951
|
+
color: rgb(5 122 85 / var(--tw-text-opacity, 1));
|
|
5952
|
+
}
|
|
5953
|
+
code.language-html .token.comment {
|
|
5954
|
+
--tw-text-opacity: 1;
|
|
5955
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
5956
|
+
}
|
|
5957
|
+
#carbonads * {
|
|
5958
|
+
margin: initial;
|
|
5959
|
+
padding: initial;
|
|
5960
|
+
}
|
|
5961
|
+
#carbonads {
|
|
5962
|
+
font-family:
|
|
5963
|
+
-apple-system,
|
|
5964
|
+
BlinkMacSystemFont,
|
|
5965
|
+
Segoe UI,
|
|
5966
|
+
Roboto,
|
|
5967
|
+
Oxygen-Sans,
|
|
5968
|
+
Ubuntu,
|
|
5969
|
+
Cantarell,
|
|
5970
|
+
Helvetica Neue,
|
|
5971
|
+
Helvetica,
|
|
5972
|
+
Arial,
|
|
5973
|
+
sans-serif;
|
|
5974
|
+
margin: 0;
|
|
5975
|
+
display: flex;
|
|
5976
|
+
max-width: 330px;
|
|
5977
|
+
box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.1);
|
|
5978
|
+
z-index: 100;
|
|
5979
|
+
--tw-bg-opacity: 1;
|
|
5980
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
5981
|
+
}
|
|
5982
|
+
#carbonads a {
|
|
5983
|
+
text-decoration: none;
|
|
5984
|
+
}
|
|
5985
|
+
#carbonads a,
|
|
5986
|
+
#carbonads a:hover {
|
|
5987
|
+
color: inherit;
|
|
5988
|
+
}
|
|
5989
|
+
#carbonads span {
|
|
5990
|
+
position: relative;
|
|
5991
|
+
display: block;
|
|
5992
|
+
overflow: hidden;
|
|
5993
|
+
}
|
|
5994
|
+
#carbonads .carbon-wrap {
|
|
5995
|
+
display: flex;
|
|
5996
|
+
}
|
|
5997
|
+
#carbonads .carbon-img {
|
|
5998
|
+
display: block;
|
|
5999
|
+
margin: 0;
|
|
6000
|
+
line-height: 1;
|
|
6001
|
+
}
|
|
6002
|
+
#carbonads .carbon-img img {
|
|
6003
|
+
display: block;
|
|
6004
|
+
}
|
|
6005
|
+
#carbonads .carbon-text {
|
|
6006
|
+
font-size: 13px;
|
|
6007
|
+
padding: 10px;
|
|
6008
|
+
margin-bottom: 16px;
|
|
6009
|
+
line-height: 1.5;
|
|
6010
|
+
text-align: left;
|
|
6011
|
+
}
|
|
6012
|
+
#carbonads .carbon-poweredby {
|
|
6013
|
+
--tw-bg-opacity: 1;
|
|
6014
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
|
6015
|
+
display: block;
|
|
6016
|
+
padding: 6px 8px;
|
|
6017
|
+
text-align: center;
|
|
6018
|
+
text-transform: uppercase;
|
|
6019
|
+
letter-spacing: 0.5px;
|
|
6020
|
+
font-weight: 600;
|
|
6021
|
+
font-size: 8px;
|
|
6022
|
+
line-height: 1;
|
|
6023
|
+
position: absolute;
|
|
6024
|
+
bottom: 0;
|
|
6025
|
+
right: 0;
|
|
6026
|
+
}
|
|
6027
|
+
.dark .code-responsive-wrapper {
|
|
6028
|
+
background-color: #111827;
|
|
6029
|
+
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");
|
|
6030
|
+
}
|
|
6031
|
+
.dark code[class*='language-'],
|
|
6032
|
+
.dark pre[class*='language-'] {
|
|
6033
|
+
--tw-text-opacity: 1;
|
|
6034
|
+
color: rgb(241 126 184 / var(--tw-text-opacity, 1));
|
|
6035
|
+
}
|
|
6036
|
+
.dark .highlight-line {
|
|
6037
|
+
--tw-bg-opacity: 1;
|
|
6038
|
+
background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
|
|
6039
|
+
}
|
|
6040
|
+
.dark
|
|
6041
|
+
.code-preview-wrapper
|
|
6042
|
+
+ .code-syntax-wrapper
|
|
6043
|
+
> .code-syntax
|
|
6044
|
+
> .relative
|
|
6045
|
+
> [data-code-wrapper]
|
|
6046
|
+
> .highlight
|
|
6047
|
+
> pre[class*='language-'],
|
|
6048
|
+
.dark .highlight pre[class*='language-'],
|
|
6049
|
+
.dark :not(pre) > code[class*='language-'],
|
|
6050
|
+
.dark pre[class*='language-'] {
|
|
6051
|
+
--tw-bg-opacity: 1;
|
|
6052
|
+
background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
|
|
6053
|
+
}
|
|
6054
|
+
.dark .token.cdata,
|
|
6055
|
+
.dark .token.comment,
|
|
6056
|
+
.dark .token.doctype,
|
|
6057
|
+
.dark .token.prolog {
|
|
6058
|
+
--tw-text-opacity: 1;
|
|
6059
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
6060
|
+
}
|
|
6061
|
+
.dark .token.punctuation {
|
|
6062
|
+
--tw-text-opacity: 1;
|
|
6063
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
6064
|
+
}
|
|
6065
|
+
.dark .token.class-name,
|
|
6066
|
+
.dark .token.keyword,
|
|
6067
|
+
.dark .token.property,
|
|
6068
|
+
.dark .token.tag {
|
|
6069
|
+
--tw-text-opacity: 1;
|
|
6070
|
+
color: rgb(172 148 250 / var(--tw-text-opacity, 1));
|
|
6071
|
+
}
|
|
6072
|
+
.dark .token.boolean,
|
|
6073
|
+
.dark .token.constant {
|
|
6074
|
+
--tw-text-opacity: 1;
|
|
6075
|
+
color: rgb(52 211 153 / var(--tw-text-opacity, 1));
|
|
6076
|
+
}
|
|
6077
|
+
.dark .token.deleted,
|
|
6078
|
+
.dark .token.symbol {
|
|
6079
|
+
--tw-text-opacity: 1;
|
|
6080
|
+
color: rgb(249 128 128 / var(--tw-text-opacity, 1));
|
|
6081
|
+
}
|
|
6082
|
+
.dark .token.number {
|
|
6083
|
+
--tw-text-opacity: 1;
|
|
6084
|
+
color: rgb(241 126 184 / var(--tw-text-opacity, 1));
|
|
6085
|
+
}
|
|
6086
|
+
.dark .token.attr-name,
|
|
6087
|
+
.dark .token.builtin,
|
|
6088
|
+
.dark .token.char,
|
|
6089
|
+
.dark .token.inserted,
|
|
6090
|
+
.dark .token.selector,
|
|
6091
|
+
.dark .token.string {
|
|
6092
|
+
--tw-text-opacity: 1;
|
|
6093
|
+
color: rgb(56 189 248 / var(--tw-text-opacity, 1));
|
|
6094
|
+
}
|
|
6095
|
+
.dark .token.variable {
|
|
6096
|
+
--tw-text-opacity: 1;
|
|
6097
|
+
color: rgb(172 148 250 / var(--tw-text-opacity, 1));
|
|
6098
|
+
}
|
|
6099
|
+
.dark .token.operator {
|
|
6100
|
+
--tw-text-opacity: 1;
|
|
6101
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
6102
|
+
}
|
|
6103
|
+
.dark .token.entity {
|
|
6104
|
+
--tw-text-opacity: 1;
|
|
6105
|
+
color: rgb(250 202 21 / var(--tw-text-opacity, 1));
|
|
6106
|
+
}
|
|
6107
|
+
.dark .token.url {
|
|
6108
|
+
--tw-text-opacity: 1;
|
|
6109
|
+
color: rgb(6 182 212 / var(--tw-text-opacity, 1));
|
|
6110
|
+
}
|
|
6111
|
+
.dark .language-css .token.string,
|
|
6112
|
+
.dark .style .token.string {
|
|
6113
|
+
--tw-text-opacity: 1;
|
|
6114
|
+
color: rgb(249 128 128 / var(--tw-text-opacity, 1));
|
|
6115
|
+
}
|
|
6116
|
+
.dark .token.atrule,
|
|
6117
|
+
.dark .token.attr-value {
|
|
6118
|
+
--tw-text-opacity: 1;
|
|
6119
|
+
color: rgb(110 231 183 / var(--tw-text-opacity, 1));
|
|
6120
|
+
}
|
|
6121
|
+
.dark .token.function {
|
|
6122
|
+
--tw-text-opacity: 1;
|
|
6123
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
6124
|
+
}
|
|
6125
|
+
.dark .token {
|
|
6126
|
+
--tw-text-opacity: 1;
|
|
6127
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
6128
|
+
}
|
|
6129
|
+
.dark code.language-bash,
|
|
6130
|
+
.dark code.language-tsx,
|
|
6131
|
+
.dark pre.language-bash {
|
|
6132
|
+
--tw-text-opacity: 1;
|
|
6133
|
+
color: rgb(34 211 238 / var(--tw-text-opacity, 1));
|
|
6134
|
+
}
|
|
6135
|
+
.dark code.language-tsx .token.function {
|
|
6136
|
+
--tw-text-opacity: 1;
|
|
6137
|
+
color: rgb(132 225 188 / var(--tw-text-opacity, 1));
|
|
6138
|
+
}
|
|
6139
|
+
.dark code.language-tsx .token.punctuation {
|
|
6140
|
+
--tw-text-opacity: 1;
|
|
6141
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
6142
|
+
}
|
|
6143
|
+
.dark code.language-tsx .token.keyword {
|
|
6144
|
+
--tw-text-opacity: 1;
|
|
6145
|
+
color: rgb(232 121 249 / var(--tw-text-opacity, 1));
|
|
6146
|
+
}
|
|
6147
|
+
.dark code.language-tsx .token.comment {
|
|
6148
|
+
--tw-text-opacity: 1;
|
|
6149
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
6150
|
+
}
|
|
6151
|
+
.dark code.language-tsx .token.class-name,
|
|
6152
|
+
.dark code.language-tsx .token.string {
|
|
6153
|
+
--tw-text-opacity: 1;
|
|
6154
|
+
color: rgb(172 148 250 / var(--tw-text-opacity, 1));
|
|
6155
|
+
}
|
|
6156
|
+
.dark code.language-html .token.tag {
|
|
6157
|
+
--tw-text-opacity: 1;
|
|
6158
|
+
color: rgb(232 121 249 / var(--tw-text-opacity, 1));
|
|
6159
|
+
}
|
|
6160
|
+
.dark code.language-html .token.attr-name {
|
|
6161
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
6162
|
+
}
|
|
6163
|
+
.dark code.language-html .token.attr-value {
|
|
6164
|
+
--tw-text-opacity: 1;
|
|
6165
|
+
color: rgb(34 211 238 / var(--tw-text-opacity, 1));
|
|
6166
|
+
}
|
|
6167
|
+
.dark code.language-html .token.punctuation {
|
|
6168
|
+
--tw-text-opacity: 1;
|
|
6169
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
6170
|
+
}
|
|
6171
|
+
.dark code.language-html .token.attr-name {
|
|
6172
|
+
--tw-text-opacity: 1;
|
|
6173
|
+
color: rgb(49 196 141 / var(--tw-text-opacity, 1));
|
|
6174
|
+
}
|
|
6175
|
+
.dark code.language-html .token.comment {
|
|
6176
|
+
--tw-text-opacity: 1;
|
|
6177
|
+
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
6178
|
+
}
|
|
6179
|
+
.dark #carbonads {
|
|
6180
|
+
--tw-bg-opacity: 1;
|
|
6181
|
+
--tw-text-opacity: 1;
|
|
6182
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
6183
|
+
}
|
|
6184
|
+
.dark #carbonads,
|
|
6185
|
+
.dark #carbonads .carbon-poweredby {
|
|
6186
|
+
background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
|
|
6187
|
+
}
|
|
6188
|
+
.dark #carbonads .carbon-poweredby {
|
|
6189
|
+
--tw-bg-opacity: 1;
|
|
6190
|
+
}
|
|
5632
6191
|
@keyframes enter {
|
|
5633
6192
|
from {
|
|
5634
6193
|
opacity: var(--tw-enter-opacity, 1);
|