@salt-ds/theme 0.0.0-snapshot-20240726102508 → 0.0.0-snapshot-20240726124318
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/CHANGELOG.md +1308 -0
- package/README.md +1 -0
- package/css/characteristics/accent-next.css +5 -0
- package/css/characteristics/accent.css +5 -0
- package/css/characteristics/actionable-next.css +41 -0
- package/css/characteristics/actionable.css +47 -0
- package/css/characteristics/category-next.css +22 -0
- package/css/characteristics/category.css +141 -0
- package/css/characteristics/container-next.css +16 -0
- package/css/characteristics/container.css +18 -0
- package/css/characteristics/content-next.css +14 -0
- package/css/characteristics/content.css +15 -0
- package/css/characteristics/draggable.css +10 -0
- package/css/characteristics/editable-next.css +19 -0
- package/css/characteristics/editable.css +33 -0
- package/css/characteristics/focused-next.css +3 -0
- package/css/characteristics/focused.css +21 -0
- package/css/characteristics/navigable-next.css +6 -0
- package/css/characteristics/navigable.css +21 -0
- package/css/characteristics/overlayable-next.css +4 -0
- package/css/characteristics/overlayable.css +12 -0
- package/css/characteristics/selectable-next.css +20 -0
- package/css/characteristics/selectable.css +31 -0
- package/css/characteristics/separable-next.css +5 -0
- package/css/characteristics/separable.css +7 -0
- package/css/characteristics/status-next.css +34 -0
- package/css/characteristics/status.css +34 -0
- package/css/characteristics/target-next.css +4 -0
- package/css/characteristics/target.css +10 -0
- package/css/characteristics/text-next.css +56 -0
- package/css/characteristics/text.css +226 -0
- package/css/characteristics/track-next.css +3 -0
- package/css/characteristics/track.css +8 -0
- package/css/deprecated/characteristics.css +186 -0
- package/css/deprecated/fade.css +8 -0
- package/css/deprecated/foundations.css +107 -0
- package/css/deprecated/palette.css +159 -0
- package/css/foundations/alpha-next.css +48 -0
- package/css/foundations/animation.css +155 -0
- package/css/foundations/color-next.css +148 -0
- package/css/foundations/color.css +297 -0
- package/css/foundations/curve-next.css +31 -0
- package/css/foundations/duration.css +6 -0
- package/css/foundations/fade.css +72 -0
- package/css/foundations/opacity.css +9 -0
- package/css/foundations/shadow.css +23 -0
- package/css/foundations/size.css +51 -0
- package/css/foundations/spacing.css +31 -0
- package/css/foundations/typography.css +12 -0
- package/css/foundations/zindex.css +14 -0
- package/css/global.css +10 -3
- package/css/palette/accent-next.css +63 -0
- package/css/palette/accent.css +11 -0
- package/css/palette/alpha-next.css +19 -0
- package/css/palette/background-next.css +16 -0
- package/css/palette/categorical.css +163 -0
- package/css/palette/corner-next.css +12 -0
- package/css/palette/error.css +17 -0
- package/css/palette/foreground-next.css +22 -0
- package/css/palette/info-next.css +10 -0
- package/css/palette/info.css +15 -0
- package/css/palette/interact.css +91 -0
- package/css/palette/navigate.css +17 -0
- package/css/palette/negative-next.css +10 -0
- package/css/palette/negative.css +7 -0
- package/css/palette/neutral-next.css +34 -0
- package/css/palette/neutral.css +51 -0
- package/css/palette/opacity.css +9 -0
- package/css/palette/positive-next.css +10 -0
- package/css/palette/positive.css +7 -0
- package/css/palette/success.css +17 -0
- package/css/palette/text-next.css +50 -0
- package/css/palette/text.css +24 -0
- package/css/palette/warning-next.css +10 -0
- package/css/palette/warning.css +17 -0
- package/css/theme-next.css +31 -954
- package/css/theme.css +55 -1954
- package/index.css +2 -1985
- package/package.json +4 -3
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.salt-theme.salt-theme-next[data-mode="light"] {
|
|
2
|
+
--salt-palette-alpha: var(--salt-color-black-30a);
|
|
3
|
+
--salt-palette-alpha-strong: var(--salt-color-black-45a);
|
|
4
|
+
--salt-palette-alpha-weak: var(--salt-color-black-15a);
|
|
5
|
+
--salt-palette-alpha-weaker: var(--salt-color-black-10a);
|
|
6
|
+
|
|
7
|
+
--salt-palette-alpha-backdrop: var(--salt-color-white-70a);
|
|
8
|
+
--salt-palette-alpha-none: transparent;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.salt-theme.salt-theme-next[data-mode="dark"] {
|
|
12
|
+
--salt-palette-alpha: var(--salt-color-white-30a);
|
|
13
|
+
--salt-palette-alpha-strong: var(--salt-color-white-45a);
|
|
14
|
+
--salt-palette-alpha-weak: var(--salt-color-white-15a);
|
|
15
|
+
--salt-palette-alpha-weaker: var(--salt-color-white-10a);
|
|
16
|
+
|
|
17
|
+
--salt-palette-alpha-backdrop: var(--salt-color-black-70a);
|
|
18
|
+
--salt-palette-alpha-none: transparent;
|
|
19
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.salt-theme.salt-theme-next[data-mode="light"] {
|
|
2
|
+
--salt-palette-background-primary: var(--salt-color-background-snow);
|
|
3
|
+
--salt-palette-background-primary-disabled: var(--salt-color-background-snow-40a);
|
|
4
|
+
--salt-palette-background-secondary: var(--salt-color-background-marble);
|
|
5
|
+
--salt-palette-background-secondary-disabled: var(--salt-color-background-marble-40a);
|
|
6
|
+
--salt-palette-background-tertiary: var(--salt-color-background-limestone);
|
|
7
|
+
--salt-palette-background-tertiary-disabled: var(--salt-color-background-limestone-40a);
|
|
8
|
+
}
|
|
9
|
+
.salt-theme.salt-theme-next[data-mode="dark"] {
|
|
10
|
+
--salt-palette-background-primary: var(--salt-color-background-jet);
|
|
11
|
+
--salt-palette-background-primary-disabled: var(--salt-color-background-jet-40a);
|
|
12
|
+
--salt-palette-background-secondary: var(--salt-color-background-granite);
|
|
13
|
+
--salt-palette-background-secondary-disabled: var(--salt-color-background-granite-40a);
|
|
14
|
+
--salt-palette-background-tertiary: var(--salt-color-background-leather);
|
|
15
|
+
--salt-palette-background-tertiary-disabled: var(--salt-color-background-leather-40a);
|
|
16
|
+
}
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
.salt-theme[data-mode="light"] {
|
|
2
|
+
--salt-palette-categorical-1: var(--salt-color-cobalt-500);
|
|
3
|
+
--salt-palette-categorical-1-strong: var(--salt-color-cobalt-600);
|
|
4
|
+
--salt-palette-categorical-1-weakest: var(--salt-color-cobalt-100);
|
|
5
|
+
|
|
6
|
+
--salt-palette-categorical-2: var(--salt-color-cider-500);
|
|
7
|
+
--salt-palette-categorical-2-strong: var(--salt-color-cider-600);
|
|
8
|
+
--salt-palette-categorical-2-weakest: var(--salt-color-cider-100);
|
|
9
|
+
|
|
10
|
+
--salt-palette-categorical-3: var(--salt-color-plum-500);
|
|
11
|
+
--salt-palette-categorical-3-strong: var(--salt-color-plum-600);
|
|
12
|
+
--salt-palette-categorical-3-weakest: var(--salt-color-plum-100);
|
|
13
|
+
|
|
14
|
+
--salt-palette-categorical-4: var(--salt-color-aqua-500);
|
|
15
|
+
--salt-palette-categorical-4-strong: var(--salt-color-aqua-600);
|
|
16
|
+
--salt-palette-categorical-4-weakest: var(--salt-color-aqua-100);
|
|
17
|
+
|
|
18
|
+
--salt-palette-categorical-5: var(--salt-color-slate-500);
|
|
19
|
+
--salt-palette-categorical-5-strong: var(--salt-color-slate-600);
|
|
20
|
+
--salt-palette-categorical-5-weakest: var(--salt-color-slate-100);
|
|
21
|
+
|
|
22
|
+
--salt-palette-categorical-6: var(--salt-color-rose-500);
|
|
23
|
+
--salt-palette-categorical-6-strong: var(--salt-color-rose-600);
|
|
24
|
+
--salt-palette-categorical-6-weakest: var(--salt-color-rose-100);
|
|
25
|
+
|
|
26
|
+
--salt-palette-categorical-7: var(--salt-color-olive-500);
|
|
27
|
+
--salt-palette-categorical-7-strong: var(--salt-color-olive-600);
|
|
28
|
+
--salt-palette-categorical-7-weakest: var(--salt-color-olive-100);
|
|
29
|
+
|
|
30
|
+
--salt-palette-categorical-8: var(--salt-color-salmon-500);
|
|
31
|
+
--salt-palette-categorical-8-strong: var(--salt-color-salmon-600);
|
|
32
|
+
--salt-palette-categorical-8-weakest: var(--salt-color-salmon-100);
|
|
33
|
+
|
|
34
|
+
--salt-palette-categorical-9: var(--salt-color-indigo-500);
|
|
35
|
+
--salt-palette-categorical-9-strong: var(--salt-color-indigo-600);
|
|
36
|
+
--salt-palette-categorical-9-weakest: var(--salt-color-indigo-100);
|
|
37
|
+
|
|
38
|
+
--salt-palette-categorical-10: var(--salt-color-jade-500);
|
|
39
|
+
--salt-palette-categorical-10-strong: var(--salt-color-jade-600);
|
|
40
|
+
--salt-palette-categorical-10-weakest: var(--salt-color-jade-100);
|
|
41
|
+
|
|
42
|
+
--salt-palette-categorical-11: var(--salt-color-citrine-500);
|
|
43
|
+
--salt-palette-categorical-11-strong: var(--salt-color-citrine-600);
|
|
44
|
+
--salt-palette-categorical-11-weakest: var(--salt-color-citrine-100);
|
|
45
|
+
|
|
46
|
+
--salt-palette-categorical-12: var(--salt-color-autumn-500);
|
|
47
|
+
--salt-palette-categorical-12-strong: var(--salt-color-autumn-600);
|
|
48
|
+
--salt-palette-categorical-12-weakest: var(--salt-color-autumn-100);
|
|
49
|
+
|
|
50
|
+
--salt-palette-categorical-13: var(--salt-color-lavender-500);
|
|
51
|
+
--salt-palette-categorical-13-strong: var(--salt-color-lavender-600);
|
|
52
|
+
--salt-palette-categorical-13-weakest: var(--salt-color-lavender-100);
|
|
53
|
+
|
|
54
|
+
--salt-palette-categorical-14: var(--salt-color-ocean-500);
|
|
55
|
+
--salt-palette-categorical-14-strong: var(--salt-color-ocean-600);
|
|
56
|
+
--salt-palette-categorical-14-weakest: var(--salt-color-ocean-100);
|
|
57
|
+
|
|
58
|
+
--salt-palette-categorical-15: var(--salt-color-smoke-500);
|
|
59
|
+
--salt-palette-categorical-15-strong: var(--salt-color-smoke-600);
|
|
60
|
+
--salt-palette-categorical-15-weakest: var(--salt-color-smoke-100);
|
|
61
|
+
|
|
62
|
+
--salt-palette-categorical-16: var(--salt-color-fuchsia-500);
|
|
63
|
+
--salt-palette-categorical-16-strong: var(--salt-color-fuchsia-600);
|
|
64
|
+
--salt-palette-categorical-16-weakest: var(--salt-color-fuchsia-100);
|
|
65
|
+
|
|
66
|
+
--salt-palette-categorical-17: var(--salt-color-lime-500);
|
|
67
|
+
--salt-palette-categorical-17-strong: var(--salt-color-lime-600);
|
|
68
|
+
--salt-palette-categorical-17-weakest: var(--salt-color-lime-100);
|
|
69
|
+
|
|
70
|
+
--salt-palette-categorical-18: var(--salt-color-fur-500);
|
|
71
|
+
--salt-palette-categorical-18-strong: var(--salt-color-fur-600);
|
|
72
|
+
--salt-palette-categorical-18-weakest: var(--salt-color-fur-100);
|
|
73
|
+
|
|
74
|
+
--salt-palette-categorical-19: var(--salt-color-violet-500);
|
|
75
|
+
--salt-palette-categorical-19-strong: var(--salt-color-violet-600);
|
|
76
|
+
--salt-palette-categorical-19-weakest: var(--salt-color-violet-100);
|
|
77
|
+
|
|
78
|
+
--salt-palette-categorical-20: var(--salt-color-forest-500);
|
|
79
|
+
--salt-palette-categorical-20-strong: var(--salt-color-forest-600);
|
|
80
|
+
--salt-palette-categorical-20-weakest: var(--salt-color-forest-100);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.salt-theme[data-mode="dark"] {
|
|
84
|
+
--salt-palette-categorical-1: var(--salt-color-cobalt-500);
|
|
85
|
+
--salt-palette-categorical-1-strong: var(--salt-color-cobalt-400);
|
|
86
|
+
--salt-palette-categorical-1-weakest: var(--salt-color-cobalt-900);
|
|
87
|
+
|
|
88
|
+
--salt-palette-categorical-2: var(--salt-color-cider-500);
|
|
89
|
+
--salt-palette-categorical-2-strong: var(--salt-color-cider-400);
|
|
90
|
+
--salt-palette-categorical-2-weakest: var(--salt-color-cider-900);
|
|
91
|
+
|
|
92
|
+
--salt-palette-categorical-3: var(--salt-color-plum-500);
|
|
93
|
+
--salt-palette-categorical-3-strong: var(--salt-color-plum-400);
|
|
94
|
+
--salt-palette-categorical-3-weakest: var(--salt-color-plum-900);
|
|
95
|
+
|
|
96
|
+
--salt-palette-categorical-4: var(--salt-color-aqua-500);
|
|
97
|
+
--salt-palette-categorical-4-strong: var(--salt-color-aqua-400);
|
|
98
|
+
--salt-palette-categorical-4-weakest: var(--salt-color-aqua-900);
|
|
99
|
+
|
|
100
|
+
--salt-palette-categorical-5: var(--salt-color-slate-500);
|
|
101
|
+
--salt-palette-categorical-5-strong: var(--salt-color-slate-400);
|
|
102
|
+
--salt-palette-categorical-5-weakest: var(--salt-color-slate-900);
|
|
103
|
+
|
|
104
|
+
--salt-palette-categorical-6: var(--salt-color-rose-500);
|
|
105
|
+
--salt-palette-categorical-6-strong: var(--salt-color-rose-400);
|
|
106
|
+
--salt-palette-categorical-6-weakest: var(--salt-color-rose-900);
|
|
107
|
+
|
|
108
|
+
--salt-palette-categorical-7: var(--salt-color-olive-500);
|
|
109
|
+
--salt-palette-categorical-7-strong: var(--salt-color-olive-400);
|
|
110
|
+
--salt-palette-categorical-7-weakest: var(--salt-color-olive-900);
|
|
111
|
+
|
|
112
|
+
--salt-palette-categorical-8: var(--salt-color-salmon-500);
|
|
113
|
+
--salt-palette-categorical-8-strong: var(--salt-color-salmon-400);
|
|
114
|
+
--salt-palette-categorical-8-weakest: var(--salt-color-salmon-900);
|
|
115
|
+
|
|
116
|
+
--salt-palette-categorical-9: var(--salt-color-indigo-500);
|
|
117
|
+
--salt-palette-categorical-9-strong: var(--salt-color-indigo-400);
|
|
118
|
+
--salt-palette-categorical-9-weakest: var(--salt-color-indigo-900);
|
|
119
|
+
|
|
120
|
+
--salt-palette-categorical-10: var(--salt-color-jade-500);
|
|
121
|
+
--salt-palette-categorical-10-strong: var(--salt-color-jade-400);
|
|
122
|
+
--salt-palette-categorical-10-weakest: var(--salt-color-jade-900);
|
|
123
|
+
|
|
124
|
+
--salt-palette-categorical-11: var(--salt-color-citrine-500);
|
|
125
|
+
--salt-palette-categorical-11-strong: var(--salt-color-citrine-400);
|
|
126
|
+
--salt-palette-categorical-11-weakest: var(--salt-color-citrine-900);
|
|
127
|
+
|
|
128
|
+
--salt-palette-categorical-12: var(--salt-color-autumn-500);
|
|
129
|
+
--salt-palette-categorical-12-strong: var(--salt-color-autumn-400);
|
|
130
|
+
--salt-palette-categorical-12-weakest: var(--salt-color-autumn-900);
|
|
131
|
+
|
|
132
|
+
--salt-palette-categorical-13: var(--salt-color-lavender-500);
|
|
133
|
+
--salt-palette-categorical-13-strong: var(--salt-color-lavender-400);
|
|
134
|
+
--salt-palette-categorical-13-weakest: var(--salt-color-lavender-900);
|
|
135
|
+
|
|
136
|
+
--salt-palette-categorical-14: var(--salt-color-ocean-500);
|
|
137
|
+
--salt-palette-categorical-14-strong: var(--salt-color-ocean-400);
|
|
138
|
+
--salt-palette-categorical-14-weakest: var(--salt-color-ocean-900);
|
|
139
|
+
|
|
140
|
+
--salt-palette-categorical-15: var(--salt-color-smoke-500);
|
|
141
|
+
--salt-palette-categorical-15-strong: var(--salt-color-smoke-400);
|
|
142
|
+
--salt-palette-categorical-15-weakest: var(--salt-color-smoke-900);
|
|
143
|
+
|
|
144
|
+
--salt-palette-categorical-16: var(--salt-color-fuchsia-500);
|
|
145
|
+
--salt-palette-categorical-16-strong: var(--salt-color-fuchsia-400);
|
|
146
|
+
--salt-palette-categorical-16-weakest: var(--salt-color-fuchsia-900);
|
|
147
|
+
|
|
148
|
+
--salt-palette-categorical-17: var(--salt-color-lime-500);
|
|
149
|
+
--salt-palette-categorical-17-strong: var(--salt-color-lime-400);
|
|
150
|
+
--salt-palette-categorical-17-weakest: var(--salt-color-lime-900);
|
|
151
|
+
|
|
152
|
+
--salt-palette-categorical-18: var(--salt-color-fur-500);
|
|
153
|
+
--salt-palette-categorical-18-strong: var(--salt-color-fur-400);
|
|
154
|
+
--salt-palette-categorical-18-weakest: var(--salt-color-fur-900);
|
|
155
|
+
|
|
156
|
+
--salt-palette-categorical-19: var(--salt-color-violet-500);
|
|
157
|
+
--salt-palette-categorical-19-strong: var(--salt-color-violet-400);
|
|
158
|
+
--salt-palette-categorical-19-weakest: var(--salt-color-violet-900);
|
|
159
|
+
|
|
160
|
+
--salt-palette-categorical-20: var(--salt-color-forest-500);
|
|
161
|
+
--salt-palette-categorical-20-strong: var(--salt-color-forest-400);
|
|
162
|
+
--salt-palette-categorical-20-weakest: var(--salt-color-forest-900);
|
|
163
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
.salt-theme-next[data-corner="rounded"] {
|
|
2
|
+
--salt-palette-corner-weaker: var(--salt-curve-50);
|
|
3
|
+
--salt-palette-corner-weak: var(--salt-curve-100);
|
|
4
|
+
--salt-palette-corner: var(--salt-curve-150);
|
|
5
|
+
--salt-palette-corner-strongest: var(--salt-curve-999);
|
|
6
|
+
}
|
|
7
|
+
.salt-theme-next[data-corner="sharp"] {
|
|
8
|
+
--salt-palette-corner-weaker: var(--salt-curve-0);
|
|
9
|
+
--salt-palette-corner-weak: var(--salt-curve-0);
|
|
10
|
+
--salt-palette-corner: var(--salt-curve-0);
|
|
11
|
+
--salt-palette-corner-strongest: var(--salt-curve-999);
|
|
12
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.salt-theme[data-mode="light"] {
|
|
2
|
+
--salt-palette-error-background: var(--salt-color-red-10);
|
|
3
|
+
--salt-palette-error-bold-background: var(--salt-color-red-500);
|
|
4
|
+
--salt-palette-error-background-selected: var(--salt-color-red-20);
|
|
5
|
+
--salt-palette-error-border: var(--salt-color-red-500);
|
|
6
|
+
--salt-palette-error-foreground-decorative: var(--salt-color-red-500);
|
|
7
|
+
--salt-palette-error-foreground-informative: var(--salt-color-red-600);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.salt-theme[data-mode="dark"] {
|
|
11
|
+
--salt-palette-error-background: var(--salt-color-red-900);
|
|
12
|
+
--salt-palette-error-bold-background: var(--salt-color-red-500);
|
|
13
|
+
--salt-palette-error-background-selected: var(--salt-color-red-900);
|
|
14
|
+
--salt-palette-error-border: var(--salt-color-red-400);
|
|
15
|
+
--salt-palette-error-foreground-decorative: var(--salt-color-red-400);
|
|
16
|
+
--salt-palette-error-foreground-informative: var(--salt-color-red-200);
|
|
17
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
.salt-theme.salt-theme-next[data-mode="light"] {
|
|
2
|
+
--salt-palette-foreground-active: var(--salt-color-blue-700);
|
|
3
|
+
--salt-palette-foreground-hover: var(--salt-color-blue-600);
|
|
4
|
+
--salt-palette-foreground-primary: var(--salt-color-black);
|
|
5
|
+
--salt-palette-foreground-primary-disabled: var(--salt-color-black-40a);
|
|
6
|
+
--salt-palette-foreground-primary-alt: var(--salt-color-white);
|
|
7
|
+
--salt-palette-foreground-primary-alt-disabled: var(--salt-color-white-40a);
|
|
8
|
+
--salt-palette-foreground-secondary: var(--salt-color-gray-600);
|
|
9
|
+
--salt-palette-foreground-secondary-disabled: var(--salt-color-gray-600-40a);
|
|
10
|
+
--salt-palette-foreground-visited: var(--salt-color-purple-800);
|
|
11
|
+
}
|
|
12
|
+
.salt-theme.salt-theme-next[data-mode="dark"] {
|
|
13
|
+
--salt-palette-foreground-active: var(--salt-color-blue-300);
|
|
14
|
+
--salt-palette-foreground-hover: var(--salt-color-blue-400);
|
|
15
|
+
--salt-palette-foreground-primary: var(--salt-color-white);
|
|
16
|
+
--salt-palette-foreground-primary-disabled: var(--salt-color-white-40a);
|
|
17
|
+
--salt-palette-foreground-primary-alt: var(--salt-color-white);
|
|
18
|
+
--salt-palette-foreground-primary-alt-disabled: var(--salt-color-white-40a);
|
|
19
|
+
--salt-palette-foreground-secondary: var(--salt-color-gray-400);
|
|
20
|
+
--salt-palette-foreground-secondary-disabled: var(--salt-color-gray-400-40a);
|
|
21
|
+
--salt-palette-foreground-visited: var(--salt-color-purple-200);
|
|
22
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
.salt-theme.salt-theme-next[data-mode="light"] {
|
|
2
|
+
--salt-palette-info: var(--salt-color-blue-500);
|
|
3
|
+
--salt-palette-info-strong: var(--salt-color-blue-600);
|
|
4
|
+
--salt-palette-info-weak: var(--salt-color-blue-100);
|
|
5
|
+
}
|
|
6
|
+
.salt-theme.salt-theme-next[data-mode="dark"] {
|
|
7
|
+
--salt-palette-info: var(--salt-color-blue-500);
|
|
8
|
+
--salt-palette-info-strong: var(--salt-color-blue-400);
|
|
9
|
+
--salt-palette-info-weak: var(--salt-color-blue-900);
|
|
10
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
.salt-theme[data-mode="light"] {
|
|
2
|
+
--salt-palette-info-background: var(--salt-color-blue-10);
|
|
3
|
+
--salt-palette-info-bold-background: var(--salt-color-blue-500);
|
|
4
|
+
--salt-palette-info-border: var(--salt-color-blue-500);
|
|
5
|
+
--salt-palette-info-foreground-decorative: var(--salt-color-blue-500);
|
|
6
|
+
--salt-palette-info-foreground-informative: var(--salt-color-blue-600);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.salt-theme[data-mode="dark"] {
|
|
10
|
+
--salt-palette-info-background: var(--salt-color-blue-900);
|
|
11
|
+
--salt-palette-info-bold-background: var(--salt-color-blue-500);
|
|
12
|
+
--salt-palette-info-border: var(--salt-color-blue-400);
|
|
13
|
+
--salt-palette-info-foreground-decorative: var(--salt-color-blue-400);
|
|
14
|
+
--salt-palette-info-foreground-informative: var(--salt-color-blue-200);
|
|
15
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
.salt-theme[data-mode="light"] {
|
|
2
|
+
--salt-palette-interact-background: transparent;
|
|
3
|
+
--salt-palette-interact-background-blurSelected: var(--salt-color-gray-30);
|
|
4
|
+
--salt-palette-interact-background-hover: var(--salt-color-blue-10);
|
|
5
|
+
--salt-palette-interact-background-active: var(--salt-color-blue-30);
|
|
6
|
+
--salt-palette-interact-background-disabled: transparent;
|
|
7
|
+
--salt-palette-interact-background-activeDisabled: var(--salt-color-blue-30-fade-background);
|
|
8
|
+
--salt-palette-interact-border: var(--salt-color-gray-200);
|
|
9
|
+
--salt-palette-interact-border-active: var(--salt-color-blue-600);
|
|
10
|
+
--salt-palette-interact-border-activeDisabled: var(--salt-color-blue-600-fade-fill);
|
|
11
|
+
--salt-palette-interact-border-disabled: var(--salt-color-gray-200-fade-border);
|
|
12
|
+
--salt-palette-interact-border-hover: var(--salt-color-blue-500);
|
|
13
|
+
--salt-palette-interact-border-readonly: var(--salt-color-gray-200-fade-border-readonly);
|
|
14
|
+
--salt-palette-interact-foreground: var(--salt-color-gray-200);
|
|
15
|
+
--salt-palette-interact-foreground-active: var(--salt-color-blue-600);
|
|
16
|
+
--salt-palette-interact-foreground-activeDisabled: var(--salt-color-blue-600-fade-foreground);
|
|
17
|
+
--salt-palette-interact-foreground-disabled: var(--salt-color-gray-200-fade-foreground);
|
|
18
|
+
--salt-palette-interact-foreground-hover: var(--salt-color-blue-500);
|
|
19
|
+
--salt-palette-interact-outline: var(--salt-color-blue-600);
|
|
20
|
+
|
|
21
|
+
--salt-palette-interact-cta-background: var(--salt-color-blue-600);
|
|
22
|
+
--salt-palette-interact-cta-background-active: var(--salt-color-blue-700);
|
|
23
|
+
--salt-palette-interact-cta-background-disabled: var(--salt-color-blue-600-fade-background);
|
|
24
|
+
--salt-palette-interact-cta-background-hover: var(--salt-color-blue-500);
|
|
25
|
+
--salt-palette-interact-cta-foreground: var(--salt-color-white);
|
|
26
|
+
--salt-palette-interact-cta-foreground-active: var(--salt-color-white);
|
|
27
|
+
--salt-palette-interact-cta-foreground-disabled: var(--salt-color-white-fade-foreground);
|
|
28
|
+
--salt-palette-interact-cta-foreground-hover: var(--salt-color-white);
|
|
29
|
+
--salt-palette-interact-primary-background: var(--salt-color-gray-60);
|
|
30
|
+
--salt-palette-interact-primary-background-active: var(--salt-color-gray-200);
|
|
31
|
+
--salt-palette-interact-primary-background-disabled: var(--salt-color-gray-60-fade-background);
|
|
32
|
+
--salt-palette-interact-primary-background-hover: var(--salt-color-gray-40);
|
|
33
|
+
--salt-palette-interact-primary-foreground: var(--salt-color-gray-900);
|
|
34
|
+
--salt-palette-interact-primary-foreground-active: var(--salt-color-white);
|
|
35
|
+
--salt-palette-interact-primary-foreground-disabled: var(--salt-color-gray-900-fade-foreground);
|
|
36
|
+
--salt-palette-interact-primary-foreground-hover: var(--salt-color-gray-900);
|
|
37
|
+
--salt-palette-interact-secondary-background: transparent;
|
|
38
|
+
--salt-palette-interact-secondary-background-active: var(--salt-color-gray-200);
|
|
39
|
+
--salt-palette-interact-secondary-background-disabled: transparent;
|
|
40
|
+
--salt-palette-interact-secondary-background-hover: var(--salt-color-gray-40);
|
|
41
|
+
--salt-palette-interact-secondary-foreground: var(--salt-color-gray-900);
|
|
42
|
+
--salt-palette-interact-secondary-foreground-active: var(--salt-color-white);
|
|
43
|
+
--salt-palette-interact-secondary-foreground-disabled: var(--salt-color-gray-900-fade-foreground);
|
|
44
|
+
--salt-palette-interact-secondary-foreground-hover: var(--salt-color-gray-900);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.salt-theme[data-mode="dark"] {
|
|
48
|
+
--salt-palette-interact-background: transparent;
|
|
49
|
+
--salt-palette-interact-background-active: var(--salt-color-blue-700);
|
|
50
|
+
--salt-palette-interact-background-blurSelected: var(--salt-color-gray-600);
|
|
51
|
+
--salt-palette-interact-background-hover: var(--salt-color-blue-800);
|
|
52
|
+
--salt-palette-interact-background-disabled: transparent;
|
|
53
|
+
--salt-palette-interact-background-activeDisabled: var(--salt-color-blue-700-fade-background);
|
|
54
|
+
--salt-palette-interact-border: var(--salt-color-gray-90);
|
|
55
|
+
--salt-palette-interact-border-active: var(--salt-color-blue-100);
|
|
56
|
+
--salt-palette-interact-border-activeDisabled: var(--salt-color-blue-100-fade-fill);
|
|
57
|
+
--salt-palette-interact-border-disabled: var(--salt-color-gray-90-fade-border);
|
|
58
|
+
--salt-palette-interact-border-hover: var(--salt-color-blue-500);
|
|
59
|
+
--salt-palette-interact-border-readonly: var(--salt-color-gray-90-fade-border-readonly);
|
|
60
|
+
--salt-palette-interact-foreground: var(--salt-color-gray-90);
|
|
61
|
+
--salt-palette-interact-foreground-active: var(--salt-color-blue-100);
|
|
62
|
+
--salt-palette-interact-foreground-activeDisabled: var(--salt-color-blue-100-fade-foreground);
|
|
63
|
+
--salt-palette-interact-foreground-disabled: var(--salt-color-gray-90-fade-foreground);
|
|
64
|
+
--salt-palette-interact-foreground-hover: var(--salt-color-blue-500);
|
|
65
|
+
--salt-palette-interact-outline: var(--salt-color-blue-100);
|
|
66
|
+
|
|
67
|
+
--salt-palette-interact-cta-background: var(--salt-color-blue-600);
|
|
68
|
+
--salt-palette-interact-cta-background-active: var(--salt-color-blue-700);
|
|
69
|
+
--salt-palette-interact-cta-background-disabled: var(--salt-color-blue-600-fade-background);
|
|
70
|
+
--salt-palette-interact-cta-background-hover: var(--salt-color-blue-500);
|
|
71
|
+
--salt-palette-interact-cta-foreground: var(--salt-color-white);
|
|
72
|
+
--salt-palette-interact-cta-foreground-active: var(--salt-color-white);
|
|
73
|
+
--salt-palette-interact-cta-foreground-disabled: var(--salt-color-white-fade-foreground);
|
|
74
|
+
--salt-palette-interact-cta-foreground-hover: var(--salt-color-white);
|
|
75
|
+
--salt-palette-interact-primary-background: var(--salt-color-gray-300);
|
|
76
|
+
--salt-palette-interact-primary-background-active: var(--salt-color-gray-70);
|
|
77
|
+
--salt-palette-interact-primary-background-disabled: var(--salt-color-gray-300-fade-background);
|
|
78
|
+
--salt-palette-interact-primary-background-hover: var(--salt-color-gray-200);
|
|
79
|
+
--salt-palette-interact-primary-foreground: var(--salt-color-white);
|
|
80
|
+
--salt-palette-interact-primary-foreground-active: var(--salt-color-gray-900);
|
|
81
|
+
--salt-palette-interact-primary-foreground-disabled: var(--salt-color-white-fade-foreground);
|
|
82
|
+
--salt-palette-interact-primary-foreground-hover: var(--salt-color-white);
|
|
83
|
+
--salt-palette-interact-secondary-background: transparent;
|
|
84
|
+
--salt-palette-interact-secondary-background-active: var(--salt-color-gray-70);
|
|
85
|
+
--salt-palette-interact-secondary-background-disabled: transparent;
|
|
86
|
+
--salt-palette-interact-secondary-background-hover: var(--salt-color-gray-200);
|
|
87
|
+
--salt-palette-interact-secondary-foreground: var(--salt-color-white);
|
|
88
|
+
--salt-palette-interact-secondary-foreground-active: var(--salt-color-gray-900);
|
|
89
|
+
--salt-palette-interact-secondary-foreground-disabled: var(--salt-color-white-fade-foreground);
|
|
90
|
+
--salt-palette-interact-secondary-foreground-hover: var(--salt-color-white);
|
|
91
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.salt-theme[data-mode="light"] {
|
|
2
|
+
--salt-palette-navigate-background-hover: var(--salt-color-black-fade-background-hover);
|
|
3
|
+
--salt-palette-navigate-foreground-hover: var(--salt-color-blue-600);
|
|
4
|
+
--salt-palette-navigate-foreground-active: var(--salt-color-blue-700);
|
|
5
|
+
--salt-palette-navigate-foreground-visited: var(--salt-color-purple-800);
|
|
6
|
+
--salt-palette-navigate-indicator-hover: var(--salt-color-gray-90);
|
|
7
|
+
--salt-palette-navigate-indicator-active: var(--salt-color-orange-600);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.salt-theme[data-mode="dark"] {
|
|
11
|
+
--salt-palette-navigate-background-hover: var(--salt-color-white-fade-background-hover);
|
|
12
|
+
--salt-palette-navigate-foreground-hover: var(--salt-color-blue-200);
|
|
13
|
+
--salt-palette-navigate-foreground-active: var(--salt-color-blue-300);
|
|
14
|
+
--salt-palette-navigate-foreground-visited: var(--salt-color-purple-100);
|
|
15
|
+
--salt-palette-navigate-indicator-hover: var(--salt-color-gray-90);
|
|
16
|
+
--salt-palette-navigate-indicator-active: var(--salt-color-orange-400);
|
|
17
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
.salt-theme.salt-theme-next[data-mode="light"] {
|
|
2
|
+
--salt-palette-negative: var(--salt-color-red-500);
|
|
3
|
+
--salt-palette-negative-strong: var(--salt-color-red-600);
|
|
4
|
+
--salt-palette-negative-weak: var(--salt-color-red-100);
|
|
5
|
+
}
|
|
6
|
+
.salt-theme.salt-theme-next[data-mode="dark"] {
|
|
7
|
+
--salt-palette-negative: var(--salt-color-red-500);
|
|
8
|
+
--salt-palette-negative-strong: var(--salt-color-red-400);
|
|
9
|
+
--salt-palette-negative-weak: var(--salt-color-red-900);
|
|
10
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
.salt-theme.salt-theme-next[data-mode="light"] {
|
|
2
|
+
--salt-palette-neutral: var(--salt-color-gray-500);
|
|
3
|
+
--salt-palette-neutral-disabled: var(--salt-color-gray-500-40a);
|
|
4
|
+
--salt-palette-neutral-readonly: var(--salt-color-gray-500-10a);
|
|
5
|
+
--salt-palette-neutral-strong: var(--salt-color-gray-600);
|
|
6
|
+
--salt-palette-neutral-strong-disabled: var(--salt-color-gray-600-40a);
|
|
7
|
+
--salt-palette-neutral-stronger: var(--salt-color-gray-700);
|
|
8
|
+
--salt-palette-neutral-strongest: var(--salt-color-gray-800);
|
|
9
|
+
--salt-palette-neutral-weak: var(--salt-color-gray-400);
|
|
10
|
+
--salt-palette-neutral-weak-disabled: var(--salt-color-gray-400-40a);
|
|
11
|
+
--salt-palette-neutral-weaker: var(--salt-color-gray-300);
|
|
12
|
+
--salt-palette-neutral-weaker-disabled: var(--salt-color-gray-300-40a);
|
|
13
|
+
--salt-palette-neutral-weaker-readonly: var(--salt-color-gray-300-10a);
|
|
14
|
+
--salt-palette-neutral-weakest: var(--salt-color-gray-200);
|
|
15
|
+
--salt-palette-neutral-action-hover: var(--salt-color-gray-600);
|
|
16
|
+
--salt-palette-neutral-action-active: var(--salt-color-gray-800);
|
|
17
|
+
}
|
|
18
|
+
.salt-theme.salt-theme-next[data-mode="dark"] {
|
|
19
|
+
--salt-palette-neutral: var(--salt-color-gray-500);
|
|
20
|
+
--salt-palette-neutral-disabled: var(--salt-color-gray-500-40a);
|
|
21
|
+
--salt-palette-neutral-readonly: var(--salt-color-gray-500-10a);
|
|
22
|
+
--salt-palette-neutral-strong: var(--salt-color-gray-400);
|
|
23
|
+
--salt-palette-neutral-strong-disabled: var(--salt-color-gray-400-40a);
|
|
24
|
+
--salt-palette-neutral-stronger: var(--salt-color-gray-300);
|
|
25
|
+
--salt-palette-neutral-strongest: var(--salt-color-gray-200);
|
|
26
|
+
--salt-palette-neutral-weak: var(--salt-color-gray-600);
|
|
27
|
+
--salt-palette-neutral-weak-disabled: var(--salt-color-gray-600-40a);
|
|
28
|
+
--salt-palette-neutral-weaker: var(--salt-color-gray-700);
|
|
29
|
+
--salt-palette-neutral-weaker-disabled: var(--salt-color-gray-700-40a);
|
|
30
|
+
--salt-palette-neutral-weaker-readonly: var(--salt-color-gray-700-10a);
|
|
31
|
+
--salt-palette-neutral-weakest: var(--salt-color-gray-800);
|
|
32
|
+
--salt-palette-neutral-action-hover: var(--salt-color-gray-600);
|
|
33
|
+
--salt-palette-neutral-action-active: var(--salt-color-gray-800);
|
|
34
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
.salt-theme[data-mode="light"] {
|
|
2
|
+
--salt-palette-neutral-primary-background: var(--salt-color-white);
|
|
3
|
+
--salt-palette-neutral-primary-background-disabled: var(--salt-color-white-fade-background);
|
|
4
|
+
--salt-palette-neutral-primary-background-readonly: var(--salt-color-white-fade-background-readonly);
|
|
5
|
+
--salt-palette-neutral-primary-foreground: var(--salt-color-gray-900);
|
|
6
|
+
--salt-palette-neutral-primary-foreground-disabled: var(--salt-color-gray-900-fade-foreground);
|
|
7
|
+
--salt-palette-neutral-primary-separator: var(--salt-color-black-fade-separatorOpacity-primary);
|
|
8
|
+
--salt-palette-neutral-primary-border: var(--salt-color-gray-50);
|
|
9
|
+
--salt-palette-neutral-primary-border-disabled: var(--salt-color-gray-50-fade-border);
|
|
10
|
+
--salt-palette-neutral-secondary-background: var(--salt-color-gray-20);
|
|
11
|
+
--salt-palette-neutral-secondary-background-disabled: var(--salt-color-gray-20-fade-background);
|
|
12
|
+
--salt-palette-neutral-secondary-background-readonly: var(--salt-color-gray-20-fade-background-readonly);
|
|
13
|
+
--salt-palette-neutral-secondary-border: var(--salt-color-gray-50);
|
|
14
|
+
--salt-palette-neutral-secondary-border-disabled: var(--salt-color-gray-50-fade-border);
|
|
15
|
+
--salt-palette-neutral-secondary-foreground: var(--salt-color-gray-200);
|
|
16
|
+
--salt-palette-neutral-secondary-foreground-disabled: var(--salt-color-gray-200-fade-foreground);
|
|
17
|
+
--salt-palette-neutral-backdrop: var(--salt-color-white-fade-backdrop);
|
|
18
|
+
--salt-palette-neutral-secondary-separator: var(--salt-color-black-fade-separatorOpacity-secondary);
|
|
19
|
+
--salt-palette-neutral-tertiary-separator: var(--salt-color-black-fade-separatorOpacity-tertiary);
|
|
20
|
+
--salt-palette-neutral-selection: var(--salt-color-black-fade-background-selection);
|
|
21
|
+
--salt-palette-neutral-tertiary-background: var(--salt-color-gray-30);
|
|
22
|
+
--salt-palette-neutral-tertiary-background-disabled: var(--salt-color-gray-30-fade-background);
|
|
23
|
+
--salt-palette-neutral-tertiary-border: var(--salt-color-gray-50);
|
|
24
|
+
--salt-palette-neutral-tertiary-border-disabled: var(--salt-color-gray-50-fade-background);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.salt-theme[data-mode="dark"] {
|
|
28
|
+
--salt-palette-neutral-primary-background: var(--salt-color-gray-800);
|
|
29
|
+
--salt-palette-neutral-primary-background-disabled: var(--salt-color-gray-800-fade-background);
|
|
30
|
+
--salt-palette-neutral-primary-background-readonly: var(--salt-color-gray-800-fade-background-readonly);
|
|
31
|
+
--salt-palette-neutral-primary-border: var(--salt-color-gray-300);
|
|
32
|
+
--salt-palette-neutral-primary-border-disabled: var(--salt-color-gray-300-fade-border);
|
|
33
|
+
--salt-palette-neutral-primary-foreground: var(--salt-color-white);
|
|
34
|
+
--salt-palette-neutral-primary-foreground-disabled: var(--salt-color-white-fade-foreground);
|
|
35
|
+
--salt-palette-neutral-primary-separator: var(--salt-color-white-fade-separatorOpacity-primary);
|
|
36
|
+
--salt-palette-neutral-secondary-background: var(--salt-color-gray-600);
|
|
37
|
+
--salt-palette-neutral-secondary-background-disabled: var(--salt-color-gray-600-fade-background);
|
|
38
|
+
--salt-palette-neutral-secondary-background-readonly: var(--salt-color-gray-600-fade-background-readonly);
|
|
39
|
+
--salt-palette-neutral-secondary-border: var(--salt-color-gray-300);
|
|
40
|
+
--salt-palette-neutral-secondary-border-disabled: var(--salt-color-gray-300-fade-border);
|
|
41
|
+
--salt-palette-neutral-secondary-foreground: var(--salt-color-gray-70);
|
|
42
|
+
--salt-palette-neutral-secondary-foreground-disabled: var(--salt-color-gray-70-fade-foreground);
|
|
43
|
+
--salt-palette-neutral-backdrop: var(--salt-color-black-fade-backdrop);
|
|
44
|
+
--salt-palette-neutral-secondary-separator: var(--salt-color-white-fade-separatorOpacity-secondary);
|
|
45
|
+
--salt-palette-neutral-tertiary-separator: var(--salt-color-white-fade-separatorOpacity-tertiary);
|
|
46
|
+
--salt-palette-neutral-selection: var(--salt-color-white-fade-background-selection);
|
|
47
|
+
--salt-palette-neutral-tertiary-background: var(--salt-color-gray-500);
|
|
48
|
+
--salt-palette-neutral-tertiary-background-disabled: var(--salt-color-gray-500-fade-background);
|
|
49
|
+
--salt-palette-neutral-tertiary-border: var(--salt-color-gray-300);
|
|
50
|
+
--salt-palette-neutral-tertiary-border-disabled: var(--salt-color-gray-300-fade-background);
|
|
51
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
.salt-theme {
|
|
2
|
+
--salt-palette-opacity-backdrop: var(--salt-opacity-70);
|
|
3
|
+
--salt-palette-opacity-disabled: var(--salt-opacity-40);
|
|
4
|
+
--salt-palette-opacity-background-readonly: var(--salt-opacity-0);
|
|
5
|
+
--salt-palette-opacity-border-readonly: var(--salt-opacity-15);
|
|
6
|
+
--salt-palette-opacity-primary-border: var(--salt-opacity-45);
|
|
7
|
+
--salt-palette-opacity-secondary-border: var(--salt-opacity-25);
|
|
8
|
+
--salt-palette-opacity-tertiary-border: var(--salt-opacity-15);
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
.salt-theme.salt-theme-next[data-mode="light"] {
|
|
2
|
+
--salt-palette-positive: var(--salt-color-green-500);
|
|
3
|
+
--salt-palette-positive-strong: var(--salt-color-green-600);
|
|
4
|
+
--salt-palette-positive-weak: var(--salt-color-green-100);
|
|
5
|
+
}
|
|
6
|
+
.salt-theme.salt-theme-next[data-mode="dark"] {
|
|
7
|
+
--salt-palette-positive: var(--salt-color-green-500);
|
|
8
|
+
--salt-palette-positive-strong: var(--salt-color-green-400);
|
|
9
|
+
--salt-palette-positive-weak: var(--salt-color-green-900);
|
|
10
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.salt-theme[data-mode="light"] {
|
|
2
|
+
--salt-palette-success-background: var(--salt-color-green-10);
|
|
3
|
+
--salt-palette-success-bold-background: var(--salt-color-green-500);
|
|
4
|
+
--salt-palette-success-background-selected: var(--salt-color-green-20);
|
|
5
|
+
--salt-palette-success-border: var(--salt-color-green-500);
|
|
6
|
+
--salt-palette-success-foreground-decorative: var(--salt-color-green-500);
|
|
7
|
+
--salt-palette-success-foreground-informative: var(--salt-color-green-600);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.salt-theme[data-mode="dark"] {
|
|
11
|
+
--salt-palette-success-background: var(--salt-color-green-900);
|
|
12
|
+
--salt-palette-success-bold-background: var(--salt-color-green-500);
|
|
13
|
+
--salt-palette-success-background-selected: var(--salt-color-green-900);
|
|
14
|
+
--salt-palette-success-border: var(--salt-color-green-400);
|
|
15
|
+
--salt-palette-success-foreground-decorative: var(--salt-color-green-400);
|
|
16
|
+
--salt-palette-success-foreground-informative: var(--salt-color-green-200);
|
|
17
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
.salt-theme-next.salt-theme[data-heading-font="Open Sans"] {
|
|
2
|
+
--salt-palette-text-fontFamily-heading: var(--salt-typography-fontFamily-openSans);
|
|
3
|
+
|
|
4
|
+
--salt-palette-text-display-fontWeight: var(--salt-typography-fontWeight-semiBold);
|
|
5
|
+
--salt-palette-text-display-fontWeight-small: var(--salt-typography-fontWeight-regular);
|
|
6
|
+
--salt-palette-text-display-fontWeight-strong: var(--salt-typography-fontWeight-bold);
|
|
7
|
+
|
|
8
|
+
--salt-palette-text-heading-fontWeight: var(--salt-typography-fontWeight-semiBold);
|
|
9
|
+
--salt-palette-text-heading-fontWeight-small: var(--salt-typography-fontWeight-regular);
|
|
10
|
+
--salt-palette-text-heading-fontWeight-strong: var(--salt-typography-fontWeight-bold);
|
|
11
|
+
|
|
12
|
+
--salt-palette-text-body-fontWeight: var(--salt-typography-fontWeight-regular);
|
|
13
|
+
--salt-palette-text-body-fontWeight-small: var(--salt-typography-fontWeight-light);
|
|
14
|
+
--salt-palette-text-body-fontWeight-strong: var(--salt-typography-fontWeight-semiBold);
|
|
15
|
+
|
|
16
|
+
--salt-palette-text-notation-fontWeight: var(--salt-typography-fontWeight-semiBold);
|
|
17
|
+
--salt-palette-text-notation-fontWeight-small: var(--salt-typography-fontWeight-regular);
|
|
18
|
+
--salt-palette-text-notation-fontWeight-strong: var(--salt-typography-fontWeight-bold);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.salt-theme-next.salt-theme[data-heading-font="Amplitude"] {
|
|
22
|
+
--salt-palette-text-fontFamily-heading: var(--salt-typography-fontFamily-amplitude);
|
|
23
|
+
|
|
24
|
+
--salt-palette-text-display-fontWeight: var(--salt-typography-fontWeight-medium);
|
|
25
|
+
--salt-palette-text-display-fontWeight-strong: var(--salt-typography-fontWeight-bold);
|
|
26
|
+
--salt-palette-text-display-fontWeight-small: var(--salt-typography-fontWeight-regular);
|
|
27
|
+
|
|
28
|
+
--salt-palette-text-heading-fontWeight: var(--salt-typography-fontWeight-medium);
|
|
29
|
+
--salt-palette-text-heading-fontWeight-small: var(--salt-typography-fontWeight-regular);
|
|
30
|
+
--salt-palette-text-heading-fontWeight-strong: var(--salt-typography-fontWeight-bold);
|
|
31
|
+
|
|
32
|
+
--salt-palette-text-body-fontWeight: var(--salt-typography-fontWeight-regular);
|
|
33
|
+
--salt-palette-text-body-fontWeight-small: var(--salt-typography-fontWeight-light);
|
|
34
|
+
--salt-palette-text-body-fontWeight-strong: var(--salt-typography-fontWeight-semiBold);
|
|
35
|
+
|
|
36
|
+
--salt-palette-text-notation-fontWeight: var(--salt-typography-fontWeight-semiBold);
|
|
37
|
+
--salt-palette-text-notation-fontWeight-small: var(--salt-typography-fontWeight-regular);
|
|
38
|
+
--salt-palette-text-notation-fontWeight-strong: var(--salt-typography-fontWeight-bold);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.salt-theme-next.salt-theme[data-action-font="Open Sans"] {
|
|
42
|
+
--salt-palette-text-fontFamily-action: var(--salt-typography-fontFamily-openSans);
|
|
43
|
+
|
|
44
|
+
--salt-palette-text-action-fontWeight: var(--salt-typography-fontWeight-semiBold);
|
|
45
|
+
}
|
|
46
|
+
.salt-theme-next.salt-theme[data-action-font="Amplitude"] {
|
|
47
|
+
--salt-palette-text-fontFamily-action: var(--salt-typography-fontFamily-amplitude);
|
|
48
|
+
|
|
49
|
+
--salt-palette-text-action-fontWeight: var(--salt-typography-fontWeight-medium);
|
|
50
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
.salt-theme {
|
|
2
|
+
--salt-palette-text-fontFamily: var(--salt-typography-fontFamily-openSans);
|
|
3
|
+
--salt-palette-text-fontFamily-heading: var(--salt-typography-fontFamily-openSans);
|
|
4
|
+
--salt-palette-text-fontFamily-code: var(--salt-typography-fontFamily-ptMono);
|
|
5
|
+
--salt-palette-text-fontFamily-action: var(--salt-typography-fontFamily-openSans);
|
|
6
|
+
|
|
7
|
+
--salt-palette-text-action-fontWeight: var(--salt-typography-fontWeight-semiBold);
|
|
8
|
+
|
|
9
|
+
--salt-palette-text-display-fontWeight: var(--salt-typography-fontWeight-semiBold);
|
|
10
|
+
--salt-palette-text-display-fontWeight-small: var(--salt-typography-fontWeight-regular);
|
|
11
|
+
--salt-palette-text-display-fontWeight-strong: var(--salt-typography-fontWeight-bold);
|
|
12
|
+
|
|
13
|
+
--salt-palette-text-heading-fontWeight: var(--salt-typography-fontWeight-semiBold);
|
|
14
|
+
--salt-palette-text-heading-fontWeight-small: var(--salt-typography-fontWeight-regular);
|
|
15
|
+
--salt-palette-text-heading-fontWeight-strong: var(--salt-typography-fontWeight-bold);
|
|
16
|
+
|
|
17
|
+
--salt-palette-text-body-fontWeight: var(--salt-typography-fontWeight-regular);
|
|
18
|
+
--salt-palette-text-body-fontWeight-small: var(--salt-typography-fontWeight-light);
|
|
19
|
+
--salt-palette-text-body-fontWeight-strong: var(--salt-typography-fontWeight-semiBold);
|
|
20
|
+
|
|
21
|
+
--salt-palette-text-notation-fontWeight: var(--salt-typography-fontWeight-semiBold);
|
|
22
|
+
--salt-palette-text-notation-fontWeight-small: var(--salt-typography-fontWeight-regular);
|
|
23
|
+
--salt-palette-text-notation-fontWeight-strong: var(--salt-typography-fontWeight-bold);
|
|
24
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
.salt-theme.salt-theme-next[data-mode="light"] {
|
|
2
|
+
--salt-palette-warning: var(--salt-color-orange-500);
|
|
3
|
+
--salt-palette-warning-strong: var(--salt-color-orange-600);
|
|
4
|
+
--salt-palette-warning-weak: var(--salt-color-orange-100);
|
|
5
|
+
}
|
|
6
|
+
.salt-theme.salt-theme-next[data-mode="dark"] {
|
|
7
|
+
--salt-palette-warning: var(--salt-color-orange-500);
|
|
8
|
+
--salt-palette-warning-strong: var(--salt-color-orange-400);
|
|
9
|
+
--salt-palette-warning-weak: var(--salt-color-orange-900);
|
|
10
|
+
}
|