@code-coaching/vuetiful 0.0.1 → 0.0.3
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/style.css +1 -1
- package/dist/styles/all.css +439 -536
- package/dist/types/index.d.ts +0 -1
- package/dist/types/utils/theme/theme-switcher.vue.d.ts +1 -1
- package/dist/types/utils/theme/theme.d.ts +4 -4
- package/dist/vuetiful.es.mjs +12 -15
- package/dist/vuetiful.umd.js +7 -7
- package/package.json +1 -1
- package/src/index.ts +0 -9
- package/src/themes/{theme-vuetiful.css → theme-skeleton.css} +8 -8
- package/src/themes/{theme-modern.css → theme-vuetiful-0.0.1.css} +14 -14
- package/src/utils/theme/theme.ts +15 -15
package/dist/styles/all.css
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import"https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap";
|
|
2
|
-
|
|
3
1
|
/* Stylesheet: all.css */
|
|
4
2
|
|
|
5
3
|
/* Import AFTER your theme, but BEFORE your global stylesheet. */
|
|
@@ -441,21 +439,21 @@ video {
|
|
|
441
439
|
|
|
442
440
|
/* === Body Styles === */
|
|
443
441
|
|
|
444
|
-
body{
|
|
442
|
+
body {
|
|
445
443
|
background-color: rgb(var(--color-surface-50));
|
|
446
444
|
}
|
|
447
445
|
|
|
448
|
-
.dark body{
|
|
446
|
+
.dark body {
|
|
449
447
|
background-color:rgb(var(--color-surface-900));
|
|
450
448
|
}
|
|
451
449
|
|
|
452
450
|
/* === Selection === */
|
|
453
451
|
|
|
454
|
-
::-moz-selection{
|
|
452
|
+
::-moz-selection {
|
|
455
453
|
background-color: rgb(var(--color-primary-500) / 0.3);
|
|
456
454
|
}
|
|
457
455
|
|
|
458
|
-
::selection{
|
|
456
|
+
::selection {
|
|
459
457
|
background-color: rgb(var(--color-primary-500) / 0.3);
|
|
460
458
|
}
|
|
461
459
|
|
|
@@ -475,29 +473,29 @@ html {
|
|
|
475
473
|
|
|
476
474
|
/* === Scrollbars === */
|
|
477
475
|
|
|
478
|
-
::-webkit-scrollbar{
|
|
476
|
+
::-webkit-scrollbar {
|
|
479
477
|
width: 0.5rem;
|
|
480
478
|
}
|
|
481
479
|
|
|
482
|
-
::-webkit-scrollbar-track{
|
|
480
|
+
::-webkit-scrollbar-track {
|
|
483
481
|
padding-left: 1px;
|
|
484
482
|
padding-right: 1px;
|
|
485
483
|
background-color: rgb(var(--color-surface-50)) !important;
|
|
486
484
|
}
|
|
487
485
|
|
|
488
|
-
.dark ::-webkit-scrollbar-track{
|
|
486
|
+
.dark ::-webkit-scrollbar-track {
|
|
489
487
|
background-color: rgb(var(--color-surface-900)) !important;
|
|
490
488
|
}
|
|
491
489
|
|
|
492
|
-
::-webkit-scrollbar-thumb{
|
|
490
|
+
::-webkit-scrollbar-thumb {
|
|
493
491
|
background-color: rgb(var(--color-surface-400));
|
|
494
492
|
}
|
|
495
493
|
|
|
496
|
-
.dark ::-webkit-scrollbar-thumb{
|
|
494
|
+
.dark ::-webkit-scrollbar-thumb {
|
|
497
495
|
background-color: rgb(var(--color-surface-500));
|
|
498
496
|
}
|
|
499
497
|
|
|
500
|
-
::-webkit-scrollbar-thumb{
|
|
498
|
+
::-webkit-scrollbar-thumb {
|
|
501
499
|
border-radius: var(--theme-rounded-base);
|
|
502
500
|
}
|
|
503
501
|
|
|
@@ -525,101 +523,101 @@ html.dark {
|
|
|
525
523
|
|
|
526
524
|
/* === Horizontal Rules === */
|
|
527
525
|
|
|
528
|
-
hr:not(.divider){
|
|
526
|
+
hr:not(.divider) {
|
|
529
527
|
display: block;
|
|
530
528
|
border-top-width: 1px;
|
|
531
529
|
border-style: solid;
|
|
532
530
|
border-color: rgb(var(--color-surface-300));
|
|
533
531
|
}
|
|
534
532
|
|
|
535
|
-
.dark hr:not(.divider){
|
|
533
|
+
.dark hr:not(.divider) {
|
|
536
534
|
border-color:rgb(var(--color-surface-600));
|
|
537
535
|
}
|
|
538
536
|
|
|
539
|
-
body{
|
|
537
|
+
body {
|
|
540
538
|
font-family: var(--theme-font-family-base);
|
|
541
539
|
color: rgba(var(--theme-font-color-base));
|
|
542
540
|
}
|
|
543
541
|
|
|
544
|
-
.dark body{
|
|
542
|
+
.dark body {
|
|
545
543
|
color:rgba(var(--theme-font-color-dark));
|
|
546
544
|
}
|
|
547
545
|
|
|
548
546
|
/* === Headings === */
|
|
549
547
|
|
|
550
|
-
h1:not(.unstyled):is(:not(.prose *)){
|
|
548
|
+
h1:not(.unstyled):is(:not(.prose *)) {
|
|
551
549
|
font-size: 1.875rem;
|
|
552
550
|
line-height: 2.25rem;
|
|
553
551
|
font-family: var(--theme-font-family-heading);
|
|
554
552
|
}
|
|
555
553
|
|
|
556
|
-
@media (min-width: 768px){
|
|
557
|
-
h1:not(.unstyled):is(:not(.prose *)){
|
|
554
|
+
@media (min-width: 768px) {
|
|
555
|
+
h1:not(.unstyled):is(:not(.prose *)) {
|
|
558
556
|
font-size: 3rem;
|
|
559
557
|
line-height: 1;
|
|
560
558
|
}
|
|
561
559
|
}
|
|
562
560
|
|
|
563
|
-
h2:not(.unstyled):is(:not(.prose *)){
|
|
561
|
+
h2:not(.unstyled):is(:not(.prose *)) {
|
|
564
562
|
font-size: 1.5rem;
|
|
565
563
|
line-height: 2rem;
|
|
566
564
|
font-family: var(--theme-font-family-heading);
|
|
567
565
|
}
|
|
568
566
|
|
|
569
|
-
@media (min-width: 768px){
|
|
570
|
-
h2:not(.unstyled):is(:not(.prose *)){
|
|
567
|
+
@media (min-width: 768px) {
|
|
568
|
+
h2:not(.unstyled):is(:not(.prose *)) {
|
|
571
569
|
font-size: 2.25rem;
|
|
572
570
|
line-height: 2.5rem;
|
|
573
571
|
}
|
|
574
572
|
}
|
|
575
573
|
|
|
576
|
-
h3:not(.unstyled):is(:not(.prose *)){
|
|
574
|
+
h3:not(.unstyled):is(:not(.prose *)) {
|
|
577
575
|
font-size: 1.25rem;
|
|
578
576
|
line-height: 1.75rem;
|
|
579
577
|
font-family: var(--theme-font-family-heading);
|
|
580
578
|
}
|
|
581
579
|
|
|
582
|
-
@media (min-width: 768px){
|
|
583
|
-
h3:not(.unstyled):is(:not(.prose *)){
|
|
580
|
+
@media (min-width: 768px) {
|
|
581
|
+
h3:not(.unstyled):is(:not(.prose *)) {
|
|
584
582
|
font-size: 1.5rem;
|
|
585
583
|
line-height: 2rem;
|
|
586
584
|
}
|
|
587
585
|
}
|
|
588
586
|
|
|
589
|
-
h4:not(.unstyled):is(:not(.prose *)){
|
|
587
|
+
h4:not(.unstyled):is(:not(.prose *)) {
|
|
590
588
|
font-size: 1.125rem;
|
|
591
589
|
line-height: 1.75rem;
|
|
592
590
|
font-family: var(--theme-font-family-heading);
|
|
593
591
|
}
|
|
594
592
|
|
|
595
|
-
@media (min-width: 768px){
|
|
596
|
-
h4:not(.unstyled):is(:not(.prose *)){
|
|
593
|
+
@media (min-width: 768px) {
|
|
594
|
+
h4:not(.unstyled):is(:not(.prose *)) {
|
|
597
595
|
font-size: 1.25rem;
|
|
598
596
|
line-height: 1.75rem;
|
|
599
597
|
}
|
|
600
598
|
}
|
|
601
599
|
|
|
602
|
-
h5:not(.unstyled):is(:not(.prose *)){
|
|
600
|
+
h5:not(.unstyled):is(:not(.prose *)) {
|
|
603
601
|
font-size: 1rem;
|
|
604
602
|
line-height: 1.5rem;
|
|
605
603
|
font-family: var(--theme-font-family-heading);
|
|
606
604
|
}
|
|
607
605
|
|
|
608
|
-
@media (min-width: 768px){
|
|
609
|
-
h5:not(.unstyled):is(:not(.prose *)){
|
|
606
|
+
@media (min-width: 768px) {
|
|
607
|
+
h5:not(.unstyled):is(:not(.prose *)) {
|
|
610
608
|
font-size: 1.125rem;
|
|
611
609
|
line-height: 1.75rem;
|
|
612
610
|
}
|
|
613
611
|
}
|
|
614
612
|
|
|
615
|
-
h6:not(.unstyled):is(:not(.prose *)){
|
|
613
|
+
h6:not(.unstyled):is(:not(.prose *)) {
|
|
616
614
|
font-size: 0.875rem;
|
|
617
615
|
line-height: 1.25rem;
|
|
618
616
|
font-family: var(--theme-font-family-heading);
|
|
619
617
|
}
|
|
620
618
|
|
|
621
|
-
@media (min-width: 768px){
|
|
622
|
-
h6:not(.unstyled):is(:not(.prose *)){
|
|
619
|
+
@media (min-width: 768px) {
|
|
620
|
+
h6:not(.unstyled):is(:not(.prose *)) {
|
|
623
621
|
font-size: 1rem;
|
|
624
622
|
line-height: 1.5rem;
|
|
625
623
|
}
|
|
@@ -635,7 +633,7 @@ p:not(.unstyled):is(:not(.prose *)) {
|
|
|
635
633
|
|
|
636
634
|
a:not(.unstyled):not(.permalink):is(:not(.prose *)):not(.btn):not(.btn-icon):not(.app-bar a):not(.logo-item):not(a.card):not(
|
|
637
635
|
.list-nav a
|
|
638
|
-
){
|
|
636
|
+
) {
|
|
639
637
|
--tw-text-opacity: 1;
|
|
640
638
|
color: rgb(var(--color-primary-700) / var(--tw-text-opacity));
|
|
641
639
|
text-decoration-line: underline;
|
|
@@ -643,19 +641,19 @@ a:not(.unstyled):not(.permalink):is(:not(.prose *)):not(.btn):not(.btn-icon):not
|
|
|
643
641
|
|
|
644
642
|
a:not(.unstyled):not(.permalink):is(:not(.prose *)):not(.btn):not(.btn-icon):not(.app-bar a):not(.logo-item):not(a.card):not(
|
|
645
643
|
.list-nav a
|
|
646
|
-
):hover{
|
|
644
|
+
):hover {
|
|
647
645
|
--tw-brightness: brightness(1.1);
|
|
648
646
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
649
647
|
}
|
|
650
648
|
|
|
651
649
|
.dark a:not(.unstyled):not(.permalink):is(:not(.prose *)):not(.btn):not(.btn-icon):not(.app-bar a):not(.logo-item):not(a.card):not(
|
|
652
650
|
.list-nav a
|
|
653
|
-
){
|
|
651
|
+
) {
|
|
654
652
|
--tw-text-opacity: 1;
|
|
655
653
|
color: rgb(var(--color-primary-500) / var(--tw-text-opacity));
|
|
656
654
|
}
|
|
657
655
|
|
|
658
|
-
blockquote:not(.unstyled):is(:not(.prose *)){
|
|
656
|
+
blockquote:not(.unstyled):is(:not(.prose *)) {
|
|
659
657
|
border-left-width: 8px;
|
|
660
658
|
--tw-border-opacity: 1;
|
|
661
659
|
border-left-color: rgb(var(--color-secondary-500) / var(--tw-border-opacity));
|
|
@@ -667,13 +665,13 @@ blockquote:not(.unstyled):is(:not(.prose *)){
|
|
|
667
665
|
color: rgba(var(--theme-font-color-base));
|
|
668
666
|
}
|
|
669
667
|
|
|
670
|
-
.dark blockquote:not(.unstyled):is(:not(.prose *)){
|
|
668
|
+
.dark blockquote:not(.unstyled):is(:not(.prose *)) {
|
|
671
669
|
color:rgba(var(--theme-font-color-dark));
|
|
672
670
|
}
|
|
673
671
|
|
|
674
672
|
/* Keyboard */
|
|
675
673
|
|
|
676
|
-
kbd:not(.unstyled):is(:not(.prose *)){
|
|
674
|
+
kbd:not(.unstyled):is(:not(.prose *)) {
|
|
677
675
|
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
678
676
|
font-size: 0.875rem;
|
|
679
677
|
line-height: 1.25rem;
|
|
@@ -686,7 +684,7 @@ kbd:not(.unstyled):is(:not(.prose *)){
|
|
|
686
684
|
background-color: rgb(var(--color-surface-300));
|
|
687
685
|
}
|
|
688
686
|
|
|
689
|
-
.dark kbd:not(.unstyled):is(:not(.prose *)){
|
|
687
|
+
.dark kbd:not(.unstyled):is(:not(.prose *)) {
|
|
690
688
|
background-color: rgb(var(--color-surface-600));
|
|
691
689
|
}
|
|
692
690
|
|
|
@@ -698,7 +696,7 @@ kbd:not(.unstyled):is(:not(.prose *)){
|
|
|
698
696
|
background-color:rgb(var(--color-surface-600))
|
|
699
697
|
}
|
|
700
698
|
|
|
701
|
-
kbd:not(.unstyled):is(:not(.prose *)){
|
|
699
|
+
kbd:not(.unstyled):is(:not(.prose *)) {
|
|
702
700
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
703
701
|
--tw-ring-inset: inset;
|
|
704
702
|
--tw-ring-opacity: 1;
|
|
@@ -715,7 +713,7 @@ kbd:not(.unstyled):is(:not(.prose *)){
|
|
|
715
713
|
|
|
716
714
|
/* For use outside of Skeleton's CodeBlock component */
|
|
717
715
|
|
|
718
|
-
pre:not(.unstyled):not(.code-block pre):is(:not(.prose *)){
|
|
716
|
+
pre:not(.unstyled):not(.code-block pre):is(:not(.prose *)) {
|
|
719
717
|
overflow-x: auto;
|
|
720
718
|
white-space: pre-wrap;
|
|
721
719
|
background-color: rgb(23 23 23 / 0.9);
|
|
@@ -728,7 +726,7 @@ pre:not(.unstyled):not(.code-block pre):is(:not(.prose *)){
|
|
|
728
726
|
border-radius:var(--theme-rounded-container);
|
|
729
727
|
}
|
|
730
728
|
|
|
731
|
-
code:not(.unstyled):is(:not(.prose *)):is(:not(pre *)){
|
|
729
|
+
code:not(.unstyled):is(:not(.prose *)):is(:not(pre *)) {
|
|
732
730
|
white-space: nowrap;
|
|
733
731
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
734
732
|
font-size: 0.75rem;
|
|
@@ -737,20 +735,20 @@ code:not(.unstyled):is(:not(.prose *)):is(:not(pre *)){
|
|
|
737
735
|
color: rgb(var(--color-primary-700) / var(--tw-text-opacity));
|
|
738
736
|
}
|
|
739
737
|
|
|
740
|
-
.dark code:not(.unstyled):is(:not(.prose *)):is(:not(pre *)){
|
|
738
|
+
.dark code:not(.unstyled):is(:not(.prose *)):is(:not(pre *)) {
|
|
741
739
|
--tw-text-opacity: 1;
|
|
742
740
|
color: rgb(var(--color-primary-400) / var(--tw-text-opacity));
|
|
743
741
|
}
|
|
744
742
|
|
|
745
|
-
code:not(.unstyled):is(:not(.prose *)):is(:not(pre *)){
|
|
743
|
+
code:not(.unstyled):is(:not(.prose *)):is(:not(pre *)) {
|
|
746
744
|
background-color: rgb(var(--color-primary-500) / 0.3);
|
|
747
745
|
}
|
|
748
746
|
|
|
749
|
-
.dark code:not(.unstyled):is(:not(.prose *)):is(:not(pre *)){
|
|
747
|
+
.dark code:not(.unstyled):is(:not(.prose *)):is(:not(pre *)) {
|
|
750
748
|
background-color: rgb(var(--color-primary-500) / 0.2);
|
|
751
749
|
}
|
|
752
750
|
|
|
753
|
-
code:not(.unstyled):is(:not(.prose *)):is(:not(pre *)){
|
|
751
|
+
code:not(.unstyled):is(:not(.prose *)):is(:not(pre *)) {
|
|
754
752
|
padding-top: 0.125rem;
|
|
755
753
|
padding-bottom: 0.125rem;
|
|
756
754
|
padding-left: 0.25rem;
|
|
@@ -765,7 +763,7 @@ code:not(.unstyled):is(:not(.prose *)):is(:not(pre *)){
|
|
|
765
763
|
/* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del */
|
|
766
764
|
|
|
767
765
|
ins:not(.unstyled):is(:not(.prose *)),
|
|
768
|
-
del:not(.unstyled):is(:not(.prose *)){
|
|
766
|
+
del:not(.unstyled):is(:not(.prose *)) {
|
|
769
767
|
position: relative;
|
|
770
768
|
display: block;
|
|
771
769
|
padding: 0.125rem;
|
|
@@ -774,7 +772,7 @@ ins:not(.unstyled):is(:not(.prose *)),
|
|
|
774
772
|
}
|
|
775
773
|
|
|
776
774
|
ins:not(.unstyled):is(:not(.prose *))::before,
|
|
777
|
-
del:not(.unstyled):is(:not(.prose *))::before{
|
|
775
|
+
del:not(.unstyled):is(:not(.prose *))::before {
|
|
778
776
|
left: 0.25rem;
|
|
779
777
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
780
778
|
position:absolute;
|
|
@@ -788,14 +786,14 @@ del:not(.unstyled):is(:not(.prose *))::before {
|
|
|
788
786
|
content: '−';
|
|
789
787
|
}
|
|
790
788
|
|
|
791
|
-
ins:not(.unstyled):is(:not(.prose *)){
|
|
789
|
+
ins:not(.unstyled):is(:not(.prose *)) {
|
|
792
790
|
--tw-bg-opacity: 1;
|
|
793
791
|
background-color: rgb(var(--color-success-500) / var(--tw-bg-opacity));
|
|
794
792
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
795
793
|
color: rgb(var(--on-success));
|
|
796
794
|
}
|
|
797
795
|
|
|
798
|
-
del:not(.unstyled):is(:not(.prose *)){
|
|
796
|
+
del:not(.unstyled):is(:not(.prose *)) {
|
|
799
797
|
--tw-bg-opacity: 1;
|
|
800
798
|
background-color: rgb(var(--color-error-500) / var(--tw-bg-opacity));
|
|
801
799
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
@@ -806,14 +804,14 @@ del:not(.unstyled):is(:not(.prose *)){
|
|
|
806
804
|
|
|
807
805
|
/* Useful for displaying timestamps */
|
|
808
806
|
|
|
809
|
-
time:not(.unstyled):is(:not(.prose *)){
|
|
807
|
+
time:not(.unstyled):is(:not(.prose *)) {
|
|
810
808
|
font-size: 0.875rem;
|
|
811
809
|
line-height: 1.25rem;
|
|
812
810
|
--tw-text-opacity: 1;
|
|
813
811
|
color: rgb(var(--color-surface-500) / var(--tw-text-opacity));
|
|
814
812
|
}
|
|
815
813
|
|
|
816
|
-
.dark time:not(.unstyled):is(:not(.prose *)){
|
|
814
|
+
.dark time:not(.unstyled):is(:not(.prose *)) {
|
|
817
815
|
--tw-text-opacity: 1;
|
|
818
816
|
color: rgb(var(--color-surface-400) / var(--tw-text-opacity));
|
|
819
817
|
}
|
|
@@ -822,39 +820,39 @@ time:not(.unstyled):is(:not(.prose *)){
|
|
|
822
820
|
|
|
823
821
|
fieldset,
|
|
824
822
|
legend,
|
|
825
|
-
label{
|
|
823
|
+
label {
|
|
826
824
|
display: block;
|
|
827
825
|
}
|
|
828
826
|
|
|
829
827
|
/* Placeholders */
|
|
830
828
|
|
|
831
|
-
::-moz-placeholder{
|
|
829
|
+
::-moz-placeholder {
|
|
832
830
|
color: rgb(var(--color-surface-500));
|
|
833
831
|
}
|
|
834
832
|
|
|
835
|
-
.dark ::-moz-placeholder{
|
|
833
|
+
.dark ::-moz-placeholder {
|
|
836
834
|
color:rgb(var(--color-surface-400));
|
|
837
835
|
}
|
|
838
836
|
|
|
839
|
-
::-moz-placeholder{
|
|
837
|
+
::-moz-placeholder {
|
|
840
838
|
color: rgb(var(--color-surface-500));
|
|
841
839
|
}
|
|
842
840
|
|
|
843
|
-
::placeholder{
|
|
841
|
+
::placeholder {
|
|
844
842
|
color: rgb(var(--color-surface-500));
|
|
845
843
|
}
|
|
846
844
|
|
|
847
|
-
.dark ::-moz-placeholder{
|
|
845
|
+
.dark ::-moz-placeholder {
|
|
848
846
|
color:rgb(var(--color-surface-400));
|
|
849
847
|
}
|
|
850
848
|
|
|
851
|
-
.dark ::placeholder{
|
|
849
|
+
.dark ::placeholder {
|
|
852
850
|
color:rgb(var(--color-surface-400));
|
|
853
851
|
}
|
|
854
852
|
|
|
855
853
|
/* Date Calendar Picker (Webkit) */
|
|
856
854
|
|
|
857
|
-
.dark ::-webkit-calendar-picker-indicator{
|
|
855
|
+
.dark ::-webkit-calendar-picker-indicator {
|
|
858
856
|
--tw-invert: invert(100%);
|
|
859
857
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
860
858
|
}
|
|
@@ -873,31 +871,31 @@ progress {
|
|
|
873
871
|
background-color: rgb(var(--color-surface-400));
|
|
874
872
|
}
|
|
875
873
|
|
|
876
|
-
.dark progress{
|
|
874
|
+
.dark progress {
|
|
877
875
|
background-color:rgb(var(--color-surface-500));
|
|
878
876
|
}
|
|
879
877
|
|
|
880
|
-
progress::-webkit-progress-bar{
|
|
878
|
+
progress::-webkit-progress-bar {
|
|
881
879
|
background-color: rgb(var(--color-surface-400));
|
|
882
880
|
}
|
|
883
881
|
|
|
884
|
-
.dark progress::-webkit-progress-bar{
|
|
882
|
+
.dark progress::-webkit-progress-bar {
|
|
885
883
|
background-color:rgb(var(--color-surface-500));
|
|
886
884
|
}
|
|
887
885
|
|
|
888
|
-
progress::-webkit-progress-value{
|
|
886
|
+
progress::-webkit-progress-value {
|
|
889
887
|
background-color: rgb(var(--color-surface-900));
|
|
890
888
|
}
|
|
891
889
|
|
|
892
|
-
.dark progress::-webkit-progress-value{
|
|
890
|
+
.dark progress::-webkit-progress-value {
|
|
893
891
|
background-color:rgb(var(--color-surface-50));
|
|
894
892
|
}
|
|
895
893
|
|
|
896
|
-
::-moz-progress-bar{
|
|
894
|
+
::-moz-progress-bar {
|
|
897
895
|
background-color: rgb(var(--color-surface-900));
|
|
898
896
|
}
|
|
899
897
|
|
|
900
|
-
.dark ::-moz-progress-bar{
|
|
898
|
+
.dark ::-moz-progress-bar {
|
|
901
899
|
background-color:rgb(var(--color-surface-50));
|
|
902
900
|
}
|
|
903
901
|
|
|
@@ -909,12 +907,12 @@ progress::-webkit-progress-value{
|
|
|
909
907
|
|
|
910
908
|
/* https://developer.mozilla.org/en-US/docs/Web/CSS/accent-color */
|
|
911
909
|
|
|
912
|
-
[type='range']{
|
|
910
|
+
[type='range'] {
|
|
913
911
|
accent-color: rgb(var(--color-surface-900) / 1);
|
|
914
912
|
width:100%;
|
|
915
913
|
}
|
|
916
914
|
|
|
917
|
-
.dark [type='range']{
|
|
915
|
+
.dark [type='range'] {
|
|
918
916
|
accent-color: rgb(var(--color-surface-50) / 1);
|
|
919
917
|
}
|
|
920
918
|
|
|
@@ -954,7 +952,7 @@ progress::-webkit-progress-value{
|
|
|
954
952
|
|
|
955
953
|
/* Material */
|
|
956
954
|
|
|
957
|
-
*, ::before, ::after{
|
|
955
|
+
*, ::before, ::after {
|
|
958
956
|
--tw-border-spacing-x: 0;
|
|
959
957
|
--tw-border-spacing-y: 0;
|
|
960
958
|
--tw-translate-x: 0;
|
|
@@ -1001,7 +999,7 @@ progress::-webkit-progress-value{
|
|
|
1001
999
|
--tw-backdrop-sepia: ;
|
|
1002
1000
|
}
|
|
1003
1001
|
|
|
1004
|
-
::backdrop{
|
|
1002
|
+
::backdrop {
|
|
1005
1003
|
--tw-border-spacing-x: 0;
|
|
1006
1004
|
--tw-border-spacing-y: 0;
|
|
1007
1005
|
--tw-translate-x: 0;
|
|
@@ -1056,17 +1054,17 @@ progress::-webkit-progress-value{
|
|
|
1056
1054
|
|
|
1057
1055
|
/* === States === */
|
|
1058
1056
|
|
|
1059
|
-
button:disabled{
|
|
1057
|
+
button:disabled {
|
|
1060
1058
|
cursor: not-allowed !important;
|
|
1061
1059
|
opacity: 0.5 !important;
|
|
1062
1060
|
}
|
|
1063
1061
|
|
|
1064
|
-
button:disabled:hover{
|
|
1062
|
+
button:disabled:hover {
|
|
1065
1063
|
--tw-brightness: brightness(1);
|
|
1066
1064
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1067
1065
|
}
|
|
1068
1066
|
|
|
1069
|
-
button:disabled:active{
|
|
1067
|
+
button:disabled:active {
|
|
1070
1068
|
--tw-scale-x: 1;
|
|
1071
1069
|
--tw-scale-y: 1;
|
|
1072
1070
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -1093,7 +1091,7 @@ button:disabled:active{
|
|
|
1093
1091
|
justify-content: center;
|
|
1094
1092
|
}
|
|
1095
1093
|
|
|
1096
|
-
.btn > :not([hidden]) ~ :not([hidden]){
|
|
1094
|
+
.btn > :not([hidden]) ~ :not([hidden]) {
|
|
1097
1095
|
--tw-space-x-reverse: 0;
|
|
1098
1096
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1099
1097
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
@@ -1105,7 +1103,7 @@ button:disabled:active{
|
|
|
1105
1103
|
/* States */
|
|
1106
1104
|
}
|
|
1107
1105
|
|
|
1108
|
-
.btn:hover{
|
|
1106
|
+
.btn:hover {
|
|
1109
1107
|
--tw-brightness: brightness(1.15);
|
|
1110
1108
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1111
1109
|
}
|
|
@@ -1120,7 +1118,7 @@ button:disabled:active{
|
|
|
1120
1118
|
border-radius:var(--theme-rounded-base);
|
|
1121
1119
|
}
|
|
1122
1120
|
|
|
1123
|
-
.btn:active{
|
|
1121
|
+
.btn:active {
|
|
1124
1122
|
--tw-scale-x: 95%;
|
|
1125
1123
|
--tw-scale-y: 95%;
|
|
1126
1124
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -1157,7 +1155,7 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1157
1155
|
justify-content: center;
|
|
1158
1156
|
}
|
|
1159
1157
|
|
|
1160
|
-
input[type='file']:not(.file-dropzone-input)::file-selector-button > :not([hidden]) ~ :not([hidden]){
|
|
1158
|
+
input[type='file']:not(.file-dropzone-input)::file-selector-button > :not([hidden]) ~ :not([hidden]) {
|
|
1161
1159
|
--tw-space-x-reverse: 0;
|
|
1162
1160
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1163
1161
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
@@ -1169,7 +1167,7 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
|
1169
1167
|
/* States */
|
|
1170
1168
|
}
|
|
1171
1169
|
|
|
1172
|
-
input[type='file']:not(.file-dropzone-input)::file-selector-button:hover{
|
|
1170
|
+
input[type='file']:not(.file-dropzone-input)::file-selector-button:hover {
|
|
1173
1171
|
--tw-brightness: brightness(1.15);
|
|
1174
1172
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1175
1173
|
}
|
|
@@ -1184,7 +1182,7 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1184
1182
|
border-radius:var(--theme-rounded-base);
|
|
1185
1183
|
}
|
|
1186
1184
|
|
|
1187
|
-
input[type='file']:not(.file-dropzone-input)::file-selector-button:active{
|
|
1185
|
+
input[type='file']:not(.file-dropzone-input)::file-selector-button:active {
|
|
1188
1186
|
--tw-scale-x: 95%;
|
|
1189
1187
|
--tw-scale-y: 95%;
|
|
1190
1188
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -1192,7 +1190,7 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button:active{
|
|
|
1192
1190
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1193
1191
|
}
|
|
1194
1192
|
|
|
1195
|
-
input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
1193
|
+
input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
1196
1194
|
padding-left: 0.75rem;
|
|
1197
1195
|
padding-right: 0.75rem;
|
|
1198
1196
|
padding-top: 0.375rem;
|
|
@@ -1202,20 +1200,20 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
|
1202
1200
|
background-color: rgb(var(--color-surface-900));
|
|
1203
1201
|
}
|
|
1204
1202
|
|
|
1205
|
-
.dark input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
1203
|
+
.dark input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
1206
1204
|
background-color: rgb(var(--color-surface-50));
|
|
1207
1205
|
}
|
|
1208
1206
|
|
|
1209
|
-
input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
1207
|
+
input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
1210
1208
|
color: rgb(var(--color-surface-50));
|
|
1211
1209
|
}
|
|
1212
1210
|
|
|
1213
|
-
.dark input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
1211
|
+
.dark input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
1214
1212
|
background-color:rgb(var(--color-surface-50));
|
|
1215
1213
|
color:rgb(var(--color-surface-900));
|
|
1216
1214
|
}
|
|
1217
1215
|
|
|
1218
|
-
input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
1216
|
+
input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
1219
1217
|
margin-right: 0.5rem;
|
|
1220
1218
|
border-width: 0px;
|
|
1221
1219
|
}
|
|
@@ -1242,7 +1240,7 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
|
1242
1240
|
|
|
1243
1241
|
.list > :not([hidden]) ~ :not([hidden]),
|
|
1244
1242
|
.list-dl > :not([hidden]) ~ :not([hidden]),
|
|
1245
|
-
.list-nav ul > :not([hidden]) ~ :not([hidden]){
|
|
1243
|
+
.list-nav ul > :not([hidden]) ~ :not([hidden]) {
|
|
1246
1244
|
--tw-space-y-reverse: 0;
|
|
1247
1245
|
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1248
1246
|
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
@@ -1252,14 +1250,14 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
|
1252
1250
|
|
|
1253
1251
|
.list-nav a,
|
|
1254
1252
|
.list-nav button,
|
|
1255
|
-
.list-option{
|
|
1253
|
+
.list-option {
|
|
1256
1254
|
display: flex;
|
|
1257
1255
|
align-items: center;
|
|
1258
1256
|
}
|
|
1259
1257
|
|
|
1260
1258
|
.list-nav a > :not([hidden]) ~ :not([hidden]),
|
|
1261
1259
|
.list-nav button > :not([hidden]) ~ :not([hidden]),
|
|
1262
|
-
.list-option > :not([hidden]) ~ :not([hidden]){
|
|
1260
|
+
.list-option > :not([hidden]) ~ :not([hidden]) {
|
|
1263
1261
|
--tw-space-x-reverse: 0;
|
|
1264
1262
|
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
1265
1263
|
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
@@ -1267,7 +1265,7 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
|
1267
1265
|
|
|
1268
1266
|
.list-nav a,
|
|
1269
1267
|
.list-nav button,
|
|
1270
|
-
.list-option{
|
|
1268
|
+
.list-option {
|
|
1271
1269
|
white-space: nowrap;
|
|
1272
1270
|
display:flex;
|
|
1273
1271
|
align-items:center;
|
|
@@ -1281,7 +1279,7 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
|
1281
1279
|
|
|
1282
1280
|
.list-nav a:hover,
|
|
1283
1281
|
.list-nav button:hover,
|
|
1284
|
-
.list-option:hover{
|
|
1282
|
+
.list-option:hover {
|
|
1285
1283
|
background-color: rgb(var(--color-primary-500) / 0.1);
|
|
1286
1284
|
}
|
|
1287
1285
|
|
|
@@ -1306,11 +1304,11 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
|
1306
1304
|
|
|
1307
1305
|
/* === Sort Styles ==== */
|
|
1308
1306
|
|
|
1309
|
-
[data-sort]{
|
|
1307
|
+
[data-sort] {
|
|
1310
1308
|
cursor:pointer;
|
|
1311
1309
|
}
|
|
1312
1310
|
|
|
1313
|
-
[data-sort]:hover:hover{
|
|
1311
|
+
[data-sort]:hover:hover {
|
|
1314
1312
|
background-color: rgb(var(--color-primary-500) / 0.1);
|
|
1315
1313
|
}
|
|
1316
1314
|
|
|
@@ -1318,7 +1316,7 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
|
1318
1316
|
/* Sort Icon - invisible by default */
|
|
1319
1317
|
}
|
|
1320
1318
|
|
|
1321
|
-
[data-sort]::after{
|
|
1319
|
+
[data-sort]::after {
|
|
1322
1320
|
margin-left: 0.5rem !important;
|
|
1323
1321
|
opacity: 0;
|
|
1324
1322
|
--tw-content: '↓' !important;
|
|
@@ -1351,1095 +1349,1095 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
|
1351
1349
|
|
|
1352
1350
|
/* Glass */
|
|
1353
1351
|
|
|
1354
|
-
.absolute{
|
|
1352
|
+
.absolute {
|
|
1355
1353
|
position: absolute;
|
|
1356
1354
|
}
|
|
1357
1355
|
|
|
1358
|
-
.-m-4{
|
|
1356
|
+
.-m-4 {
|
|
1359
1357
|
margin: -1rem;
|
|
1360
1358
|
}
|
|
1361
1359
|
|
|
1362
|
-
.flex{
|
|
1360
|
+
.flex {
|
|
1363
1361
|
display: flex;
|
|
1364
1362
|
}
|
|
1365
1363
|
|
|
1366
|
-
.aspect-square{
|
|
1364
|
+
.aspect-square {
|
|
1367
1365
|
aspect-ratio: 1 / 1;
|
|
1368
1366
|
}
|
|
1369
1367
|
|
|
1370
|
-
.h-6{
|
|
1368
|
+
.h-6 {
|
|
1371
1369
|
height: 1.5rem;
|
|
1372
1370
|
}
|
|
1373
1371
|
|
|
1374
|
-
.h-fit{
|
|
1372
|
+
.h-fit {
|
|
1375
1373
|
height: -moz-fit-content;
|
|
1376
1374
|
height: fit-content;
|
|
1377
1375
|
}
|
|
1378
1376
|
|
|
1379
|
-
.h-full{
|
|
1377
|
+
.h-full {
|
|
1380
1378
|
height: 100%;
|
|
1381
1379
|
}
|
|
1382
1380
|
|
|
1383
|
-
.max-h-64{
|
|
1381
|
+
.max-h-64 {
|
|
1384
1382
|
max-height: 16rem;
|
|
1385
1383
|
}
|
|
1386
1384
|
|
|
1387
|
-
.w-12{
|
|
1385
|
+
.w-12 {
|
|
1388
1386
|
width: 3rem;
|
|
1389
1387
|
}
|
|
1390
1388
|
|
|
1391
|
-
.w-24{
|
|
1389
|
+
.w-24 {
|
|
1392
1390
|
width: 6rem;
|
|
1393
1391
|
}
|
|
1394
1392
|
|
|
1395
|
-
.w-60{
|
|
1393
|
+
.w-60 {
|
|
1396
1394
|
width: 15rem;
|
|
1397
1395
|
}
|
|
1398
1396
|
|
|
1399
|
-
.w-\[70\%\]{
|
|
1397
|
+
.w-\[70\%\] {
|
|
1400
1398
|
width: 70%;
|
|
1401
1399
|
}
|
|
1402
1400
|
|
|
1403
|
-
.w-fit{
|
|
1401
|
+
.w-fit {
|
|
1404
1402
|
width: -moz-fit-content;
|
|
1405
1403
|
width: fit-content;
|
|
1406
1404
|
}
|
|
1407
1405
|
|
|
1408
|
-
.w-full{
|
|
1406
|
+
.w-full {
|
|
1409
1407
|
width: 100%;
|
|
1410
1408
|
}
|
|
1411
1409
|
|
|
1412
|
-
.translate-x-\[100\%\]{
|
|
1410
|
+
.translate-x-\[100\%\] {
|
|
1413
1411
|
--tw-translate-x: 100%;
|
|
1414
1412
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1415
1413
|
}
|
|
1416
1414
|
|
|
1417
|
-
.scale-\[0\.8\]{
|
|
1415
|
+
.scale-\[0\.8\] {
|
|
1418
1416
|
--tw-scale-x: 0.8;
|
|
1419
1417
|
--tw-scale-y: 0.8;
|
|
1420
1418
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1421
1419
|
}
|
|
1422
1420
|
|
|
1423
|
-
.cursor-pointer{
|
|
1421
|
+
.cursor-pointer {
|
|
1424
1422
|
cursor: pointer;
|
|
1425
1423
|
}
|
|
1426
1424
|
|
|
1427
|
-
.flex-col{
|
|
1425
|
+
.flex-col {
|
|
1428
1426
|
flex-direction: column;
|
|
1429
1427
|
}
|
|
1430
1428
|
|
|
1431
|
-
.items-center{
|
|
1429
|
+
.items-center {
|
|
1432
1430
|
align-items: center;
|
|
1433
1431
|
}
|
|
1434
1432
|
|
|
1435
|
-
.justify-center{
|
|
1433
|
+
.justify-center {
|
|
1436
1434
|
justify-content: center;
|
|
1437
1435
|
}
|
|
1438
1436
|
|
|
1439
|
-
.justify-between{
|
|
1437
|
+
.justify-between {
|
|
1440
1438
|
justify-content: space-between;
|
|
1441
1439
|
}
|
|
1442
1440
|
|
|
1443
|
-
.gap-4{
|
|
1441
|
+
.gap-4 {
|
|
1444
1442
|
gap: 1rem;
|
|
1445
1443
|
}
|
|
1446
1444
|
|
|
1447
|
-
.space-y-4 > :not([hidden]) ~ :not([hidden]){
|
|
1445
|
+
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1448
1446
|
--tw-space-y-reverse: 0;
|
|
1449
1447
|
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1450
1448
|
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
|
1451
1449
|
}
|
|
1452
1450
|
|
|
1453
|
-
.overflow-y-auto{
|
|
1451
|
+
.overflow-y-auto {
|
|
1454
1452
|
overflow-y: auto;
|
|
1455
1453
|
}
|
|
1456
1454
|
|
|
1457
|
-
.rounded{
|
|
1455
|
+
.rounded {
|
|
1458
1456
|
border-radius: 0.25rem;
|
|
1459
1457
|
}
|
|
1460
1458
|
|
|
1461
|
-
.bg-primary-50{
|
|
1459
|
+
.bg-primary-50 {
|
|
1462
1460
|
--tw-bg-opacity: 1;
|
|
1463
1461
|
background-color: rgb(var(--color-primary-50) / var(--tw-bg-opacity));
|
|
1464
1462
|
}
|
|
1465
1463
|
|
|
1466
|
-
.bg-primary-900{
|
|
1464
|
+
.bg-primary-900 {
|
|
1467
1465
|
--tw-bg-opacity: 1;
|
|
1468
1466
|
background-color: rgb(var(--color-primary-900) / var(--tw-bg-opacity));
|
|
1469
1467
|
}
|
|
1470
1468
|
|
|
1471
|
-
.bg-surface-200{
|
|
1469
|
+
.bg-surface-200 {
|
|
1472
1470
|
--tw-bg-opacity: 1;
|
|
1473
1471
|
background-color: rgb(var(--color-surface-200) / var(--tw-bg-opacity));
|
|
1474
1472
|
}
|
|
1475
1473
|
|
|
1476
|
-
.bg-surface-50{
|
|
1474
|
+
.bg-surface-50 {
|
|
1477
1475
|
--tw-bg-opacity: 1;
|
|
1478
1476
|
background-color: rgb(var(--color-surface-50) / var(--tw-bg-opacity));
|
|
1479
1477
|
}
|
|
1480
1478
|
|
|
1481
|
-
.bg-surface-900{
|
|
1479
|
+
.bg-surface-900 {
|
|
1482
1480
|
--tw-bg-opacity: 1;
|
|
1483
1481
|
background-color: rgb(var(--color-surface-900) / var(--tw-bg-opacity));
|
|
1484
1482
|
}
|
|
1485
1483
|
|
|
1486
|
-
.p-2{
|
|
1484
|
+
.p-2 {
|
|
1487
1485
|
padding: 0.5rem;
|
|
1488
1486
|
}
|
|
1489
1487
|
|
|
1490
|
-
.p-4{
|
|
1488
|
+
.p-4 {
|
|
1491
1489
|
padding: 1rem;
|
|
1492
1490
|
}
|
|
1493
1491
|
|
|
1494
|
-
.text-center{
|
|
1492
|
+
.text-center {
|
|
1495
1493
|
text-align: center;
|
|
1496
1494
|
}
|
|
1497
1495
|
|
|
1498
|
-
.capitalize{
|
|
1496
|
+
.capitalize {
|
|
1499
1497
|
text-transform: capitalize;
|
|
1500
1498
|
}
|
|
1501
1499
|
|
|
1502
|
-
.text-primary-50{
|
|
1500
|
+
.text-primary-50 {
|
|
1503
1501
|
--tw-text-opacity: 1;
|
|
1504
1502
|
color: rgb(var(--color-primary-50) / var(--tw-text-opacity));
|
|
1505
1503
|
}
|
|
1506
1504
|
|
|
1507
|
-
.text-primary-900{
|
|
1505
|
+
.text-primary-900 {
|
|
1508
1506
|
--tw-text-opacity: 1;
|
|
1509
1507
|
color: rgb(var(--color-primary-900) / var(--tw-text-opacity));
|
|
1510
1508
|
}
|
|
1511
1509
|
|
|
1512
|
-
.text-surface-50{
|
|
1510
|
+
.text-surface-50 {
|
|
1513
1511
|
--tw-text-opacity: 1;
|
|
1514
1512
|
color: rgb(var(--color-surface-50) / var(--tw-text-opacity));
|
|
1515
1513
|
}
|
|
1516
1514
|
|
|
1517
|
-
.text-surface-900{
|
|
1515
|
+
.text-surface-900 {
|
|
1518
1516
|
--tw-text-opacity: 1;
|
|
1519
1517
|
color: rgb(var(--color-surface-900) / var(--tw-text-opacity));
|
|
1520
1518
|
}
|
|
1521
1519
|
|
|
1522
|
-
.shadow-xl{
|
|
1520
|
+
.shadow-xl {
|
|
1523
1521
|
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
1524
1522
|
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
1525
1523
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1526
1524
|
}
|
|
1527
1525
|
|
|
1528
|
-
.ring{
|
|
1526
|
+
.ring {
|
|
1529
1527
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1530
1528
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1531
1529
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1532
1530
|
}
|
|
1533
1531
|
|
|
1534
|
-
.ring-\[1px\]{
|
|
1532
|
+
.ring-\[1px\] {
|
|
1535
1533
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1536
1534
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1537
1535
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1538
1536
|
}
|
|
1539
1537
|
|
|
1540
|
-
.ring-primary-500\/30{
|
|
1538
|
+
.ring-primary-500\/30 {
|
|
1541
1539
|
--tw-ring-color: rgb(var(--color-primary-500) / 0.3);
|
|
1542
1540
|
}
|
|
1543
1541
|
|
|
1544
|
-
.ring-surface-500\/30{
|
|
1542
|
+
.ring-surface-500\/30 {
|
|
1545
1543
|
--tw-ring-color: rgb(var(--color-surface-500) / 0.3);
|
|
1546
1544
|
}
|
|
1547
1545
|
|
|
1548
|
-
.transition-all{
|
|
1546
|
+
.transition-all {
|
|
1549
1547
|
transition-property: all;
|
|
1550
1548
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1551
1549
|
transition-duration: 150ms;
|
|
1552
1550
|
}
|
|
1553
1551
|
|
|
1554
|
-
.duration-\[200ms\]{
|
|
1552
|
+
.duration-\[200ms\] {
|
|
1555
1553
|
transition-duration: 200ms;
|
|
1556
1554
|
}
|
|
1557
1555
|
|
|
1558
|
-
.dark .bg-primary-backdrop-token{
|
|
1556
|
+
.dark .bg-primary-backdrop-token {
|
|
1559
1557
|
background-color: rgb(var(--color-primary-900) / 0.7);
|
|
1560
1558
|
}
|
|
1561
1559
|
|
|
1562
|
-
.dark .bg-primary-50-900-token{
|
|
1560
|
+
.dark .bg-primary-50-900-token {
|
|
1563
1561
|
background-color: rgb(var(--color-primary-900));
|
|
1564
1562
|
}
|
|
1565
1563
|
|
|
1566
|
-
.dark .bg-primary-100-800-token{
|
|
1564
|
+
.dark .bg-primary-100-800-token {
|
|
1567
1565
|
background-color: rgb(var(--color-primary-800));
|
|
1568
1566
|
}
|
|
1569
1567
|
|
|
1570
|
-
.dark .bg-primary-200-700-token{
|
|
1568
|
+
.dark .bg-primary-200-700-token {
|
|
1571
1569
|
background-color: rgb(var(--color-primary-700));
|
|
1572
1570
|
}
|
|
1573
1571
|
|
|
1574
|
-
.dark .bg-primary-300-600-token{
|
|
1572
|
+
.dark .bg-primary-300-600-token {
|
|
1575
1573
|
background-color: rgb(var(--color-primary-600));
|
|
1576
1574
|
}
|
|
1577
1575
|
|
|
1578
|
-
.dark .bg-primary-400-500-token{
|
|
1576
|
+
.dark .bg-primary-400-500-token {
|
|
1579
1577
|
background-color: rgb(var(--color-primary-500));
|
|
1580
1578
|
}
|
|
1581
1579
|
|
|
1582
|
-
.dark .bg-primary-900-50-token{
|
|
1580
|
+
.dark .bg-primary-900-50-token {
|
|
1583
1581
|
background-color: rgb(var(--color-primary-50));
|
|
1584
1582
|
}
|
|
1585
1583
|
|
|
1586
|
-
.dark .bg-primary-800-100-token{
|
|
1584
|
+
.dark .bg-primary-800-100-token {
|
|
1587
1585
|
background-color: rgb(var(--color-primary-100));
|
|
1588
1586
|
}
|
|
1589
1587
|
|
|
1590
|
-
.dark .bg-primary-700-200-token{
|
|
1588
|
+
.dark .bg-primary-700-200-token {
|
|
1591
1589
|
background-color: rgb(var(--color-primary-200));
|
|
1592
1590
|
}
|
|
1593
1591
|
|
|
1594
|
-
.dark .bg-primary-600-300-token{
|
|
1592
|
+
.dark .bg-primary-600-300-token {
|
|
1595
1593
|
background-color: rgb(var(--color-primary-300));
|
|
1596
1594
|
}
|
|
1597
1595
|
|
|
1598
|
-
.dark .bg-primary-500-400-token{
|
|
1596
|
+
.dark .bg-primary-500-400-token {
|
|
1599
1597
|
background-color: rgb(var(--color-primary-400));
|
|
1600
1598
|
}
|
|
1601
1599
|
|
|
1602
|
-
.dark .bg-secondary-backdrop-token{
|
|
1600
|
+
.dark .bg-secondary-backdrop-token {
|
|
1603
1601
|
background-color: rgb(var(--color-secondary-900) / 0.7);
|
|
1604
1602
|
}
|
|
1605
1603
|
|
|
1606
|
-
.dark .bg-secondary-50-900-token{
|
|
1604
|
+
.dark .bg-secondary-50-900-token {
|
|
1607
1605
|
background-color: rgb(var(--color-secondary-900));
|
|
1608
1606
|
}
|
|
1609
1607
|
|
|
1610
|
-
.dark .bg-secondary-100-800-token{
|
|
1608
|
+
.dark .bg-secondary-100-800-token {
|
|
1611
1609
|
background-color: rgb(var(--color-secondary-800));
|
|
1612
1610
|
}
|
|
1613
1611
|
|
|
1614
|
-
.dark .bg-secondary-200-700-token{
|
|
1612
|
+
.dark .bg-secondary-200-700-token {
|
|
1615
1613
|
background-color: rgb(var(--color-secondary-700));
|
|
1616
1614
|
}
|
|
1617
1615
|
|
|
1618
|
-
.dark .bg-secondary-300-600-token{
|
|
1616
|
+
.dark .bg-secondary-300-600-token {
|
|
1619
1617
|
background-color: rgb(var(--color-secondary-600));
|
|
1620
1618
|
}
|
|
1621
1619
|
|
|
1622
|
-
.dark .bg-secondary-400-500-token{
|
|
1620
|
+
.dark .bg-secondary-400-500-token {
|
|
1623
1621
|
background-color: rgb(var(--color-secondary-500));
|
|
1624
1622
|
}
|
|
1625
1623
|
|
|
1626
|
-
.dark .bg-secondary-900-50-token{
|
|
1624
|
+
.dark .bg-secondary-900-50-token {
|
|
1627
1625
|
background-color: rgb(var(--color-secondary-50));
|
|
1628
1626
|
}
|
|
1629
1627
|
|
|
1630
|
-
.dark .bg-secondary-800-100-token{
|
|
1628
|
+
.dark .bg-secondary-800-100-token {
|
|
1631
1629
|
background-color: rgb(var(--color-secondary-100));
|
|
1632
1630
|
}
|
|
1633
1631
|
|
|
1634
|
-
.dark .bg-secondary-700-200-token{
|
|
1632
|
+
.dark .bg-secondary-700-200-token {
|
|
1635
1633
|
background-color: rgb(var(--color-secondary-200));
|
|
1636
1634
|
}
|
|
1637
1635
|
|
|
1638
|
-
.dark .bg-secondary-600-300-token{
|
|
1636
|
+
.dark .bg-secondary-600-300-token {
|
|
1639
1637
|
background-color: rgb(var(--color-secondary-300));
|
|
1640
1638
|
}
|
|
1641
1639
|
|
|
1642
|
-
.dark .bg-secondary-500-400-token{
|
|
1640
|
+
.dark .bg-secondary-500-400-token {
|
|
1643
1641
|
background-color: rgb(var(--color-secondary-400));
|
|
1644
1642
|
}
|
|
1645
1643
|
|
|
1646
|
-
.dark .bg-tertiary-backdrop-token{
|
|
1644
|
+
.dark .bg-tertiary-backdrop-token {
|
|
1647
1645
|
background-color: rgb(var(--color-tertiary-900) / 0.7);
|
|
1648
1646
|
}
|
|
1649
1647
|
|
|
1650
|
-
.dark .bg-tertiary-50-900-token{
|
|
1648
|
+
.dark .bg-tertiary-50-900-token {
|
|
1651
1649
|
background-color: rgb(var(--color-tertiary-900));
|
|
1652
1650
|
}
|
|
1653
1651
|
|
|
1654
|
-
.dark .bg-tertiary-100-800-token{
|
|
1652
|
+
.dark .bg-tertiary-100-800-token {
|
|
1655
1653
|
background-color: rgb(var(--color-tertiary-800));
|
|
1656
1654
|
}
|
|
1657
1655
|
|
|
1658
|
-
.dark .bg-tertiary-200-700-token{
|
|
1656
|
+
.dark .bg-tertiary-200-700-token {
|
|
1659
1657
|
background-color: rgb(var(--color-tertiary-700));
|
|
1660
1658
|
}
|
|
1661
1659
|
|
|
1662
|
-
.dark .bg-tertiary-300-600-token{
|
|
1660
|
+
.dark .bg-tertiary-300-600-token {
|
|
1663
1661
|
background-color: rgb(var(--color-tertiary-600));
|
|
1664
1662
|
}
|
|
1665
1663
|
|
|
1666
|
-
.dark .bg-tertiary-400-500-token{
|
|
1664
|
+
.dark .bg-tertiary-400-500-token {
|
|
1667
1665
|
background-color: rgb(var(--color-tertiary-500));
|
|
1668
1666
|
}
|
|
1669
1667
|
|
|
1670
|
-
.dark .bg-tertiary-900-50-token{
|
|
1668
|
+
.dark .bg-tertiary-900-50-token {
|
|
1671
1669
|
background-color: rgb(var(--color-tertiary-50));
|
|
1672
1670
|
}
|
|
1673
1671
|
|
|
1674
|
-
.dark .bg-tertiary-800-100-token{
|
|
1672
|
+
.dark .bg-tertiary-800-100-token {
|
|
1675
1673
|
background-color: rgb(var(--color-tertiary-100));
|
|
1676
1674
|
}
|
|
1677
1675
|
|
|
1678
|
-
.dark .bg-tertiary-700-200-token{
|
|
1676
|
+
.dark .bg-tertiary-700-200-token {
|
|
1679
1677
|
background-color: rgb(var(--color-tertiary-200));
|
|
1680
1678
|
}
|
|
1681
1679
|
|
|
1682
|
-
.dark .bg-tertiary-600-300-token{
|
|
1680
|
+
.dark .bg-tertiary-600-300-token {
|
|
1683
1681
|
background-color: rgb(var(--color-tertiary-300));
|
|
1684
1682
|
}
|
|
1685
1683
|
|
|
1686
|
-
.dark .bg-tertiary-500-400-token{
|
|
1684
|
+
.dark .bg-tertiary-500-400-token {
|
|
1687
1685
|
background-color: rgb(var(--color-tertiary-400));
|
|
1688
1686
|
}
|
|
1689
1687
|
|
|
1690
|
-
.dark .bg-success-backdrop-token{
|
|
1688
|
+
.dark .bg-success-backdrop-token {
|
|
1691
1689
|
background-color: rgb(var(--color-success-900) / 0.7);
|
|
1692
1690
|
}
|
|
1693
1691
|
|
|
1694
|
-
.dark .bg-success-50-900-token{
|
|
1692
|
+
.dark .bg-success-50-900-token {
|
|
1695
1693
|
background-color: rgb(var(--color-success-900));
|
|
1696
1694
|
}
|
|
1697
1695
|
|
|
1698
|
-
.dark .bg-success-100-800-token{
|
|
1696
|
+
.dark .bg-success-100-800-token {
|
|
1699
1697
|
background-color: rgb(var(--color-success-800));
|
|
1700
1698
|
}
|
|
1701
1699
|
|
|
1702
|
-
.dark .bg-success-200-700-token{
|
|
1700
|
+
.dark .bg-success-200-700-token {
|
|
1703
1701
|
background-color: rgb(var(--color-success-700));
|
|
1704
1702
|
}
|
|
1705
1703
|
|
|
1706
|
-
.dark .bg-success-300-600-token{
|
|
1704
|
+
.dark .bg-success-300-600-token {
|
|
1707
1705
|
background-color: rgb(var(--color-success-600));
|
|
1708
1706
|
}
|
|
1709
1707
|
|
|
1710
|
-
.dark .bg-success-400-500-token{
|
|
1708
|
+
.dark .bg-success-400-500-token {
|
|
1711
1709
|
background-color: rgb(var(--color-success-500));
|
|
1712
1710
|
}
|
|
1713
1711
|
|
|
1714
|
-
.dark .bg-success-900-50-token{
|
|
1712
|
+
.dark .bg-success-900-50-token {
|
|
1715
1713
|
background-color: rgb(var(--color-success-50));
|
|
1716
1714
|
}
|
|
1717
1715
|
|
|
1718
|
-
.dark .bg-success-800-100-token{
|
|
1716
|
+
.dark .bg-success-800-100-token {
|
|
1719
1717
|
background-color: rgb(var(--color-success-100));
|
|
1720
1718
|
}
|
|
1721
1719
|
|
|
1722
|
-
.dark .bg-success-700-200-token{
|
|
1720
|
+
.dark .bg-success-700-200-token {
|
|
1723
1721
|
background-color: rgb(var(--color-success-200));
|
|
1724
1722
|
}
|
|
1725
1723
|
|
|
1726
|
-
.dark .bg-success-600-300-token{
|
|
1724
|
+
.dark .bg-success-600-300-token {
|
|
1727
1725
|
background-color: rgb(var(--color-success-300));
|
|
1728
1726
|
}
|
|
1729
1727
|
|
|
1730
|
-
.dark .bg-success-500-400-token{
|
|
1728
|
+
.dark .bg-success-500-400-token {
|
|
1731
1729
|
background-color: rgb(var(--color-success-400));
|
|
1732
1730
|
}
|
|
1733
1731
|
|
|
1734
|
-
.dark .bg-warning-backdrop-token{
|
|
1732
|
+
.dark .bg-warning-backdrop-token {
|
|
1735
1733
|
background-color: rgb(var(--color-warning-900) / 0.7);
|
|
1736
1734
|
}
|
|
1737
1735
|
|
|
1738
|
-
.dark .bg-warning-50-900-token{
|
|
1736
|
+
.dark .bg-warning-50-900-token {
|
|
1739
1737
|
background-color: rgb(var(--color-warning-900));
|
|
1740
1738
|
}
|
|
1741
1739
|
|
|
1742
|
-
.dark .bg-warning-100-800-token{
|
|
1740
|
+
.dark .bg-warning-100-800-token {
|
|
1743
1741
|
background-color: rgb(var(--color-warning-800));
|
|
1744
1742
|
}
|
|
1745
1743
|
|
|
1746
|
-
.dark .bg-warning-200-700-token{
|
|
1744
|
+
.dark .bg-warning-200-700-token {
|
|
1747
1745
|
background-color: rgb(var(--color-warning-700));
|
|
1748
1746
|
}
|
|
1749
1747
|
|
|
1750
|
-
.dark .bg-warning-300-600-token{
|
|
1748
|
+
.dark .bg-warning-300-600-token {
|
|
1751
1749
|
background-color: rgb(var(--color-warning-600));
|
|
1752
1750
|
}
|
|
1753
1751
|
|
|
1754
|
-
.dark .bg-warning-400-500-token{
|
|
1752
|
+
.dark .bg-warning-400-500-token {
|
|
1755
1753
|
background-color: rgb(var(--color-warning-500));
|
|
1756
1754
|
}
|
|
1757
1755
|
|
|
1758
|
-
.dark .bg-warning-900-50-token{
|
|
1756
|
+
.dark .bg-warning-900-50-token {
|
|
1759
1757
|
background-color: rgb(var(--color-warning-50));
|
|
1760
1758
|
}
|
|
1761
1759
|
|
|
1762
|
-
.dark .bg-warning-800-100-token{
|
|
1760
|
+
.dark .bg-warning-800-100-token {
|
|
1763
1761
|
background-color: rgb(var(--color-warning-100));
|
|
1764
1762
|
}
|
|
1765
1763
|
|
|
1766
|
-
.dark .bg-warning-700-200-token{
|
|
1764
|
+
.dark .bg-warning-700-200-token {
|
|
1767
1765
|
background-color: rgb(var(--color-warning-200));
|
|
1768
1766
|
}
|
|
1769
1767
|
|
|
1770
|
-
.dark .bg-warning-600-300-token{
|
|
1768
|
+
.dark .bg-warning-600-300-token {
|
|
1771
1769
|
background-color: rgb(var(--color-warning-300));
|
|
1772
1770
|
}
|
|
1773
1771
|
|
|
1774
|
-
.dark .bg-warning-500-400-token{
|
|
1772
|
+
.dark .bg-warning-500-400-token {
|
|
1775
1773
|
background-color: rgb(var(--color-warning-400));
|
|
1776
1774
|
}
|
|
1777
1775
|
|
|
1778
|
-
.dark .bg-error-backdrop-token{
|
|
1776
|
+
.dark .bg-error-backdrop-token {
|
|
1779
1777
|
background-color: rgb(var(--color-error-900) / 0.7);
|
|
1780
1778
|
}
|
|
1781
1779
|
|
|
1782
|
-
.dark .bg-error-50-900-token{
|
|
1780
|
+
.dark .bg-error-50-900-token {
|
|
1783
1781
|
background-color: rgb(var(--color-error-900));
|
|
1784
1782
|
}
|
|
1785
1783
|
|
|
1786
|
-
.dark .bg-error-100-800-token{
|
|
1784
|
+
.dark .bg-error-100-800-token {
|
|
1787
1785
|
background-color: rgb(var(--color-error-800));
|
|
1788
1786
|
}
|
|
1789
1787
|
|
|
1790
|
-
.dark .bg-error-200-700-token{
|
|
1788
|
+
.dark .bg-error-200-700-token {
|
|
1791
1789
|
background-color: rgb(var(--color-error-700));
|
|
1792
1790
|
}
|
|
1793
1791
|
|
|
1794
|
-
.dark .bg-error-300-600-token{
|
|
1792
|
+
.dark .bg-error-300-600-token {
|
|
1795
1793
|
background-color: rgb(var(--color-error-600));
|
|
1796
1794
|
}
|
|
1797
1795
|
|
|
1798
|
-
.dark .bg-error-400-500-token{
|
|
1796
|
+
.dark .bg-error-400-500-token {
|
|
1799
1797
|
background-color: rgb(var(--color-error-500));
|
|
1800
1798
|
}
|
|
1801
1799
|
|
|
1802
|
-
.dark .bg-error-900-50-token{
|
|
1800
|
+
.dark .bg-error-900-50-token {
|
|
1803
1801
|
background-color: rgb(var(--color-error-50));
|
|
1804
1802
|
}
|
|
1805
1803
|
|
|
1806
|
-
.dark .bg-error-800-100-token{
|
|
1804
|
+
.dark .bg-error-800-100-token {
|
|
1807
1805
|
background-color: rgb(var(--color-error-100));
|
|
1808
1806
|
}
|
|
1809
1807
|
|
|
1810
|
-
.dark .bg-error-700-200-token{
|
|
1808
|
+
.dark .bg-error-700-200-token {
|
|
1811
1809
|
background-color: rgb(var(--color-error-200));
|
|
1812
1810
|
}
|
|
1813
1811
|
|
|
1814
|
-
.dark .bg-error-600-300-token{
|
|
1812
|
+
.dark .bg-error-600-300-token {
|
|
1815
1813
|
background-color: rgb(var(--color-error-300));
|
|
1816
1814
|
}
|
|
1817
1815
|
|
|
1818
|
-
.dark .bg-error-500-400-token{
|
|
1816
|
+
.dark .bg-error-500-400-token {
|
|
1819
1817
|
background-color: rgb(var(--color-error-400));
|
|
1820
1818
|
}
|
|
1821
1819
|
|
|
1822
|
-
.dark .bg-surface-backdrop-token{
|
|
1820
|
+
.dark .bg-surface-backdrop-token {
|
|
1823
1821
|
background-color: rgb(var(--color-surface-900) / 0.7);
|
|
1824
1822
|
}
|
|
1825
1823
|
|
|
1826
|
-
.dark .bg-surface-50-900-token{
|
|
1824
|
+
.dark .bg-surface-50-900-token {
|
|
1827
1825
|
background-color: rgb(var(--color-surface-900));
|
|
1828
1826
|
}
|
|
1829
1827
|
|
|
1830
|
-
.dark .bg-surface-100-800-token{
|
|
1828
|
+
.dark .bg-surface-100-800-token {
|
|
1831
1829
|
background-color: rgb(var(--color-surface-800));
|
|
1832
1830
|
}
|
|
1833
1831
|
|
|
1834
|
-
.dark .bg-surface-200-700-token{
|
|
1832
|
+
.dark .bg-surface-200-700-token {
|
|
1835
1833
|
background-color: rgb(var(--color-surface-700));
|
|
1836
1834
|
}
|
|
1837
1835
|
|
|
1838
|
-
.dark .bg-surface-300-600-token{
|
|
1836
|
+
.dark .bg-surface-300-600-token {
|
|
1839
1837
|
background-color: rgb(var(--color-surface-600));
|
|
1840
1838
|
}
|
|
1841
1839
|
|
|
1842
|
-
.dark .bg-surface-400-500-token{
|
|
1840
|
+
.dark .bg-surface-400-500-token {
|
|
1843
1841
|
background-color: rgb(var(--color-surface-500));
|
|
1844
1842
|
}
|
|
1845
1843
|
|
|
1846
|
-
.dark .bg-surface-900-50-token{
|
|
1844
|
+
.dark .bg-surface-900-50-token {
|
|
1847
1845
|
background-color: rgb(var(--color-surface-50));
|
|
1848
1846
|
}
|
|
1849
1847
|
|
|
1850
|
-
.dark .bg-surface-800-100-token{
|
|
1848
|
+
.dark .bg-surface-800-100-token {
|
|
1851
1849
|
background-color: rgb(var(--color-surface-100));
|
|
1852
1850
|
}
|
|
1853
1851
|
|
|
1854
|
-
.dark .bg-surface-700-200-token{
|
|
1852
|
+
.dark .bg-surface-700-200-token {
|
|
1855
1853
|
background-color: rgb(var(--color-surface-200));
|
|
1856
1854
|
}
|
|
1857
1855
|
|
|
1858
|
-
.dark .bg-surface-600-300-token{
|
|
1856
|
+
.dark .bg-surface-600-300-token {
|
|
1859
1857
|
background-color: rgb(var(--color-surface-300));
|
|
1860
1858
|
}
|
|
1861
1859
|
|
|
1862
|
-
.dark .bg-surface-500-400-token{
|
|
1860
|
+
.dark .bg-surface-500-400-token {
|
|
1863
1861
|
background-color: rgb(var(--color-surface-400));
|
|
1864
1862
|
}
|
|
1865
1863
|
|
|
1866
|
-
.dark .border-primary-50-900-token{
|
|
1864
|
+
.dark .border-primary-50-900-token {
|
|
1867
1865
|
border-color: rgb(var(--color-primary-900));
|
|
1868
1866
|
}
|
|
1869
1867
|
|
|
1870
|
-
.dark .border-primary-100-800-token{
|
|
1868
|
+
.dark .border-primary-100-800-token {
|
|
1871
1869
|
border-color: rgb(var(--color-primary-800));
|
|
1872
1870
|
}
|
|
1873
1871
|
|
|
1874
|
-
.dark .border-primary-200-700-token{
|
|
1872
|
+
.dark .border-primary-200-700-token {
|
|
1875
1873
|
border-color: rgb(var(--color-primary-700));
|
|
1876
1874
|
}
|
|
1877
1875
|
|
|
1878
|
-
.dark .border-primary-300-600-token{
|
|
1876
|
+
.dark .border-primary-300-600-token {
|
|
1879
1877
|
border-color: rgb(var(--color-primary-600));
|
|
1880
1878
|
}
|
|
1881
1879
|
|
|
1882
|
-
.dark .border-primary-400-500-token{
|
|
1880
|
+
.dark .border-primary-400-500-token {
|
|
1883
1881
|
border-color: rgb(var(--color-primary-500));
|
|
1884
1882
|
}
|
|
1885
1883
|
|
|
1886
|
-
.dark .border-primary-900-50-token{
|
|
1884
|
+
.dark .border-primary-900-50-token {
|
|
1887
1885
|
border-color: rgb(var(--color-primary-50));
|
|
1888
1886
|
}
|
|
1889
1887
|
|
|
1890
|
-
.dark .border-primary-800-100-token{
|
|
1888
|
+
.dark .border-primary-800-100-token {
|
|
1891
1889
|
border-color: rgb(var(--color-primary-100));
|
|
1892
1890
|
}
|
|
1893
1891
|
|
|
1894
|
-
.dark .border-primary-700-200-token{
|
|
1892
|
+
.dark .border-primary-700-200-token {
|
|
1895
1893
|
border-color: rgb(var(--color-primary-200));
|
|
1896
1894
|
}
|
|
1897
1895
|
|
|
1898
|
-
.dark .border-primary-600-300-token{
|
|
1896
|
+
.dark .border-primary-600-300-token {
|
|
1899
1897
|
border-color: rgb(var(--color-primary-300));
|
|
1900
1898
|
}
|
|
1901
1899
|
|
|
1902
|
-
.dark .border-primary-500-400-token{
|
|
1900
|
+
.dark .border-primary-500-400-token {
|
|
1903
1901
|
border-color: rgb(var(--color-primary-400));
|
|
1904
1902
|
}
|
|
1905
1903
|
|
|
1906
|
-
.dark .border-secondary-50-900-token{
|
|
1904
|
+
.dark .border-secondary-50-900-token {
|
|
1907
1905
|
border-color: rgb(var(--color-secondary-900));
|
|
1908
1906
|
}
|
|
1909
1907
|
|
|
1910
|
-
.dark .border-secondary-100-800-token{
|
|
1908
|
+
.dark .border-secondary-100-800-token {
|
|
1911
1909
|
border-color: rgb(var(--color-secondary-800));
|
|
1912
1910
|
}
|
|
1913
1911
|
|
|
1914
|
-
.dark .border-secondary-200-700-token{
|
|
1912
|
+
.dark .border-secondary-200-700-token {
|
|
1915
1913
|
border-color: rgb(var(--color-secondary-700));
|
|
1916
1914
|
}
|
|
1917
1915
|
|
|
1918
|
-
.dark .border-secondary-300-600-token{
|
|
1916
|
+
.dark .border-secondary-300-600-token {
|
|
1919
1917
|
border-color: rgb(var(--color-secondary-600));
|
|
1920
1918
|
}
|
|
1921
1919
|
|
|
1922
|
-
.dark .border-secondary-400-500-token{
|
|
1920
|
+
.dark .border-secondary-400-500-token {
|
|
1923
1921
|
border-color: rgb(var(--color-secondary-500));
|
|
1924
1922
|
}
|
|
1925
1923
|
|
|
1926
|
-
.dark .border-secondary-900-50-token{
|
|
1924
|
+
.dark .border-secondary-900-50-token {
|
|
1927
1925
|
border-color: rgb(var(--color-secondary-50));
|
|
1928
1926
|
}
|
|
1929
1927
|
|
|
1930
|
-
.dark .border-secondary-800-100-token{
|
|
1928
|
+
.dark .border-secondary-800-100-token {
|
|
1931
1929
|
border-color: rgb(var(--color-secondary-100));
|
|
1932
1930
|
}
|
|
1933
1931
|
|
|
1934
|
-
.dark .border-secondary-700-200-token{
|
|
1932
|
+
.dark .border-secondary-700-200-token {
|
|
1935
1933
|
border-color: rgb(var(--color-secondary-200));
|
|
1936
1934
|
}
|
|
1937
1935
|
|
|
1938
|
-
.dark .border-secondary-600-300-token{
|
|
1936
|
+
.dark .border-secondary-600-300-token {
|
|
1939
1937
|
border-color: rgb(var(--color-secondary-300));
|
|
1940
1938
|
}
|
|
1941
1939
|
|
|
1942
|
-
.dark .border-secondary-500-400-token{
|
|
1940
|
+
.dark .border-secondary-500-400-token {
|
|
1943
1941
|
border-color: rgb(var(--color-secondary-400));
|
|
1944
1942
|
}
|
|
1945
1943
|
|
|
1946
|
-
.dark .border-tertiary-50-900-token{
|
|
1944
|
+
.dark .border-tertiary-50-900-token {
|
|
1947
1945
|
border-color: rgb(var(--color-tertiary-900));
|
|
1948
1946
|
}
|
|
1949
1947
|
|
|
1950
|
-
.dark .border-tertiary-100-800-token{
|
|
1948
|
+
.dark .border-tertiary-100-800-token {
|
|
1951
1949
|
border-color: rgb(var(--color-tertiary-800));
|
|
1952
1950
|
}
|
|
1953
1951
|
|
|
1954
|
-
.dark .border-tertiary-200-700-token{
|
|
1952
|
+
.dark .border-tertiary-200-700-token {
|
|
1955
1953
|
border-color: rgb(var(--color-tertiary-700));
|
|
1956
1954
|
}
|
|
1957
1955
|
|
|
1958
|
-
.dark .border-tertiary-300-600-token{
|
|
1956
|
+
.dark .border-tertiary-300-600-token {
|
|
1959
1957
|
border-color: rgb(var(--color-tertiary-600));
|
|
1960
1958
|
}
|
|
1961
1959
|
|
|
1962
|
-
.dark .border-tertiary-400-500-token{
|
|
1960
|
+
.dark .border-tertiary-400-500-token {
|
|
1963
1961
|
border-color: rgb(var(--color-tertiary-500));
|
|
1964
1962
|
}
|
|
1965
1963
|
|
|
1966
|
-
.dark .border-tertiary-900-50-token{
|
|
1964
|
+
.dark .border-tertiary-900-50-token {
|
|
1967
1965
|
border-color: rgb(var(--color-tertiary-50));
|
|
1968
1966
|
}
|
|
1969
1967
|
|
|
1970
|
-
.dark .border-tertiary-800-100-token{
|
|
1968
|
+
.dark .border-tertiary-800-100-token {
|
|
1971
1969
|
border-color: rgb(var(--color-tertiary-100));
|
|
1972
1970
|
}
|
|
1973
1971
|
|
|
1974
|
-
.dark .border-tertiary-700-200-token{
|
|
1972
|
+
.dark .border-tertiary-700-200-token {
|
|
1975
1973
|
border-color: rgb(var(--color-tertiary-200));
|
|
1976
1974
|
}
|
|
1977
1975
|
|
|
1978
|
-
.dark .border-tertiary-600-300-token{
|
|
1976
|
+
.dark .border-tertiary-600-300-token {
|
|
1979
1977
|
border-color: rgb(var(--color-tertiary-300));
|
|
1980
1978
|
}
|
|
1981
1979
|
|
|
1982
|
-
.dark .border-tertiary-500-400-token{
|
|
1980
|
+
.dark .border-tertiary-500-400-token {
|
|
1983
1981
|
border-color: rgb(var(--color-tertiary-400));
|
|
1984
1982
|
}
|
|
1985
1983
|
|
|
1986
|
-
.dark .border-success-50-900-token{
|
|
1984
|
+
.dark .border-success-50-900-token {
|
|
1987
1985
|
border-color: rgb(var(--color-success-900));
|
|
1988
1986
|
}
|
|
1989
1987
|
|
|
1990
|
-
.dark .border-success-100-800-token{
|
|
1988
|
+
.dark .border-success-100-800-token {
|
|
1991
1989
|
border-color: rgb(var(--color-success-800));
|
|
1992
1990
|
}
|
|
1993
1991
|
|
|
1994
|
-
.dark .border-success-200-700-token{
|
|
1992
|
+
.dark .border-success-200-700-token {
|
|
1995
1993
|
border-color: rgb(var(--color-success-700));
|
|
1996
1994
|
}
|
|
1997
1995
|
|
|
1998
|
-
.dark .border-success-300-600-token{
|
|
1996
|
+
.dark .border-success-300-600-token {
|
|
1999
1997
|
border-color: rgb(var(--color-success-600));
|
|
2000
1998
|
}
|
|
2001
1999
|
|
|
2002
|
-
.dark .border-success-400-500-token{
|
|
2000
|
+
.dark .border-success-400-500-token {
|
|
2003
2001
|
border-color: rgb(var(--color-success-500));
|
|
2004
2002
|
}
|
|
2005
2003
|
|
|
2006
|
-
.dark .border-success-900-50-token{
|
|
2004
|
+
.dark .border-success-900-50-token {
|
|
2007
2005
|
border-color: rgb(var(--color-success-50));
|
|
2008
2006
|
}
|
|
2009
2007
|
|
|
2010
|
-
.dark .border-success-800-100-token{
|
|
2008
|
+
.dark .border-success-800-100-token {
|
|
2011
2009
|
border-color: rgb(var(--color-success-100));
|
|
2012
2010
|
}
|
|
2013
2011
|
|
|
2014
|
-
.dark .border-success-700-200-token{
|
|
2012
|
+
.dark .border-success-700-200-token {
|
|
2015
2013
|
border-color: rgb(var(--color-success-200));
|
|
2016
2014
|
}
|
|
2017
2015
|
|
|
2018
|
-
.dark .border-success-600-300-token{
|
|
2016
|
+
.dark .border-success-600-300-token {
|
|
2019
2017
|
border-color: rgb(var(--color-success-300));
|
|
2020
2018
|
}
|
|
2021
2019
|
|
|
2022
|
-
.dark .border-success-500-400-token{
|
|
2020
|
+
.dark .border-success-500-400-token {
|
|
2023
2021
|
border-color: rgb(var(--color-success-400));
|
|
2024
2022
|
}
|
|
2025
2023
|
|
|
2026
|
-
.dark .border-warning-50-900-token{
|
|
2024
|
+
.dark .border-warning-50-900-token {
|
|
2027
2025
|
border-color: rgb(var(--color-warning-900));
|
|
2028
2026
|
}
|
|
2029
2027
|
|
|
2030
|
-
.dark .border-warning-100-800-token{
|
|
2028
|
+
.dark .border-warning-100-800-token {
|
|
2031
2029
|
border-color: rgb(var(--color-warning-800));
|
|
2032
2030
|
}
|
|
2033
2031
|
|
|
2034
|
-
.dark .border-warning-200-700-token{
|
|
2032
|
+
.dark .border-warning-200-700-token {
|
|
2035
2033
|
border-color: rgb(var(--color-warning-700));
|
|
2036
2034
|
}
|
|
2037
2035
|
|
|
2038
|
-
.dark .border-warning-300-600-token{
|
|
2036
|
+
.dark .border-warning-300-600-token {
|
|
2039
2037
|
border-color: rgb(var(--color-warning-600));
|
|
2040
2038
|
}
|
|
2041
2039
|
|
|
2042
|
-
.dark .border-warning-400-500-token{
|
|
2040
|
+
.dark .border-warning-400-500-token {
|
|
2043
2041
|
border-color: rgb(var(--color-warning-500));
|
|
2044
2042
|
}
|
|
2045
2043
|
|
|
2046
|
-
.dark .border-warning-900-50-token{
|
|
2044
|
+
.dark .border-warning-900-50-token {
|
|
2047
2045
|
border-color: rgb(var(--color-warning-50));
|
|
2048
2046
|
}
|
|
2049
2047
|
|
|
2050
|
-
.dark .border-warning-800-100-token{
|
|
2048
|
+
.dark .border-warning-800-100-token {
|
|
2051
2049
|
border-color: rgb(var(--color-warning-100));
|
|
2052
2050
|
}
|
|
2053
2051
|
|
|
2054
|
-
.dark .border-warning-700-200-token{
|
|
2052
|
+
.dark .border-warning-700-200-token {
|
|
2055
2053
|
border-color: rgb(var(--color-warning-200));
|
|
2056
2054
|
}
|
|
2057
2055
|
|
|
2058
|
-
.dark .border-warning-600-300-token{
|
|
2056
|
+
.dark .border-warning-600-300-token {
|
|
2059
2057
|
border-color: rgb(var(--color-warning-300));
|
|
2060
2058
|
}
|
|
2061
2059
|
|
|
2062
|
-
.dark .border-warning-500-400-token{
|
|
2060
|
+
.dark .border-warning-500-400-token {
|
|
2063
2061
|
border-color: rgb(var(--color-warning-400));
|
|
2064
2062
|
}
|
|
2065
2063
|
|
|
2066
|
-
.dark .border-error-50-900-token{
|
|
2064
|
+
.dark .border-error-50-900-token {
|
|
2067
2065
|
border-color: rgb(var(--color-error-900));
|
|
2068
2066
|
}
|
|
2069
2067
|
|
|
2070
|
-
.dark .border-error-100-800-token{
|
|
2068
|
+
.dark .border-error-100-800-token {
|
|
2071
2069
|
border-color: rgb(var(--color-error-800));
|
|
2072
2070
|
}
|
|
2073
2071
|
|
|
2074
|
-
.dark .border-error-200-700-token{
|
|
2072
|
+
.dark .border-error-200-700-token {
|
|
2075
2073
|
border-color: rgb(var(--color-error-700));
|
|
2076
2074
|
}
|
|
2077
2075
|
|
|
2078
|
-
.dark .border-error-300-600-token{
|
|
2076
|
+
.dark .border-error-300-600-token {
|
|
2079
2077
|
border-color: rgb(var(--color-error-600));
|
|
2080
2078
|
}
|
|
2081
2079
|
|
|
2082
|
-
.dark .border-error-400-500-token{
|
|
2080
|
+
.dark .border-error-400-500-token {
|
|
2083
2081
|
border-color: rgb(var(--color-error-500));
|
|
2084
2082
|
}
|
|
2085
2083
|
|
|
2086
|
-
.dark .border-error-900-50-token{
|
|
2084
|
+
.dark .border-error-900-50-token {
|
|
2087
2085
|
border-color: rgb(var(--color-error-50));
|
|
2088
2086
|
}
|
|
2089
2087
|
|
|
2090
|
-
.dark .border-error-800-100-token{
|
|
2088
|
+
.dark .border-error-800-100-token {
|
|
2091
2089
|
border-color: rgb(var(--color-error-100));
|
|
2092
2090
|
}
|
|
2093
2091
|
|
|
2094
|
-
.dark .border-error-700-200-token{
|
|
2092
|
+
.dark .border-error-700-200-token {
|
|
2095
2093
|
border-color: rgb(var(--color-error-200));
|
|
2096
2094
|
}
|
|
2097
2095
|
|
|
2098
|
-
.dark .border-error-600-300-token{
|
|
2096
|
+
.dark .border-error-600-300-token {
|
|
2099
2097
|
border-color: rgb(var(--color-error-300));
|
|
2100
2098
|
}
|
|
2101
2099
|
|
|
2102
|
-
.dark .border-error-500-400-token{
|
|
2100
|
+
.dark .border-error-500-400-token {
|
|
2103
2101
|
border-color: rgb(var(--color-error-400));
|
|
2104
2102
|
}
|
|
2105
2103
|
|
|
2106
|
-
.dark .border-surface-50-900-token{
|
|
2104
|
+
.dark .border-surface-50-900-token {
|
|
2107
2105
|
border-color: rgb(var(--color-surface-900));
|
|
2108
2106
|
}
|
|
2109
2107
|
|
|
2110
|
-
.dark .border-surface-100-800-token{
|
|
2108
|
+
.dark .border-surface-100-800-token {
|
|
2111
2109
|
border-color: rgb(var(--color-surface-800));
|
|
2112
2110
|
}
|
|
2113
2111
|
|
|
2114
|
-
.dark .border-surface-200-700-token{
|
|
2112
|
+
.dark .border-surface-200-700-token {
|
|
2115
2113
|
border-color: rgb(var(--color-surface-700));
|
|
2116
2114
|
}
|
|
2117
2115
|
|
|
2118
|
-
.dark .border-surface-300-600-token{
|
|
2116
|
+
.dark .border-surface-300-600-token {
|
|
2119
2117
|
border-color: rgb(var(--color-surface-600));
|
|
2120
2118
|
}
|
|
2121
2119
|
|
|
2122
|
-
.dark .border-surface-400-500-token{
|
|
2120
|
+
.dark .border-surface-400-500-token {
|
|
2123
2121
|
border-color: rgb(var(--color-surface-500));
|
|
2124
2122
|
}
|
|
2125
2123
|
|
|
2126
|
-
.dark .border-surface-900-50-token{
|
|
2124
|
+
.dark .border-surface-900-50-token {
|
|
2127
2125
|
border-color: rgb(var(--color-surface-50));
|
|
2128
2126
|
}
|
|
2129
2127
|
|
|
2130
|
-
.dark .border-surface-800-100-token{
|
|
2128
|
+
.dark .border-surface-800-100-token {
|
|
2131
2129
|
border-color: rgb(var(--color-surface-100));
|
|
2132
2130
|
}
|
|
2133
2131
|
|
|
2134
|
-
.dark .border-surface-700-200-token{
|
|
2132
|
+
.dark .border-surface-700-200-token {
|
|
2135
2133
|
border-color: rgb(var(--color-surface-200));
|
|
2136
2134
|
}
|
|
2137
2135
|
|
|
2138
|
-
.dark .border-surface-600-300-token{
|
|
2136
|
+
.dark .border-surface-600-300-token {
|
|
2139
2137
|
border-color: rgb(var(--color-surface-300));
|
|
2140
2138
|
}
|
|
2141
2139
|
|
|
2142
|
-
.dark .border-surface-500-400-token{
|
|
2140
|
+
.dark .border-surface-500-400-token {
|
|
2143
2141
|
border-color: rgb(var(--color-surface-400));
|
|
2144
2142
|
}
|
|
2145
2143
|
|
|
2146
|
-
.rounded-token{
|
|
2144
|
+
.rounded-token {
|
|
2147
2145
|
border-radius: var(--theme-rounded-base);
|
|
2148
2146
|
}
|
|
2149
2147
|
|
|
2150
|
-
.rounded-container-token{
|
|
2148
|
+
.rounded-container-token {
|
|
2151
2149
|
border-radius: var(--theme-rounded-container);
|
|
2152
2150
|
}
|
|
2153
2151
|
|
|
2154
|
-
.dark .fill-token{
|
|
2152
|
+
.dark .fill-token {
|
|
2155
2153
|
fill: rgba(var(--theme-font-color-dark));
|
|
2156
2154
|
}
|
|
2157
2155
|
|
|
2158
|
-
.dark .text-token{
|
|
2156
|
+
.dark .text-token {
|
|
2159
2157
|
color: rgba(var(--theme-font-color-dark));
|
|
2160
2158
|
}
|
|
2161
2159
|
|
|
2162
|
-
.dark .text-primary-50-900-token{
|
|
2160
|
+
.dark .text-primary-50-900-token {
|
|
2163
2161
|
color: rgb(var(--color-primary-900));
|
|
2164
2162
|
}
|
|
2165
2163
|
|
|
2166
|
-
.dark .text-primary-100-800-token{
|
|
2164
|
+
.dark .text-primary-100-800-token {
|
|
2167
2165
|
color: rgb(var(--color-primary-800));
|
|
2168
2166
|
}
|
|
2169
2167
|
|
|
2170
|
-
.dark .text-primary-200-700-token{
|
|
2168
|
+
.dark .text-primary-200-700-token {
|
|
2171
2169
|
color: rgb(var(--color-primary-700));
|
|
2172
2170
|
}
|
|
2173
2171
|
|
|
2174
|
-
.dark .text-primary-300-600-token{
|
|
2172
|
+
.dark .text-primary-300-600-token {
|
|
2175
2173
|
color: rgb(var(--color-primary-600));
|
|
2176
2174
|
}
|
|
2177
2175
|
|
|
2178
|
-
.dark .text-primary-400-500-token{
|
|
2176
|
+
.dark .text-primary-400-500-token {
|
|
2179
2177
|
color: rgb(var(--color-primary-500));
|
|
2180
2178
|
}
|
|
2181
2179
|
|
|
2182
|
-
.dark .text-primary-900-50-token{
|
|
2180
|
+
.dark .text-primary-900-50-token {
|
|
2183
2181
|
color: rgb(var(--color-primary-50));
|
|
2184
2182
|
}
|
|
2185
2183
|
|
|
2186
|
-
.dark .text-primary-800-100-token{
|
|
2184
|
+
.dark .text-primary-800-100-token {
|
|
2187
2185
|
color: rgb(var(--color-primary-100));
|
|
2188
2186
|
}
|
|
2189
2187
|
|
|
2190
|
-
.dark .text-primary-700-200-token{
|
|
2188
|
+
.dark .text-primary-700-200-token {
|
|
2191
2189
|
color: rgb(var(--color-primary-200));
|
|
2192
2190
|
}
|
|
2193
2191
|
|
|
2194
|
-
.dark .text-primary-600-300-token{
|
|
2192
|
+
.dark .text-primary-600-300-token {
|
|
2195
2193
|
color: rgb(var(--color-primary-300));
|
|
2196
2194
|
}
|
|
2197
2195
|
|
|
2198
|
-
.dark .text-primary-500-400-token{
|
|
2196
|
+
.dark .text-primary-500-400-token {
|
|
2199
2197
|
color: rgb(var(--color-primary-400));
|
|
2200
2198
|
}
|
|
2201
2199
|
|
|
2202
|
-
.dark .text-secondary-50-900-token{
|
|
2200
|
+
.dark .text-secondary-50-900-token {
|
|
2203
2201
|
color: rgb(var(--color-secondary-900));
|
|
2204
2202
|
}
|
|
2205
2203
|
|
|
2206
|
-
.dark .text-secondary-100-800-token{
|
|
2204
|
+
.dark .text-secondary-100-800-token {
|
|
2207
2205
|
color: rgb(var(--color-secondary-800));
|
|
2208
2206
|
}
|
|
2209
2207
|
|
|
2210
|
-
.dark .text-secondary-200-700-token{
|
|
2208
|
+
.dark .text-secondary-200-700-token {
|
|
2211
2209
|
color: rgb(var(--color-secondary-700));
|
|
2212
2210
|
}
|
|
2213
2211
|
|
|
2214
|
-
.dark .text-secondary-300-600-token{
|
|
2212
|
+
.dark .text-secondary-300-600-token {
|
|
2215
2213
|
color: rgb(var(--color-secondary-600));
|
|
2216
2214
|
}
|
|
2217
2215
|
|
|
2218
|
-
.dark .text-secondary-400-500-token{
|
|
2216
|
+
.dark .text-secondary-400-500-token {
|
|
2219
2217
|
color: rgb(var(--color-secondary-500));
|
|
2220
2218
|
}
|
|
2221
2219
|
|
|
2222
|
-
.dark .text-secondary-900-50-token{
|
|
2220
|
+
.dark .text-secondary-900-50-token {
|
|
2223
2221
|
color: rgb(var(--color-secondary-50));
|
|
2224
2222
|
}
|
|
2225
2223
|
|
|
2226
|
-
.dark .text-secondary-800-100-token{
|
|
2224
|
+
.dark .text-secondary-800-100-token {
|
|
2227
2225
|
color: rgb(var(--color-secondary-100));
|
|
2228
2226
|
}
|
|
2229
2227
|
|
|
2230
|
-
.dark .text-secondary-700-200-token{
|
|
2228
|
+
.dark .text-secondary-700-200-token {
|
|
2231
2229
|
color: rgb(var(--color-secondary-200));
|
|
2232
2230
|
}
|
|
2233
2231
|
|
|
2234
|
-
.dark .text-secondary-600-300-token{
|
|
2232
|
+
.dark .text-secondary-600-300-token {
|
|
2235
2233
|
color: rgb(var(--color-secondary-300));
|
|
2236
2234
|
}
|
|
2237
2235
|
|
|
2238
|
-
.dark .text-secondary-500-400-token{
|
|
2236
|
+
.dark .text-secondary-500-400-token {
|
|
2239
2237
|
color: rgb(var(--color-secondary-400));
|
|
2240
2238
|
}
|
|
2241
2239
|
|
|
2242
|
-
.dark .text-tertiary-50-900-token{
|
|
2240
|
+
.dark .text-tertiary-50-900-token {
|
|
2243
2241
|
color: rgb(var(--color-tertiary-900));
|
|
2244
2242
|
}
|
|
2245
2243
|
|
|
2246
|
-
.dark .text-tertiary-100-800-token{
|
|
2244
|
+
.dark .text-tertiary-100-800-token {
|
|
2247
2245
|
color: rgb(var(--color-tertiary-800));
|
|
2248
2246
|
}
|
|
2249
2247
|
|
|
2250
|
-
.dark .text-tertiary-200-700-token{
|
|
2248
|
+
.dark .text-tertiary-200-700-token {
|
|
2251
2249
|
color: rgb(var(--color-tertiary-700));
|
|
2252
2250
|
}
|
|
2253
2251
|
|
|
2254
|
-
.dark .text-tertiary-300-600-token{
|
|
2252
|
+
.dark .text-tertiary-300-600-token {
|
|
2255
2253
|
color: rgb(var(--color-tertiary-600));
|
|
2256
2254
|
}
|
|
2257
2255
|
|
|
2258
|
-
.dark .text-tertiary-400-500-token{
|
|
2256
|
+
.dark .text-tertiary-400-500-token {
|
|
2259
2257
|
color: rgb(var(--color-tertiary-500));
|
|
2260
2258
|
}
|
|
2261
2259
|
|
|
2262
|
-
.dark .text-tertiary-900-50-token{
|
|
2260
|
+
.dark .text-tertiary-900-50-token {
|
|
2263
2261
|
color: rgb(var(--color-tertiary-50));
|
|
2264
2262
|
}
|
|
2265
2263
|
|
|
2266
|
-
.dark .text-tertiary-800-100-token{
|
|
2264
|
+
.dark .text-tertiary-800-100-token {
|
|
2267
2265
|
color: rgb(var(--color-tertiary-100));
|
|
2268
2266
|
}
|
|
2269
2267
|
|
|
2270
|
-
.dark .text-tertiary-700-200-token{
|
|
2268
|
+
.dark .text-tertiary-700-200-token {
|
|
2271
2269
|
color: rgb(var(--color-tertiary-200));
|
|
2272
2270
|
}
|
|
2273
2271
|
|
|
2274
|
-
.dark .text-tertiary-600-300-token{
|
|
2272
|
+
.dark .text-tertiary-600-300-token {
|
|
2275
2273
|
color: rgb(var(--color-tertiary-300));
|
|
2276
2274
|
}
|
|
2277
2275
|
|
|
2278
|
-
.dark .text-tertiary-500-400-token{
|
|
2276
|
+
.dark .text-tertiary-500-400-token {
|
|
2279
2277
|
color: rgb(var(--color-tertiary-400));
|
|
2280
2278
|
}
|
|
2281
2279
|
|
|
2282
|
-
.dark .text-success-50-900-token{
|
|
2280
|
+
.dark .text-success-50-900-token {
|
|
2283
2281
|
color: rgb(var(--color-success-900));
|
|
2284
2282
|
}
|
|
2285
2283
|
|
|
2286
|
-
.dark .text-success-100-800-token{
|
|
2284
|
+
.dark .text-success-100-800-token {
|
|
2287
2285
|
color: rgb(var(--color-success-800));
|
|
2288
2286
|
}
|
|
2289
2287
|
|
|
2290
|
-
.dark .text-success-200-700-token{
|
|
2288
|
+
.dark .text-success-200-700-token {
|
|
2291
2289
|
color: rgb(var(--color-success-700));
|
|
2292
2290
|
}
|
|
2293
2291
|
|
|
2294
|
-
.dark .text-success-300-600-token{
|
|
2292
|
+
.dark .text-success-300-600-token {
|
|
2295
2293
|
color: rgb(var(--color-success-600));
|
|
2296
2294
|
}
|
|
2297
2295
|
|
|
2298
|
-
.dark .text-success-400-500-token{
|
|
2296
|
+
.dark .text-success-400-500-token {
|
|
2299
2297
|
color: rgb(var(--color-success-500));
|
|
2300
2298
|
}
|
|
2301
2299
|
|
|
2302
|
-
.dark .text-success-900-50-token{
|
|
2300
|
+
.dark .text-success-900-50-token {
|
|
2303
2301
|
color: rgb(var(--color-success-50));
|
|
2304
2302
|
}
|
|
2305
2303
|
|
|
2306
|
-
.dark .text-success-800-100-token{
|
|
2304
|
+
.dark .text-success-800-100-token {
|
|
2307
2305
|
color: rgb(var(--color-success-100));
|
|
2308
2306
|
}
|
|
2309
2307
|
|
|
2310
|
-
.dark .text-success-700-200-token{
|
|
2308
|
+
.dark .text-success-700-200-token {
|
|
2311
2309
|
color: rgb(var(--color-success-200));
|
|
2312
2310
|
}
|
|
2313
2311
|
|
|
2314
|
-
.dark .text-success-600-300-token{
|
|
2312
|
+
.dark .text-success-600-300-token {
|
|
2315
2313
|
color: rgb(var(--color-success-300));
|
|
2316
2314
|
}
|
|
2317
2315
|
|
|
2318
|
-
.dark .text-success-500-400-token{
|
|
2316
|
+
.dark .text-success-500-400-token {
|
|
2319
2317
|
color: rgb(var(--color-success-400));
|
|
2320
2318
|
}
|
|
2321
2319
|
|
|
2322
|
-
.dark .text-warning-50-900-token{
|
|
2320
|
+
.dark .text-warning-50-900-token {
|
|
2323
2321
|
color: rgb(var(--color-warning-900));
|
|
2324
2322
|
}
|
|
2325
2323
|
|
|
2326
|
-
.dark .text-warning-100-800-token{
|
|
2324
|
+
.dark .text-warning-100-800-token {
|
|
2327
2325
|
color: rgb(var(--color-warning-800));
|
|
2328
2326
|
}
|
|
2329
2327
|
|
|
2330
|
-
.dark .text-warning-200-700-token{
|
|
2328
|
+
.dark .text-warning-200-700-token {
|
|
2331
2329
|
color: rgb(var(--color-warning-700));
|
|
2332
2330
|
}
|
|
2333
2331
|
|
|
2334
|
-
.dark .text-warning-300-600-token{
|
|
2332
|
+
.dark .text-warning-300-600-token {
|
|
2335
2333
|
color: rgb(var(--color-warning-600));
|
|
2336
2334
|
}
|
|
2337
2335
|
|
|
2338
|
-
.dark .text-warning-400-500-token{
|
|
2336
|
+
.dark .text-warning-400-500-token {
|
|
2339
2337
|
color: rgb(var(--color-warning-500));
|
|
2340
2338
|
}
|
|
2341
2339
|
|
|
2342
|
-
.dark .text-warning-900-50-token{
|
|
2340
|
+
.dark .text-warning-900-50-token {
|
|
2343
2341
|
color: rgb(var(--color-warning-50));
|
|
2344
2342
|
}
|
|
2345
2343
|
|
|
2346
|
-
.dark .text-warning-800-100-token{
|
|
2344
|
+
.dark .text-warning-800-100-token {
|
|
2347
2345
|
color: rgb(var(--color-warning-100));
|
|
2348
2346
|
}
|
|
2349
2347
|
|
|
2350
|
-
.dark .text-warning-700-200-token{
|
|
2348
|
+
.dark .text-warning-700-200-token {
|
|
2351
2349
|
color: rgb(var(--color-warning-200));
|
|
2352
2350
|
}
|
|
2353
2351
|
|
|
2354
|
-
.dark .text-warning-600-300-token{
|
|
2352
|
+
.dark .text-warning-600-300-token {
|
|
2355
2353
|
color: rgb(var(--color-warning-300));
|
|
2356
2354
|
}
|
|
2357
2355
|
|
|
2358
|
-
.dark .text-warning-500-400-token{
|
|
2356
|
+
.dark .text-warning-500-400-token {
|
|
2359
2357
|
color: rgb(var(--color-warning-400));
|
|
2360
2358
|
}
|
|
2361
2359
|
|
|
2362
|
-
.dark .text-error-50-900-token{
|
|
2360
|
+
.dark .text-error-50-900-token {
|
|
2363
2361
|
color: rgb(var(--color-error-900));
|
|
2364
2362
|
}
|
|
2365
2363
|
|
|
2366
|
-
.dark .text-error-100-800-token{
|
|
2364
|
+
.dark .text-error-100-800-token {
|
|
2367
2365
|
color: rgb(var(--color-error-800));
|
|
2368
2366
|
}
|
|
2369
2367
|
|
|
2370
|
-
.dark .text-error-200-700-token{
|
|
2368
|
+
.dark .text-error-200-700-token {
|
|
2371
2369
|
color: rgb(var(--color-error-700));
|
|
2372
2370
|
}
|
|
2373
2371
|
|
|
2374
|
-
.dark .text-error-300-600-token{
|
|
2372
|
+
.dark .text-error-300-600-token {
|
|
2375
2373
|
color: rgb(var(--color-error-600));
|
|
2376
2374
|
}
|
|
2377
2375
|
|
|
2378
|
-
.dark .text-error-400-500-token{
|
|
2376
|
+
.dark .text-error-400-500-token {
|
|
2379
2377
|
color: rgb(var(--color-error-500));
|
|
2380
2378
|
}
|
|
2381
2379
|
|
|
2382
|
-
.dark .text-error-900-50-token{
|
|
2380
|
+
.dark .text-error-900-50-token {
|
|
2383
2381
|
color: rgb(var(--color-error-50));
|
|
2384
2382
|
}
|
|
2385
2383
|
|
|
2386
|
-
.dark .text-error-800-100-token{
|
|
2384
|
+
.dark .text-error-800-100-token {
|
|
2387
2385
|
color: rgb(var(--color-error-100));
|
|
2388
2386
|
}
|
|
2389
2387
|
|
|
2390
|
-
.dark .text-error-700-200-token{
|
|
2388
|
+
.dark .text-error-700-200-token {
|
|
2391
2389
|
color: rgb(var(--color-error-200));
|
|
2392
2390
|
}
|
|
2393
2391
|
|
|
2394
|
-
.dark .text-error-600-300-token{
|
|
2392
|
+
.dark .text-error-600-300-token {
|
|
2395
2393
|
color: rgb(var(--color-error-300));
|
|
2396
2394
|
}
|
|
2397
2395
|
|
|
2398
|
-
.dark .text-error-500-400-token{
|
|
2396
|
+
.dark .text-error-500-400-token {
|
|
2399
2397
|
color: rgb(var(--color-error-400));
|
|
2400
2398
|
}
|
|
2401
2399
|
|
|
2402
|
-
.dark .text-surface-50-900-token{
|
|
2400
|
+
.dark .text-surface-50-900-token {
|
|
2403
2401
|
color: rgb(var(--color-surface-900));
|
|
2404
2402
|
}
|
|
2405
2403
|
|
|
2406
|
-
.dark .text-surface-100-800-token{
|
|
2404
|
+
.dark .text-surface-100-800-token {
|
|
2407
2405
|
color: rgb(var(--color-surface-800));
|
|
2408
2406
|
}
|
|
2409
2407
|
|
|
2410
|
-
.dark .text-surface-200-700-token{
|
|
2408
|
+
.dark .text-surface-200-700-token {
|
|
2411
2409
|
color: rgb(var(--color-surface-700));
|
|
2412
2410
|
}
|
|
2413
2411
|
|
|
2414
|
-
.dark .text-surface-300-600-token{
|
|
2412
|
+
.dark .text-surface-300-600-token {
|
|
2415
2413
|
color: rgb(var(--color-surface-600));
|
|
2416
2414
|
}
|
|
2417
2415
|
|
|
2418
|
-
.dark .text-surface-400-500-token{
|
|
2416
|
+
.dark .text-surface-400-500-token {
|
|
2419
2417
|
color: rgb(var(--color-surface-500));
|
|
2420
2418
|
}
|
|
2421
2419
|
|
|
2422
|
-
.dark .text-surface-900-50-token{
|
|
2420
|
+
.dark .text-surface-900-50-token {
|
|
2423
2421
|
color: rgb(var(--color-surface-50));
|
|
2424
2422
|
}
|
|
2425
2423
|
|
|
2426
|
-
.dark .text-surface-800-100-token{
|
|
2424
|
+
.dark .text-surface-800-100-token {
|
|
2427
2425
|
color: rgb(var(--color-surface-100));
|
|
2428
2426
|
}
|
|
2429
2427
|
|
|
2430
|
-
.dark .text-surface-700-200-token{
|
|
2428
|
+
.dark .text-surface-700-200-token {
|
|
2431
2429
|
color: rgb(var(--color-surface-200));
|
|
2432
2430
|
}
|
|
2433
2431
|
|
|
2434
|
-
.dark .text-surface-600-300-token{
|
|
2432
|
+
.dark .text-surface-600-300-token {
|
|
2435
2433
|
color: rgb(var(--color-surface-300));
|
|
2436
2434
|
}
|
|
2437
2435
|
|
|
2438
|
-
.dark .text-surface-500-400-token{
|
|
2436
|
+
.dark .text-surface-500-400-token {
|
|
2439
2437
|
color: rgb(var(--color-surface-400));
|
|
2440
2438
|
}
|
|
2441
2439
|
|
|
2442
|
-
.dark .ring-outline-token{
|
|
2440
|
+
.dark .ring-outline-token {
|
|
2443
2441
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2444
2442
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2445
2443
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
@@ -2447,302 +2445,302 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
|
2447
2445
|
--tw-ring-color: rgb(250 250 250 / 0.05);
|
|
2448
2446
|
}
|
|
2449
2447
|
|
|
2450
|
-
.dark .ring-primary-50-900-token{
|
|
2448
|
+
.dark .ring-primary-50-900-token {
|
|
2451
2449
|
--tw-ring-color: rgb(var(--color-primary-900) / 1);
|
|
2452
2450
|
}
|
|
2453
2451
|
|
|
2454
|
-
.dark .ring-primary-100-800-token{
|
|
2452
|
+
.dark .ring-primary-100-800-token {
|
|
2455
2453
|
--tw-ring-color: rgb(var(--color-primary-800) / 1);
|
|
2456
2454
|
}
|
|
2457
2455
|
|
|
2458
|
-
.dark .ring-primary-200-700-token{
|
|
2456
|
+
.dark .ring-primary-200-700-token {
|
|
2459
2457
|
--tw-ring-color: rgb(var(--color-primary-700) / 1);
|
|
2460
2458
|
}
|
|
2461
2459
|
|
|
2462
|
-
.dark .ring-primary-300-600-token{
|
|
2460
|
+
.dark .ring-primary-300-600-token {
|
|
2463
2461
|
--tw-ring-color: rgb(var(--color-primary-600) / 1);
|
|
2464
2462
|
}
|
|
2465
2463
|
|
|
2466
|
-
.dark .ring-primary-400-500-token{
|
|
2464
|
+
.dark .ring-primary-400-500-token {
|
|
2467
2465
|
--tw-ring-color: rgb(var(--color-primary-500) / 1);
|
|
2468
2466
|
}
|
|
2469
2467
|
|
|
2470
|
-
.dark .ring-primary-900-50-token{
|
|
2468
|
+
.dark .ring-primary-900-50-token {
|
|
2471
2469
|
--tw-ring-color: rgb(var(--color-primary-50) / 1);
|
|
2472
2470
|
}
|
|
2473
2471
|
|
|
2474
|
-
.dark .ring-primary-800-100-token{
|
|
2472
|
+
.dark .ring-primary-800-100-token {
|
|
2475
2473
|
--tw-ring-color: rgb(var(--color-primary-100) / 1);
|
|
2476
2474
|
}
|
|
2477
2475
|
|
|
2478
|
-
.dark .ring-primary-700-200-token{
|
|
2476
|
+
.dark .ring-primary-700-200-token {
|
|
2479
2477
|
--tw-ring-color: rgb(var(--color-primary-200) / 1);
|
|
2480
2478
|
}
|
|
2481
2479
|
|
|
2482
|
-
.dark .ring-primary-600-300-token{
|
|
2480
|
+
.dark .ring-primary-600-300-token {
|
|
2483
2481
|
--tw-ring-color: rgb(var(--color-primary-300) / 1);
|
|
2484
2482
|
}
|
|
2485
2483
|
|
|
2486
|
-
.dark .ring-primary-500-400-token{
|
|
2484
|
+
.dark .ring-primary-500-400-token {
|
|
2487
2485
|
--tw-ring-color: rgb(var(--color-primary-400) / 1);
|
|
2488
2486
|
}
|
|
2489
2487
|
|
|
2490
|
-
.dark .ring-secondary-50-900-token{
|
|
2488
|
+
.dark .ring-secondary-50-900-token {
|
|
2491
2489
|
--tw-ring-color: rgb(var(--color-secondary-900) / 1);
|
|
2492
2490
|
}
|
|
2493
2491
|
|
|
2494
|
-
.dark .ring-secondary-100-800-token{
|
|
2492
|
+
.dark .ring-secondary-100-800-token {
|
|
2495
2493
|
--tw-ring-color: rgb(var(--color-secondary-800) / 1);
|
|
2496
2494
|
}
|
|
2497
2495
|
|
|
2498
|
-
.dark .ring-secondary-200-700-token{
|
|
2496
|
+
.dark .ring-secondary-200-700-token {
|
|
2499
2497
|
--tw-ring-color: rgb(var(--color-secondary-700) / 1);
|
|
2500
2498
|
}
|
|
2501
2499
|
|
|
2502
|
-
.dark .ring-secondary-300-600-token{
|
|
2500
|
+
.dark .ring-secondary-300-600-token {
|
|
2503
2501
|
--tw-ring-color: rgb(var(--color-secondary-600) / 1);
|
|
2504
2502
|
}
|
|
2505
2503
|
|
|
2506
|
-
.dark .ring-secondary-400-500-token{
|
|
2504
|
+
.dark .ring-secondary-400-500-token {
|
|
2507
2505
|
--tw-ring-color: rgb(var(--color-secondary-500) / 1);
|
|
2508
2506
|
}
|
|
2509
2507
|
|
|
2510
|
-
.dark .ring-secondary-900-50-token{
|
|
2508
|
+
.dark .ring-secondary-900-50-token {
|
|
2511
2509
|
--tw-ring-color: rgb(var(--color-secondary-50) / 1);
|
|
2512
2510
|
}
|
|
2513
2511
|
|
|
2514
|
-
.dark .ring-secondary-800-100-token{
|
|
2512
|
+
.dark .ring-secondary-800-100-token {
|
|
2515
2513
|
--tw-ring-color: rgb(var(--color-secondary-100) / 1);
|
|
2516
2514
|
}
|
|
2517
2515
|
|
|
2518
|
-
.dark .ring-secondary-700-200-token{
|
|
2516
|
+
.dark .ring-secondary-700-200-token {
|
|
2519
2517
|
--tw-ring-color: rgb(var(--color-secondary-200) / 1);
|
|
2520
2518
|
}
|
|
2521
2519
|
|
|
2522
|
-
.dark .ring-secondary-600-300-token{
|
|
2520
|
+
.dark .ring-secondary-600-300-token {
|
|
2523
2521
|
--tw-ring-color: rgb(var(--color-secondary-300) / 1);
|
|
2524
2522
|
}
|
|
2525
2523
|
|
|
2526
|
-
.dark .ring-secondary-500-400-token{
|
|
2524
|
+
.dark .ring-secondary-500-400-token {
|
|
2527
2525
|
--tw-ring-color: rgb(var(--color-secondary-400) / 1);
|
|
2528
2526
|
}
|
|
2529
2527
|
|
|
2530
|
-
.dark .ring-tertiary-50-900-token{
|
|
2528
|
+
.dark .ring-tertiary-50-900-token {
|
|
2531
2529
|
--tw-ring-color: rgb(var(--color-tertiary-900) / 1);
|
|
2532
2530
|
}
|
|
2533
2531
|
|
|
2534
|
-
.dark .ring-tertiary-100-800-token{
|
|
2532
|
+
.dark .ring-tertiary-100-800-token {
|
|
2535
2533
|
--tw-ring-color: rgb(var(--color-tertiary-800) / 1);
|
|
2536
2534
|
}
|
|
2537
2535
|
|
|
2538
|
-
.dark .ring-tertiary-200-700-token{
|
|
2536
|
+
.dark .ring-tertiary-200-700-token {
|
|
2539
2537
|
--tw-ring-color: rgb(var(--color-tertiary-700) / 1);
|
|
2540
2538
|
}
|
|
2541
2539
|
|
|
2542
|
-
.dark .ring-tertiary-300-600-token{
|
|
2540
|
+
.dark .ring-tertiary-300-600-token {
|
|
2543
2541
|
--tw-ring-color: rgb(var(--color-tertiary-600) / 1);
|
|
2544
2542
|
}
|
|
2545
2543
|
|
|
2546
|
-
.dark .ring-tertiary-400-500-token{
|
|
2544
|
+
.dark .ring-tertiary-400-500-token {
|
|
2547
2545
|
--tw-ring-color: rgb(var(--color-tertiary-500) / 1);
|
|
2548
2546
|
}
|
|
2549
2547
|
|
|
2550
|
-
.dark .ring-tertiary-900-50-token{
|
|
2548
|
+
.dark .ring-tertiary-900-50-token {
|
|
2551
2549
|
--tw-ring-color: rgb(var(--color-tertiary-50) / 1);
|
|
2552
2550
|
}
|
|
2553
2551
|
|
|
2554
|
-
.dark .ring-tertiary-800-100-token{
|
|
2552
|
+
.dark .ring-tertiary-800-100-token {
|
|
2555
2553
|
--tw-ring-color: rgb(var(--color-tertiary-100) / 1);
|
|
2556
2554
|
}
|
|
2557
2555
|
|
|
2558
|
-
.dark .ring-tertiary-700-200-token{
|
|
2556
|
+
.dark .ring-tertiary-700-200-token {
|
|
2559
2557
|
--tw-ring-color: rgb(var(--color-tertiary-200) / 1);
|
|
2560
2558
|
}
|
|
2561
2559
|
|
|
2562
|
-
.dark .ring-tertiary-600-300-token{
|
|
2560
|
+
.dark .ring-tertiary-600-300-token {
|
|
2563
2561
|
--tw-ring-color: rgb(var(--color-tertiary-300) / 1);
|
|
2564
2562
|
}
|
|
2565
2563
|
|
|
2566
|
-
.dark .ring-tertiary-500-400-token{
|
|
2564
|
+
.dark .ring-tertiary-500-400-token {
|
|
2567
2565
|
--tw-ring-color: rgb(var(--color-tertiary-400) / 1);
|
|
2568
2566
|
}
|
|
2569
2567
|
|
|
2570
|
-
.dark .ring-success-50-900-token{
|
|
2568
|
+
.dark .ring-success-50-900-token {
|
|
2571
2569
|
--tw-ring-color: rgb(var(--color-success-900) / 1);
|
|
2572
2570
|
}
|
|
2573
2571
|
|
|
2574
|
-
.dark .ring-success-100-800-token{
|
|
2572
|
+
.dark .ring-success-100-800-token {
|
|
2575
2573
|
--tw-ring-color: rgb(var(--color-success-800) / 1);
|
|
2576
2574
|
}
|
|
2577
2575
|
|
|
2578
|
-
.dark .ring-success-200-700-token{
|
|
2576
|
+
.dark .ring-success-200-700-token {
|
|
2579
2577
|
--tw-ring-color: rgb(var(--color-success-700) / 1);
|
|
2580
2578
|
}
|
|
2581
2579
|
|
|
2582
|
-
.dark .ring-success-300-600-token{
|
|
2580
|
+
.dark .ring-success-300-600-token {
|
|
2583
2581
|
--tw-ring-color: rgb(var(--color-success-600) / 1);
|
|
2584
2582
|
}
|
|
2585
2583
|
|
|
2586
|
-
.dark .ring-success-400-500-token{
|
|
2584
|
+
.dark .ring-success-400-500-token {
|
|
2587
2585
|
--tw-ring-color: rgb(var(--color-success-500) / 1);
|
|
2588
2586
|
}
|
|
2589
2587
|
|
|
2590
|
-
.dark .ring-success-900-50-token{
|
|
2588
|
+
.dark .ring-success-900-50-token {
|
|
2591
2589
|
--tw-ring-color: rgb(var(--color-success-50) / 1);
|
|
2592
2590
|
}
|
|
2593
2591
|
|
|
2594
|
-
.dark .ring-success-800-100-token{
|
|
2592
|
+
.dark .ring-success-800-100-token {
|
|
2595
2593
|
--tw-ring-color: rgb(var(--color-success-100) / 1);
|
|
2596
2594
|
}
|
|
2597
2595
|
|
|
2598
|
-
.dark .ring-success-700-200-token{
|
|
2596
|
+
.dark .ring-success-700-200-token {
|
|
2599
2597
|
--tw-ring-color: rgb(var(--color-success-200) / 1);
|
|
2600
2598
|
}
|
|
2601
2599
|
|
|
2602
|
-
.dark .ring-success-600-300-token{
|
|
2600
|
+
.dark .ring-success-600-300-token {
|
|
2603
2601
|
--tw-ring-color: rgb(var(--color-success-300) / 1);
|
|
2604
2602
|
}
|
|
2605
2603
|
|
|
2606
|
-
.dark .ring-success-500-400-token{
|
|
2604
|
+
.dark .ring-success-500-400-token {
|
|
2607
2605
|
--tw-ring-color: rgb(var(--color-success-400) / 1);
|
|
2608
2606
|
}
|
|
2609
2607
|
|
|
2610
|
-
.dark .ring-warning-50-900-token{
|
|
2608
|
+
.dark .ring-warning-50-900-token {
|
|
2611
2609
|
--tw-ring-color: rgb(var(--color-warning-900) / 1);
|
|
2612
2610
|
}
|
|
2613
2611
|
|
|
2614
|
-
.dark .ring-warning-100-800-token{
|
|
2612
|
+
.dark .ring-warning-100-800-token {
|
|
2615
2613
|
--tw-ring-color: rgb(var(--color-warning-800) / 1);
|
|
2616
2614
|
}
|
|
2617
2615
|
|
|
2618
|
-
.dark .ring-warning-200-700-token{
|
|
2616
|
+
.dark .ring-warning-200-700-token {
|
|
2619
2617
|
--tw-ring-color: rgb(var(--color-warning-700) / 1);
|
|
2620
2618
|
}
|
|
2621
2619
|
|
|
2622
|
-
.dark .ring-warning-300-600-token{
|
|
2620
|
+
.dark .ring-warning-300-600-token {
|
|
2623
2621
|
--tw-ring-color: rgb(var(--color-warning-600) / 1);
|
|
2624
2622
|
}
|
|
2625
2623
|
|
|
2626
|
-
.dark .ring-warning-400-500-token{
|
|
2624
|
+
.dark .ring-warning-400-500-token {
|
|
2627
2625
|
--tw-ring-color: rgb(var(--color-warning-500) / 1);
|
|
2628
2626
|
}
|
|
2629
2627
|
|
|
2630
|
-
.dark .ring-warning-900-50-token{
|
|
2628
|
+
.dark .ring-warning-900-50-token {
|
|
2631
2629
|
--tw-ring-color: rgb(var(--color-warning-50) / 1);
|
|
2632
2630
|
}
|
|
2633
2631
|
|
|
2634
|
-
.dark .ring-warning-800-100-token{
|
|
2632
|
+
.dark .ring-warning-800-100-token {
|
|
2635
2633
|
--tw-ring-color: rgb(var(--color-warning-100) / 1);
|
|
2636
2634
|
}
|
|
2637
2635
|
|
|
2638
|
-
.dark .ring-warning-700-200-token{
|
|
2636
|
+
.dark .ring-warning-700-200-token {
|
|
2639
2637
|
--tw-ring-color: rgb(var(--color-warning-200) / 1);
|
|
2640
2638
|
}
|
|
2641
2639
|
|
|
2642
|
-
.dark .ring-warning-600-300-token{
|
|
2640
|
+
.dark .ring-warning-600-300-token {
|
|
2643
2641
|
--tw-ring-color: rgb(var(--color-warning-300) / 1);
|
|
2644
2642
|
}
|
|
2645
2643
|
|
|
2646
|
-
.dark .ring-warning-500-400-token{
|
|
2644
|
+
.dark .ring-warning-500-400-token {
|
|
2647
2645
|
--tw-ring-color: rgb(var(--color-warning-400) / 1);
|
|
2648
2646
|
}
|
|
2649
2647
|
|
|
2650
|
-
.dark .ring-error-50-900-token{
|
|
2648
|
+
.dark .ring-error-50-900-token {
|
|
2651
2649
|
--tw-ring-color: rgb(var(--color-error-900) / 1);
|
|
2652
2650
|
}
|
|
2653
2651
|
|
|
2654
|
-
.dark .ring-error-100-800-token{
|
|
2652
|
+
.dark .ring-error-100-800-token {
|
|
2655
2653
|
--tw-ring-color: rgb(var(--color-error-800) / 1);
|
|
2656
2654
|
}
|
|
2657
2655
|
|
|
2658
|
-
.dark .ring-error-200-700-token{
|
|
2656
|
+
.dark .ring-error-200-700-token {
|
|
2659
2657
|
--tw-ring-color: rgb(var(--color-error-700) / 1);
|
|
2660
2658
|
}
|
|
2661
2659
|
|
|
2662
|
-
.dark .ring-error-300-600-token{
|
|
2660
|
+
.dark .ring-error-300-600-token {
|
|
2663
2661
|
--tw-ring-color: rgb(var(--color-error-600) / 1);
|
|
2664
2662
|
}
|
|
2665
2663
|
|
|
2666
|
-
.dark .ring-error-400-500-token{
|
|
2664
|
+
.dark .ring-error-400-500-token {
|
|
2667
2665
|
--tw-ring-color: rgb(var(--color-error-500) / 1);
|
|
2668
2666
|
}
|
|
2669
2667
|
|
|
2670
|
-
.dark .ring-error-900-50-token{
|
|
2668
|
+
.dark .ring-error-900-50-token {
|
|
2671
2669
|
--tw-ring-color: rgb(var(--color-error-50) / 1);
|
|
2672
2670
|
}
|
|
2673
2671
|
|
|
2674
|
-
.dark .ring-error-800-100-token{
|
|
2672
|
+
.dark .ring-error-800-100-token {
|
|
2675
2673
|
--tw-ring-color: rgb(var(--color-error-100) / 1);
|
|
2676
2674
|
}
|
|
2677
2675
|
|
|
2678
|
-
.dark .ring-error-700-200-token{
|
|
2676
|
+
.dark .ring-error-700-200-token {
|
|
2679
2677
|
--tw-ring-color: rgb(var(--color-error-200) / 1);
|
|
2680
2678
|
}
|
|
2681
2679
|
|
|
2682
|
-
.dark .ring-error-600-300-token{
|
|
2680
|
+
.dark .ring-error-600-300-token {
|
|
2683
2681
|
--tw-ring-color: rgb(var(--color-error-300) / 1);
|
|
2684
2682
|
}
|
|
2685
2683
|
|
|
2686
|
-
.dark .ring-error-500-400-token{
|
|
2684
|
+
.dark .ring-error-500-400-token {
|
|
2687
2685
|
--tw-ring-color: rgb(var(--color-error-400) / 1);
|
|
2688
2686
|
}
|
|
2689
2687
|
|
|
2690
|
-
.dark .ring-surface-50-900-token{
|
|
2688
|
+
.dark .ring-surface-50-900-token {
|
|
2691
2689
|
--tw-ring-color: rgb(var(--color-surface-900) / 1);
|
|
2692
2690
|
}
|
|
2693
2691
|
|
|
2694
|
-
.dark .ring-surface-100-800-token{
|
|
2692
|
+
.dark .ring-surface-100-800-token {
|
|
2695
2693
|
--tw-ring-color: rgb(var(--color-surface-800) / 1);
|
|
2696
2694
|
}
|
|
2697
2695
|
|
|
2698
|
-
.dark .ring-surface-200-700-token{
|
|
2696
|
+
.dark .ring-surface-200-700-token {
|
|
2699
2697
|
--tw-ring-color: rgb(var(--color-surface-700) / 1);
|
|
2700
2698
|
}
|
|
2701
2699
|
|
|
2702
|
-
.dark .ring-surface-300-600-token{
|
|
2700
|
+
.dark .ring-surface-300-600-token {
|
|
2703
2701
|
--tw-ring-color: rgb(var(--color-surface-600) / 1);
|
|
2704
2702
|
}
|
|
2705
2703
|
|
|
2706
|
-
.dark .ring-surface-400-500-token{
|
|
2704
|
+
.dark .ring-surface-400-500-token {
|
|
2707
2705
|
--tw-ring-color: rgb(var(--color-surface-500) / 1);
|
|
2708
2706
|
}
|
|
2709
2707
|
|
|
2710
|
-
.dark .ring-surface-900-50-token{
|
|
2708
|
+
.dark .ring-surface-900-50-token {
|
|
2711
2709
|
--tw-ring-color: rgb(var(--color-surface-50) / 1);
|
|
2712
2710
|
}
|
|
2713
2711
|
|
|
2714
|
-
.dark .ring-surface-800-100-token{
|
|
2712
|
+
.dark .ring-surface-800-100-token {
|
|
2715
2713
|
--tw-ring-color: rgb(var(--color-surface-100) / 1);
|
|
2716
2714
|
}
|
|
2717
2715
|
|
|
2718
|
-
.dark .ring-surface-700-200-token{
|
|
2716
|
+
.dark .ring-surface-700-200-token {
|
|
2719
2717
|
--tw-ring-color: rgb(var(--color-surface-200) / 1);
|
|
2720
2718
|
}
|
|
2721
2719
|
|
|
2722
|
-
.dark .ring-surface-600-300-token{
|
|
2720
|
+
.dark .ring-surface-600-300-token {
|
|
2723
2721
|
--tw-ring-color: rgb(var(--color-surface-300) / 1);
|
|
2724
2722
|
}
|
|
2725
2723
|
|
|
2726
|
-
.dark .ring-surface-500-400-token{
|
|
2724
|
+
.dark .ring-surface-500-400-token {
|
|
2727
2725
|
--tw-ring-color: rgb(var(--color-surface-400) / 1);
|
|
2728
2726
|
}
|
|
2729
2727
|
|
|
2730
|
-
.hover\:cursor-pointer:hover{
|
|
2728
|
+
.hover\:cursor-pointer:hover {
|
|
2731
2729
|
cursor: pointer;
|
|
2732
2730
|
}
|
|
2733
2731
|
|
|
2734
|
-
.hover\:bg-primary-100:hover{
|
|
2732
|
+
.hover\:bg-primary-100:hover {
|
|
2735
2733
|
--tw-bg-opacity: 1;
|
|
2736
2734
|
background-color: rgb(var(--color-primary-100) / var(--tw-bg-opacity));
|
|
2737
2735
|
}
|
|
2738
2736
|
|
|
2739
|
-
.hover\:text-primary-900:hover{
|
|
2737
|
+
.hover\:text-primary-900:hover {
|
|
2740
2738
|
--tw-text-opacity: 1;
|
|
2741
2739
|
color: rgb(var(--color-primary-900) / var(--tw-text-opacity));
|
|
2742
2740
|
}
|
|
2743
2741
|
|
|
2744
|
-
@media (min-width: 1024px){
|
|
2745
|
-
.lg\:max-h-\[500px\]{
|
|
2742
|
+
@media (min-width: 1024px) {
|
|
2743
|
+
.lg\:max-h-\[500px\] {
|
|
2746
2744
|
max-height: 500px;
|
|
2747
2745
|
}
|
|
2748
2746
|
}
|
|
@@ -2791,17 +2789,17 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
|
2791
2789
|
|
|
2792
2790
|
/* === Modal (helpers) === */
|
|
2793
2791
|
|
|
2794
|
-
.w-modal-slim{
|
|
2792
|
+
.w-modal-slim {
|
|
2795
2793
|
max-width: 400px;
|
|
2796
2794
|
width:100%;
|
|
2797
2795
|
}
|
|
2798
2796
|
|
|
2799
|
-
.w-modal{
|
|
2797
|
+
.w-modal {
|
|
2800
2798
|
max-width: 640px;
|
|
2801
2799
|
width:100%;
|
|
2802
2800
|
}
|
|
2803
2801
|
|
|
2804
|
-
.w-modal-wide{
|
|
2802
|
+
.w-modal-wide {
|
|
2805
2803
|
max-width: 80%;
|
|
2806
2804
|
width:100%;
|
|
2807
2805
|
}
|
|
@@ -2824,7 +2822,7 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button{
|
|
|
2824
2822
|
transition-duration: 200ms;
|
|
2825
2823
|
}
|
|
2826
2824
|
|
|
2827
|
-
[data-popup] .arrow{
|
|
2825
|
+
[data-popup] .arrow {
|
|
2828
2826
|
height: 0.5rem;
|
|
2829
2827
|
width: 0.5rem;
|
|
2830
2828
|
--tw-rotate: 45deg;
|
|
@@ -4543,101 +4541,6 @@ img,video{
|
|
|
4543
4541
|
}
|
|
4544
4542
|
}
|
|
4545
4543
|
|
|
4546
|
-
:root{
|
|
4547
|
-
--theme-font-family-base: system-ui;
|
|
4548
|
-
--theme-font-family-heading: system-ui;
|
|
4549
|
-
--theme-font-color-base: 0 0 0;
|
|
4550
|
-
--theme-font-color-dark: 255 255 255;
|
|
4551
|
-
--theme-rounded-base: 9999px;
|
|
4552
|
-
--theme-rounded-container: 8px;
|
|
4553
|
-
--theme-border-base: 1px;
|
|
4554
|
-
--on-primary: 0 0 0;
|
|
4555
|
-
--on-secondary: 255 255 255;
|
|
4556
|
-
--on-tertiary: 0 0 0;
|
|
4557
|
-
--on-success: 0 0 0;
|
|
4558
|
-
--on-warning: 0 0 0;
|
|
4559
|
-
--on-error: 255 255 255;
|
|
4560
|
-
--on-surface: 255 255 255;
|
|
4561
|
-
--color-primary-50: 219 245 236;
|
|
4562
|
-
--color-primary-100: 207 241 230;
|
|
4563
|
-
--color-primary-200: 195 238 224;
|
|
4564
|
-
--color-primary-300: 159 227 205;
|
|
4565
|
-
--color-primary-400: 87 207 167;
|
|
4566
|
-
--color-primary-500: 15 186 129;
|
|
4567
|
-
--color-primary-600: 14 167 116;
|
|
4568
|
-
--color-primary-700: 11 140 97;
|
|
4569
|
-
--color-primary-800: 9 112 77;
|
|
4570
|
-
--color-primary-900: 7 91 63;
|
|
4571
|
-
--color-secondary-50: 229 227 251;
|
|
4572
|
-
--color-secondary-100: 220 218 250;
|
|
4573
|
-
--color-secondary-200: 211 209 249;
|
|
4574
|
-
--color-secondary-300: 185 181 245;
|
|
4575
|
-
--color-secondary-400: 132 126 237;
|
|
4576
|
-
--color-secondary-500: 79 70 229;
|
|
4577
|
-
--color-secondary-600: 71 63 206;
|
|
4578
|
-
--color-secondary-700: 59 53 172;
|
|
4579
|
-
--color-secondary-800: 47 42 137;
|
|
4580
|
-
--color-secondary-900: 39 34 112;
|
|
4581
|
-
--color-tertiary-50: 219 242 252;
|
|
4582
|
-
--color-tertiary-100: 207 237 251;
|
|
4583
|
-
--color-tertiary-200: 195 233 250;
|
|
4584
|
-
--color-tertiary-300: 159 219 246;
|
|
4585
|
-
--color-tertiary-400: 86 192 240;
|
|
4586
|
-
--color-tertiary-500: 14 165 233;
|
|
4587
|
-
--color-tertiary-600: 13 149 210;
|
|
4588
|
-
--color-tertiary-700: 11 124 175;
|
|
4589
|
-
--color-tertiary-800: 8 99 140;
|
|
4590
|
-
--color-tertiary-900: 7 81 114;
|
|
4591
|
-
--color-success-50: 237 247 220;
|
|
4592
|
-
--color-success-100: 230 245 208;
|
|
4593
|
-
--color-success-200: 224 242 197;
|
|
4594
|
-
--color-success-300: 206 235 162;
|
|
4595
|
-
--color-success-400: 169 219 92;
|
|
4596
|
-
--color-success-500: 132 204 22;
|
|
4597
|
-
--color-success-600: 119 184 20;
|
|
4598
|
-
--color-success-700: 99 153 17;
|
|
4599
|
-
--color-success-800: 79 122 13;
|
|
4600
|
-
--color-success-900: 65 100 11;
|
|
4601
|
-
--color-warning-50: 252 244 218;
|
|
4602
|
-
--color-warning-100: 251 240 206;
|
|
4603
|
-
--color-warning-200: 250 236 193;
|
|
4604
|
-
--color-warning-300: 247 225 156;
|
|
4605
|
-
--color-warning-400: 240 202 82;
|
|
4606
|
-
--color-warning-500: 234 179 8;
|
|
4607
|
-
--color-warning-600: 211 161 7;
|
|
4608
|
-
--color-warning-700: 176 134 6;
|
|
4609
|
-
--color-warning-800: 140 107 5;
|
|
4610
|
-
--color-warning-900: 115 88 4;
|
|
4611
|
-
--color-error-50: 249 221 234;
|
|
4612
|
-
--color-error-100: 246 209 228;
|
|
4613
|
-
--color-error-200: 244 198 221;
|
|
4614
|
-
--color-error-300: 238 163 200;
|
|
4615
|
-
--color-error-400: 225 94 159;
|
|
4616
|
-
--color-error-500: 212 25 118;
|
|
4617
|
-
--color-error-600: 191 23 106;
|
|
4618
|
-
--color-error-700: 159 19 89;
|
|
4619
|
-
--color-error-800: 127 15 71;
|
|
4620
|
-
--color-error-900: 104 12 58;
|
|
4621
|
-
--color-surface-50: 228 230 238;
|
|
4622
|
-
--color-surface-100: 219 222 233;
|
|
4623
|
-
--color-surface-200: 210 214 227;
|
|
4624
|
-
--color-surface-300: 182 189 210;
|
|
4625
|
-
--color-surface-400: 128 140 177;
|
|
4626
|
-
--color-surface-500: 73 90 143;
|
|
4627
|
-
--color-surface-600: 66 81 129;
|
|
4628
|
-
--color-surface-700: 55 68 107;
|
|
4629
|
-
--color-surface-800: 44 54 86;
|
|
4630
|
-
--color-surface-900: 36 44 70
|
|
4631
|
-
}
|
|
4632
|
-
|
|
4633
|
-
[data-theme=vuetiful] h1,[data-theme=vuetiful] h2,[data-theme=vuetiful] h3,[data-theme=vuetiful] h4,[data-theme=vuetiful] h5,[data-theme=vuetiful] h6{
|
|
4634
|
-
font-weight:700
|
|
4635
|
-
}
|
|
4636
|
-
|
|
4637
|
-
[data-theme=vuetiful]{
|
|
4638
|
-
background-image:radial-gradient(at 0% 0%,rgba(var(--color-secondary-500) / .33) 0px,transparent 50%),radial-gradient(at 98% 1%,rgba(var(--color-error-500) / .33) 0px,transparent 50%)
|
|
4639
|
-
}
|
|
4640
|
-
|
|
4641
4544
|
.cc-theme-switcher__popup[data-v-3283243a]{
|
|
4642
4545
|
position:absolute;
|
|
4643
4546
|
z-index:1;
|