@salt-ds/theme 1.23.3 → 1.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/theme-next.css +12 -24
- package/css/theme.css +883 -414
- package/index.css +883 -414
- package/package.json +4 -1
package/css/theme-next.css
CHANGED
|
@@ -452,24 +452,6 @@
|
|
|
452
452
|
--salt-curve-999: 999px;
|
|
453
453
|
}
|
|
454
454
|
|
|
455
|
-
/* css/palette/alpha-next.css */
|
|
456
|
-
.salt-theme.salt-theme-next[data-mode=light] {
|
|
457
|
-
--salt-palette-alpha: var(--salt-color-black-30a);
|
|
458
|
-
--salt-palette-alpha-strong: var(--salt-color-black-45a);
|
|
459
|
-
--salt-palette-alpha-weak: var(--salt-color-black-15a);
|
|
460
|
-
--salt-palette-alpha-weaker: var(--salt-color-black-10a);
|
|
461
|
-
--salt-palette-alpha-backdrop: var(--salt-color-white-70a);
|
|
462
|
-
--salt-palette-alpha-none: transparent;
|
|
463
|
-
}
|
|
464
|
-
.salt-theme.salt-theme-next[data-mode=dark] {
|
|
465
|
-
--salt-palette-alpha: var(--salt-color-white-30a);
|
|
466
|
-
--salt-palette-alpha-strong: var(--salt-color-white-45a);
|
|
467
|
-
--salt-palette-alpha-weak: var(--salt-color-white-15a);
|
|
468
|
-
--salt-palette-alpha-weaker: var(--salt-color-white-10a);
|
|
469
|
-
--salt-palette-alpha-backdrop: var(--salt-color-black-70a);
|
|
470
|
-
--salt-palette-alpha-none: transparent;
|
|
471
|
-
}
|
|
472
|
-
|
|
473
455
|
/* css/palette/accent-next.css */
|
|
474
456
|
.salt-theme.salt-theme-next[data-mode=light][data-accent=blue] {
|
|
475
457
|
--salt-palette-accent: var(--salt-color-blue-500);
|
|
@@ -566,8 +548,6 @@
|
|
|
566
548
|
|
|
567
549
|
/* css/palette/foreground-next.css */
|
|
568
550
|
.salt-theme.salt-theme-next[data-mode=light] {
|
|
569
|
-
--salt-palette-foreground-active: var(--salt-color-blue-700);
|
|
570
|
-
--salt-palette-foreground-hover: var(--salt-color-blue-600);
|
|
571
551
|
--salt-palette-foreground-primary: var(--salt-color-black);
|
|
572
552
|
--salt-palette-foreground-primary-disabled: var(--salt-color-black-40a);
|
|
573
553
|
--salt-palette-foreground-primary-alt: var(--salt-color-white);
|
|
@@ -577,8 +557,6 @@
|
|
|
577
557
|
--salt-palette-foreground-visited: var(--salt-color-purple-800);
|
|
578
558
|
}
|
|
579
559
|
.salt-theme.salt-theme-next[data-mode=dark] {
|
|
580
|
-
--salt-palette-foreground-active: var(--salt-color-blue-300);
|
|
581
|
-
--salt-palette-foreground-hover: var(--salt-color-blue-400);
|
|
582
560
|
--salt-palette-foreground-primary: var(--salt-color-white);
|
|
583
561
|
--salt-palette-foreground-primary-disabled: var(--salt-color-white-40a);
|
|
584
562
|
--salt-palette-foreground-primary-alt: var(--salt-color-white);
|
|
@@ -976,8 +954,8 @@
|
|
|
976
954
|
--salt-content-secondary-foreground-disabled: var(--salt-palette-foreground-secondary-disabled);
|
|
977
955
|
--salt-content-bold-foreground: var(--salt-palette-foreground-primary-alt);
|
|
978
956
|
--salt-content-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
|
|
979
|
-
--salt-content-foreground-hover: var(--salt-palette-
|
|
980
|
-
--salt-content-foreground-active: var(--salt-palette-
|
|
957
|
+
--salt-content-foreground-hover: var(--salt-palette-accent-strong);
|
|
958
|
+
--salt-content-foreground-active: var(--salt-palette-accent-stronger);
|
|
981
959
|
--salt-content-foreground-visited: var(--salt-palette-foreground-visited);
|
|
982
960
|
--salt-content-foreground-highlight: var(--salt-palette-accent-weaker);
|
|
983
961
|
}
|
|
@@ -1136,4 +1114,14 @@
|
|
|
1136
1114
|
--salt-color-background-gradientlight: var(--salt-color-background-titanium);
|
|
1137
1115
|
}
|
|
1138
1116
|
|
|
1117
|
+
/* css/deprecated/palette-next.css */
|
|
1118
|
+
.salt-theme[data-mode=light] {
|
|
1119
|
+
--salt-palette-foreground-active: var(--salt-color-blue-700);
|
|
1120
|
+
--salt-palette-foreground-hover: var(--salt-color-blue-600);
|
|
1121
|
+
}
|
|
1122
|
+
.salt-theme[data-mode=dark] {
|
|
1123
|
+
--salt-palette-foreground-active: var(--salt-color-blue-300);
|
|
1124
|
+
--salt-palette-foreground-hover: var(--salt-color-blue-400);
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1139
1127
|
/* css/theme-next.css */
|