@salt-ds/theme 0.0.0-snapshot-20250922202042 → 0.0.0-snapshot-20251006123628

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.
@@ -1,4 +1,386 @@
1
- /* css/foundations/alpha-next.css */
1
+ /* css/foundations/alpha.css */
2
+ .salt-theme {
3
+ --salt-color-white-5a: rgba(var(--salt-color-white-rgb), 0.05);
4
+ --salt-color-white-10a: rgba(var(--salt-color-white-rgb), 0.1);
5
+ --salt-color-white-15a: rgba(var(--salt-color-white-rgb), 0.15);
6
+ --salt-color-white-20a: rgba(var(--salt-color-white-rgb), 0.2);
7
+ --salt-color-white-30a: rgba(var(--salt-color-white-rgb), 0.3);
8
+ --salt-color-white-40a: rgba(var(--salt-color-white-rgb), 0.4);
9
+ --salt-color-white-50a: rgba(var(--salt-color-white-rgb), 0.5);
10
+ --salt-color-white-65a: rgba(var(--salt-color-white-rgb), 0.65);
11
+ --salt-color-white-80a: rgba(var(--salt-color-white-rgb), 0.8);
12
+ --salt-color-black-5a: rgba(var(--salt-color-black-rgb), 0.05);
13
+ --salt-color-black-10a: rgba(var(--salt-color-black-rgb), 0.1);
14
+ --salt-color-black-15a: rgba(var(--salt-color-black-rgb), 0.15);
15
+ --salt-color-black-20a: rgba(var(--salt-color-black-rgb), 0.2);
16
+ --salt-color-black-30a: rgba(var(--salt-color-black-rgb), 0.3);
17
+ --salt-color-black-40a: rgba(var(--salt-color-black-rgb), 0.4);
18
+ --salt-color-black-50a: rgba(var(--salt-color-black-rgb), 0.5);
19
+ --salt-color-black-65a: rgba(var(--salt-color-black-rgb), 0.65);
20
+ --salt-color-black-80a: rgba(var(--salt-color-black-rgb), 0.8);
21
+ }
22
+
23
+ /* css/foundations/animation.css */
24
+ .salt-density-touch,
25
+ .salt-density-low,
26
+ .salt-density-medium,
27
+ .salt-density-high {
28
+ --salt-animation-opacity-start: 0;
29
+ --salt-animation-opacity-end: 1;
30
+ --salt-animation-scale-start: 0;
31
+ --salt-animation-scale-end: 1;
32
+ --salt-animation-transform-start: 100%;
33
+ --salt-animation-transform-end: 0;
34
+ --salt-animation-duration: var(--salt-duration-perceptible);
35
+ --salt-animation-timing-function: ease-in-out;
36
+ --salt-animation-slide-in-top: slide-in-top var(--salt-animation-duration) var(--salt-animation-timing-function);
37
+ --salt-animation-slide-in-left: slide-in-left var(--salt-animation-duration) var(--salt-animation-timing-function);
38
+ --salt-animation-slide-in-right: slide-in-right var(--salt-animation-duration) var(--salt-animation-timing-function);
39
+ --salt-animation-slide-in-bottom: slide-in-bottom var(--salt-animation-duration) var(--salt-animation-timing-function);
40
+ --salt-animation-slide-out-top: slide-out-top var(--salt-animation-duration) var(--salt-animation-timing-function) both;
41
+ --salt-animation-slide-out-left: slide-out-left var(--salt-animation-duration) var(--salt-animation-timing-function) both;
42
+ --salt-animation-slide-out-right: slide-out-right var(--salt-animation-duration) var(--salt-animation-timing-function) both;
43
+ --salt-animation-slide-out-bottom: slide-out-bottom var(--salt-animation-duration) var(--salt-animation-timing-function) both;
44
+ --salt-animation-fade-in-back: fade-in-back var(--salt-animation-duration) var(--salt-animation-timing-function);
45
+ --salt-animation-fade-in-forward: fade-in-forward var(--salt-animation-duration) var(--salt-animation-timing-function);
46
+ --salt-animation-fade-in-center: fade-in-center var(--salt-animation-duration) var(--salt-animation-timing-function);
47
+ --salt-animation-fade-out-back: fade-out-back var(--salt-animation-duration) ease-in-out both;
48
+ }
49
+ @keyframes slide-in-top {
50
+ 0% {
51
+ opacity: var(--salt-animation-opacity-start);
52
+ transform: translateY(var(--salt-animation-transform-start));
53
+ }
54
+ 100% {
55
+ opacity: var(--salt-animation-opacity-end);
56
+ transform: translateY(var(--salt-animation-transform-end));
57
+ }
58
+ }
59
+ @keyframes slide-out-top {
60
+ 0% {
61
+ opacity: var(--salt-animation-opacity-end);
62
+ transform: translateY(var(--salt-animation-transform-end));
63
+ }
64
+ 100% {
65
+ opacity: var(--salt-animation-opacity-start);
66
+ transform: translateY(var(--salt-animation-transform-start));
67
+ }
68
+ }
69
+ @keyframes slide-in-left {
70
+ 0% {
71
+ opacity: var(--salt-animation-opacity-start);
72
+ transform: translateX(calc(-1 * var(--salt-animation-transform-start)));
73
+ }
74
+ 100% {
75
+ opacity: var(--salt-animation-opacity-end);
76
+ transform: translateX(var(--salt-animation-transform-end));
77
+ }
78
+ }
79
+ @keyframes slide-out-left {
80
+ 0% {
81
+ opacity: var(--salt-animation-opacity-end);
82
+ transform: translateX(var(--salt-animation-transform-end));
83
+ }
84
+ 100% {
85
+ opacity: var(--salt-animation-opacity-start);
86
+ transform: translateX(calc(-1 * var(--salt-animation-transform-start)));
87
+ }
88
+ }
89
+ @keyframes slide-in-right {
90
+ 0% {
91
+ opacity: var(--salt-animation-opacity-start);
92
+ transform: translateX(var(--salt-animation-transform-start));
93
+ }
94
+ 100% {
95
+ opacity: var(--salt-animation-opacity-end);
96
+ transform: translateX(var(--salt-animation-transform-end));
97
+ }
98
+ }
99
+ @keyframes slide-out-right {
100
+ 0% {
101
+ opacity: var(--salt-animation-opacity-end);
102
+ transform: translateX(var(--salt-animation-transform-end));
103
+ }
104
+ 100% {
105
+ opacity: var(--salt-animation-opacity-start);
106
+ transform: translateX(var(--salt-animation-transform-start));
107
+ }
108
+ }
109
+ @keyframes slide-in-bottom {
110
+ 0% {
111
+ opacity: var(--salt-animation-opacity-start);
112
+ transform: translateY(calc(-1 * var(--salt-animation-transform-start)));
113
+ }
114
+ 100% {
115
+ opacity: var(--salt-animation-opacity-end);
116
+ transform: translateY(var(--salt-animation-transform-end));
117
+ }
118
+ }
119
+ @keyframes slide-out-bottom {
120
+ 0% {
121
+ opacity: var(--salt-animation-opacity-end);
122
+ transform: translateY(var(--salt-animation-transform-end));
123
+ }
124
+ 100% {
125
+ opacity: var(--salt-animation-opacity-start);
126
+ transform: translateY(calc(-1 * var(--salt-animation-transform-start)));
127
+ }
128
+ }
129
+ @keyframes fade-in-back {
130
+ 0% {
131
+ --salt-animation-scale-start: 1.4;
132
+ opacity: var(--salt-animation-opacity-start);
133
+ transform: scale(var(--salt-animation-scale-start));
134
+ }
135
+ 100% {
136
+ opacity: var(--salt-animation-opacity-end);
137
+ transform: scale(var(--salt-animation-scale-end));
138
+ }
139
+ }
140
+ @keyframes fade-in-forward {
141
+ 0% {
142
+ --salt-animation-scale-start: 0.6;
143
+ opacity: var(--salt-animation-opacity-start);
144
+ transform: scale(var(--salt-animation-scale-start));
145
+ }
146
+ 100% {
147
+ opacity: var(--salt-animation-opacity-end);
148
+ transform: scale(var(--salt-animation-scale-end));
149
+ }
150
+ }
151
+ @keyframes fade-in-center {
152
+ 0% {
153
+ opacity: var(--salt-animation-opacity-start);
154
+ }
155
+ 100% {
156
+ opacity: var(--salt-animation-opacity-end);
157
+ }
158
+ }
159
+ @keyframes fade-out-back {
160
+ 0% {
161
+ opacity: var(--salt-animation-opacity-end);
162
+ }
163
+ 100% {
164
+ opacity: var(--salt-animation-opacity-start);
165
+ }
166
+ }
167
+
168
+ /* css/foundations/borderStyle.css */
169
+ .salt-theme {
170
+ --salt-borderStyle-solid: solid;
171
+ --salt-borderStyle-dashed: dashed;
172
+ --salt-borderStyle-dotted: dotted;
173
+ }
174
+
175
+ /* css/foundations/color.css */
176
+ .salt-theme {
177
+ --salt-color-black-rgb:
178
+ 0,
179
+ 0,
180
+ 0;
181
+ --salt-color-white-rgb:
182
+ 255,
183
+ 255,
184
+ 255;
185
+ --salt-color-black: rgb(var(--salt-color-black-rgb));
186
+ --salt-color-white: rgb(var(--salt-color-white-rgb));
187
+ }
188
+
189
+ /* css/foundations/cursor.css */
190
+ .salt-theme {
191
+ --salt-cursor-active: pointer;
192
+ --salt-cursor-disabled: not-allowed;
193
+ --salt-cursor-drag-ew: ew-resize;
194
+ --salt-cursor-drag-ns: ns-resize;
195
+ --salt-cursor-grab: grab;
196
+ --salt-cursor-grab-active: grabbing;
197
+ --salt-cursor-hover: pointer;
198
+ --salt-cursor-pending: progress;
199
+ --salt-cursor-readonly: text;
200
+ --salt-cursor-text: text;
201
+ }
202
+
203
+ /* css/foundations/curve.css */
204
+ .salt-density-high {
205
+ --salt-curve-0: 0;
206
+ --salt-curve-50: 1px;
207
+ --salt-curve-100: 2px;
208
+ --salt-curve-150: 3px;
209
+ --salt-curve-200: 4px;
210
+ --salt-curve-250: 5px;
211
+ --salt-curve-999: 999px;
212
+ }
213
+ .salt-density-medium {
214
+ --salt-curve-0: 0;
215
+ --salt-curve-50: 2px;
216
+ --salt-curve-100: 4px;
217
+ --salt-curve-150: 6px;
218
+ --salt-curve-200: 8px;
219
+ --salt-curve-250: 10px;
220
+ --salt-curve-999: 999px;
221
+ }
222
+ .salt-density-low {
223
+ --salt-curve-0: 0;
224
+ --salt-curve-50: 3px;
225
+ --salt-curve-100: 6px;
226
+ --salt-curve-150: 9px;
227
+ --salt-curve-200: 12px;
228
+ --salt-curve-250: 15px;
229
+ --salt-curve-999: 999px;
230
+ }
231
+ .salt-density-touch {
232
+ --salt-curve-0: 0;
233
+ --salt-curve-50: 4px;
234
+ --salt-curve-100: 8px;
235
+ --salt-curve-150: 12px;
236
+ --salt-curve-200: 16px;
237
+ --salt-curve-250: 20px;
238
+ --salt-curve-999: 999px;
239
+ }
240
+
241
+ /* css/foundations/duration.css */
242
+ .salt-theme {
243
+ --salt-duration-instant: 0ms;
244
+ --salt-duration-perceptible: 300ms;
245
+ --salt-duration-notable: 1000ms;
246
+ --salt-duration-cutoff: 10000ms;
247
+ }
248
+
249
+ /* css/foundations/size.css */
250
+ .salt-density-high {
251
+ --salt-size-adornment: 6px;
252
+ --salt-size-bar: 2px;
253
+ --salt-size-base: 20px;
254
+ --salt-size-icon: 10px;
255
+ --salt-size-indicator: 2px;
256
+ --salt-size-selectable: 12px;
257
+ --salt-size-bar-strong: 4px;
258
+ }
259
+ .salt-density-medium {
260
+ --salt-size-adornment: 8px;
261
+ --salt-size-bar: 4px;
262
+ --salt-size-base: 28px;
263
+ --salt-size-icon: 12px;
264
+ --salt-size-indicator: 3px;
265
+ --salt-size-selectable: 14px;
266
+ --salt-size-bar-strong: 8px;
267
+ }
268
+ .salt-density-low {
269
+ --salt-size-adornment: 10px;
270
+ --salt-size-bar: 6px;
271
+ --salt-size-base: 36px;
272
+ --salt-size-icon: 14px;
273
+ --salt-size-indicator: 4px;
274
+ --salt-size-selectable: 16px;
275
+ --salt-size-bar-strong: 12px;
276
+ }
277
+ .salt-density-touch {
278
+ --salt-size-adornment: 12px;
279
+ --salt-size-bar: 8px;
280
+ --salt-size-base: 44px;
281
+ --salt-size-icon: 16px;
282
+ --salt-size-indicator: 5px;
283
+ --salt-size-selectable: 18px;
284
+ --salt-size-bar-strong: 16px;
285
+ }
286
+ .salt-density-touch,
287
+ .salt-density-low,
288
+ .salt-density-medium,
289
+ .salt-density-high {
290
+ --salt-size-fixed-100: 1px;
291
+ --salt-size-fixed-200: 2px;
292
+ --salt-size-fixed-300: 3px;
293
+ --salt-size-fixed-400: 4px;
294
+ --salt-size-fixed-500: 5px;
295
+ --salt-size-fixed-600: 6px;
296
+ --salt-size-fixed-700: 7px;
297
+ --salt-size-fixed-800: 8px;
298
+ --salt-size-fixed-900: 9px;
299
+ }
300
+
301
+ /* css/foundations/spacing.css */
302
+ .salt-density-touch {
303
+ --salt-spacing-100: 16px;
304
+ }
305
+ .salt-density-low {
306
+ --salt-spacing-100: 12px;
307
+ }
308
+ .salt-density-medium {
309
+ --salt-spacing-100: 8px;
310
+ }
311
+ .salt-density-high {
312
+ --salt-spacing-100: 4px;
313
+ }
314
+ .salt-density-touch,
315
+ .salt-density-low,
316
+ .salt-density-medium,
317
+ .salt-density-high {
318
+ --salt-spacing-25: calc(0.25 * var(--salt-spacing-100));
319
+ --salt-spacing-50: calc(0.5 * var(--salt-spacing-100));
320
+ --salt-spacing-75: calc(0.75 * var(--salt-spacing-100));
321
+ --salt-spacing-150: calc(1.5 * var(--salt-spacing-100));
322
+ --salt-spacing-200: calc(2 * var(--salt-spacing-100));
323
+ --salt-spacing-250: calc(2.5 * var(--salt-spacing-100));
324
+ --salt-spacing-300: calc(3 * var(--salt-spacing-100));
325
+ --salt-spacing-350: calc(3.5 * var(--salt-spacing-100));
326
+ --salt-spacing-400: calc(4 * var(--salt-spacing-100));
327
+ --salt-spacing-450: calc(4.5 * var(--salt-spacing-100));
328
+ --salt-spacing-500: calc(5 * var(--salt-spacing-100));
329
+ --salt-spacing-550: calc(5.5 * var(--salt-spacing-100));
330
+ --salt-spacing-600: calc(6 * var(--salt-spacing-100));
331
+ --salt-spacing-650: calc(6.5 * var(--salt-spacing-100));
332
+ --salt-spacing-700: calc(7 * var(--salt-spacing-100));
333
+ --salt-spacing-750: calc(7.5 * var(--salt-spacing-100));
334
+ --salt-spacing-800: calc(8 * var(--salt-spacing-100));
335
+ --salt-spacing-850: calc(8.5 * var(--salt-spacing-100));
336
+ --salt-spacing-900: calc(9 * var(--salt-spacing-100));
337
+ --salt-spacing-950: calc(9.5 * var(--salt-spacing-100));
338
+ --salt-spacing-fixed-100: 1px;
339
+ --salt-spacing-fixed-200: 2px;
340
+ --salt-spacing-fixed-300: 3px;
341
+ --salt-spacing-fixed-400: 4px;
342
+ --salt-spacing-fixed-500: 5px;
343
+ --salt-spacing-fixed-600: 6px;
344
+ --salt-spacing-fixed-700: 7px;
345
+ --salt-spacing-fixed-800: 8px;
346
+ --salt-spacing-fixed-900: 9px;
347
+ }
348
+
349
+ /* css/foundations/typography.css */
350
+ .salt-theme {
351
+ --salt-typography-fontFamily-openSans: "Open Sans";
352
+ --salt-typography-fontFamily-amplitude: "Amplitude";
353
+ --salt-typography-fontFamily-ptMono: "PT Mono";
354
+ --salt-typography-fontWeight-light: 300;
355
+ --salt-typography-fontWeight-regular: 400;
356
+ --salt-typography-fontWeight-medium: 500;
357
+ --salt-typography-fontWeight-semiBold: 600;
358
+ --salt-typography-fontWeight-bold: 700;
359
+ --salt-typography-fontWeight-extraBold: 800;
360
+ --salt-typography-textDecoration-none: none;
361
+ --salt-typography-textDecoration-underline: underline;
362
+ --salt-typography-textDecoration-italic: italic;
363
+ }
364
+
365
+ /* css/foundations/zindex.css */
366
+ .salt-density-touch,
367
+ .salt-density-low,
368
+ .salt-density-medium,
369
+ .salt-density-high {
370
+ --salt-zIndex-default: 1;
371
+ --salt-zIndex-popout: 1000;
372
+ --salt-zIndex-appHeader: 1100;
373
+ --salt-zIndex-drawer: 1200;
374
+ --salt-zIndex-modal: 1300;
375
+ --salt-zIndex-notification: 1400;
376
+ --salt-zIndex-dragObject: 1420;
377
+ --salt-zIndex-contextMenu: 1450;
378
+ --salt-zIndex-flyover: 1500;
379
+ }
380
+
381
+ /* css/foundations/index.css */
382
+
383
+ /* css/next/foundations/alpha.css */
2
384
  .salt-theme.salt-theme-next {
3
385
  --salt-color-blue-200-40a: rgba(var(--salt-color-blue-200-rgb), 0.4);
4
386
  --salt-color-blue-300-40a: rgba(var(--salt-color-blue-300-rgb), 0.4);
@@ -39,12 +421,8 @@
39
421
  --salt-color-background-leather-40a: rgba(var(--salt-color-background-leather-rgb), 0.4);
40
422
  }
41
423
 
42
- /* css/foundations/color-next.css */
424
+ /* css/next/foundations/color.css */
43
425
  .salt-theme.salt-theme-next {
44
- --salt-color-white-rgb:
45
- 255,
46
- 255,
47
- 255;
48
426
  --salt-color-gray-100-rgb:
49
427
  230,
50
428
  233,
@@ -81,10 +459,6 @@
81
459
  41,
82
460
  46,
83
461
  51;
84
- --salt-color-black-rgb:
85
- 0,
86
- 0,
87
- 0;
88
462
  --salt-color-blue-100-rgb:
89
463
  234,
90
464
  246,
@@ -369,7 +743,6 @@
369
743
  58,
370
744
  34,
371
745
  6;
372
- --salt-color-white: rgb(var(--salt-color-white-rgb));
373
746
  --salt-color-gray-100: rgb(var(--salt-color-gray-100-rgb));
374
747
  --salt-color-gray-200: rgb(var(--salt-color-gray-200-rgb));
375
748
  --salt-color-gray-300: rgb(var(--salt-color-gray-300-rgb));
@@ -379,7 +752,6 @@
379
752
  --salt-color-gray-700: rgb(var(--salt-color-gray-700-rgb));
380
753
  --salt-color-gray-800: rgb(var(--salt-color-gray-800-rgb));
381
754
  --salt-color-gray-900: rgb(var(--salt-color-gray-900-rgb));
382
- --salt-color-black: rgb(var(--salt-color-black-rgb));
383
755
  --salt-color-blue-100: rgb(var(--salt-color-blue-100-rgb));
384
756
  --salt-color-blue-200: rgb(var(--salt-color-blue-200-rgb));
385
757
  --salt-color-blue-300: rgb(var(--salt-color-blue-300-rgb));
@@ -453,7 +825,7 @@
453
825
  --salt-color-logo-brown: rgb(var(--salt-color-logo-brown-rgb));
454
826
  }
455
827
 
456
- /* css/palette/accent-next.css */
828
+ /* css/next/palette/accent.css */
457
829
  .salt-theme.salt-theme-next[data-mode=light][data-accent=blue] {
458
830
  --salt-palette-accent: var(--salt-color-blue-500);
459
831
  --salt-palette-accent-disabled: var(--salt-color-blue-500-40a);
@@ -466,6 +838,8 @@
466
838
  --salt-palette-accent-weaker: var(--salt-color-blue-200);
467
839
  --salt-palette-accent-weaker-disabled: var(--salt-color-blue-200-40a);
468
840
  --salt-palette-accent-weakest: var(--salt-color-blue-100);
841
+ --salt-palette-accent-action-hover: var(--salt-color-blue-600);
842
+ --salt-palette-accent-action-active: var(--salt-color-blue-800);
469
843
  }
470
844
  .salt-theme.salt-theme-next[data-mode=dark][data-accent=blue] {
471
845
  --salt-palette-accent: var(--salt-color-blue-500);
@@ -479,6 +853,8 @@
479
853
  --salt-palette-accent-weaker: var(--salt-color-blue-800);
480
854
  --salt-palette-accent-weaker-disabled: var(--salt-color-blue-800-40a);
481
855
  --salt-palette-accent-weakest: var(--salt-color-blue-900);
856
+ --salt-palette-accent-action-hover: var(--salt-color-blue-600);
857
+ --salt-palette-accent-action-active: var(--salt-color-blue-800);
482
858
  }
483
859
  .salt-theme.salt-theme-next[data-mode=light][data-accent=teal] {
484
860
  --salt-palette-accent: var(--salt-color-teal-500);
@@ -492,6 +868,8 @@
492
868
  --salt-palette-accent-weaker: var(--salt-color-teal-200);
493
869
  --salt-palette-accent-weaker-disabled: var(--salt-color-teal-200-40a);
494
870
  --salt-palette-accent-weakest: var(--salt-color-teal-100);
871
+ --salt-palette-accent-action-hover: var(--salt-color-teal-600);
872
+ --salt-palette-accent-action-active: var(--salt-color-teal-800);
495
873
  }
496
874
  .salt-theme.salt-theme-next[data-mode=dark][data-accent=teal] {
497
875
  --salt-palette-accent: var(--salt-color-teal-500);
@@ -505,9 +883,55 @@
505
883
  --salt-palette-accent-weaker: var(--salt-color-teal-800);
506
884
  --salt-palette-accent-weaker-disabled: var(--salt-color-teal-800-40a);
507
885
  --salt-palette-accent-weakest: var(--salt-color-teal-900);
886
+ --salt-palette-accent-action-hover: var(--salt-color-teal-600);
887
+ --salt-palette-accent-action-active: var(--salt-color-teal-800);
888
+ }
889
+
890
+ /* css/next/palette/alpha.css */
891
+ .salt-theme-next[data-mode=light] {
892
+ --salt-palette-alpha-highest: var(--salt-color-white-80a);
893
+ --salt-palette-alpha-higher: var(--salt-color-white-65a);
894
+ --salt-palette-alpha-high: var(--salt-color-white-50a);
895
+ --salt-palette-alpha-mediumHigh: var(--salt-color-white-40a);
896
+ --salt-palette-alpha-medium: var(--salt-color-white-30a);
897
+ --salt-palette-alpha-mediumLow: var(--salt-color-white-20a);
898
+ --salt-palette-alpha-low: var(--salt-color-white-15a);
899
+ --salt-palette-alpha-lower: var(--salt-color-white-10a);
900
+ --salt-palette-alpha-lowest: var(--salt-color-white-5a);
901
+ --salt-palette-alpha-contrast-highest: var(--salt-color-black-80a);
902
+ --salt-palette-alpha-contrast-higher: var(--salt-color-black-65a);
903
+ --salt-palette-alpha-contrast-high: var(--salt-color-black-50a);
904
+ --salt-palette-alpha-contrast-mediumHigh: var(--salt-color-black-40a);
905
+ --salt-palette-alpha-contrast-medium: var(--salt-color-black-30a);
906
+ --salt-palette-alpha-contrast-mediumLow: var(--salt-color-black-20a);
907
+ --salt-palette-alpha-contrast-low: var(--salt-color-black-15a);
908
+ --salt-palette-alpha-contrast-lower: var(--salt-color-black-10a);
909
+ --salt-palette-alpha-contrast-lowest: var(--salt-color-black-5a);
910
+ --salt-palette-alpha-none: transparent;
911
+ }
912
+ .salt-theme-next[data-mode=dark] {
913
+ --salt-palette-alpha-highest: var(--salt-color-black-80a);
914
+ --salt-palette-alpha-higher: var(--salt-color-black-65a);
915
+ --salt-palette-alpha-high: var(--salt-color-black-50a);
916
+ --salt-palette-alpha-mediumHigh: var(--salt-color-black-40a);
917
+ --salt-palette-alpha-medium: var(--salt-color-black-30a);
918
+ --salt-palette-alpha-mediumLow: var(--salt-color-black-20a);
919
+ --salt-palette-alpha-low: var(--salt-color-black-15a);
920
+ --salt-palette-alpha-lower: var(--salt-color-black-10a);
921
+ --salt-palette-alpha-lowest: var(--salt-color-black-5a);
922
+ --salt-palette-alpha-contrast-highest: var(--salt-color-white-80a);
923
+ --salt-palette-alpha-contrast-higher: var(--salt-color-white-65a);
924
+ --salt-palette-alpha-contrast-high: var(--salt-color-white-50a);
925
+ --salt-palette-alpha-contrast-mediumHigh: var(--salt-color-white-40a);
926
+ --salt-palette-alpha-contrast-medium: var(--salt-color-white-30a);
927
+ --salt-palette-alpha-contrast-mediumLow: var(--salt-color-white-20a);
928
+ --salt-palette-alpha-contrast-low: var(--salt-color-white-15a);
929
+ --salt-palette-alpha-contrast-lower: var(--salt-color-white-10a);
930
+ --salt-palette-alpha-contrast-lowest: var(--salt-color-white-5a);
931
+ --salt-palette-alpha-none: transparent;
508
932
  }
509
933
 
510
- /* css/palette/background-next.css */
934
+ /* css/next/palette/background.css */
511
935
  .salt-theme.salt-theme-next[data-mode=light] {
512
936
  --salt-palette-background-primary: var(--salt-color-background-snow);
513
937
  --salt-palette-background-primary-disabled: var(--salt-color-background-snow-40a);
@@ -525,7 +949,133 @@
525
949
  --salt-palette-background-tertiary-disabled: var(--salt-color-background-leather-40a);
526
950
  }
527
951
 
528
- /* css/palette/corner-next.css */
952
+ /* css/next/palette/categorical.css */
953
+ .salt-theme.salt-theme-next[data-mode=light] {
954
+ --salt-palette-categorical-1: var(--salt-color-cobalt-500);
955
+ --salt-palette-categorical-1-strong: var(--salt-color-cobalt-600);
956
+ --salt-palette-categorical-1-weakest: var(--salt-color-cobalt-100);
957
+ --salt-palette-categorical-2: var(--salt-color-cider-500);
958
+ --salt-palette-categorical-2-strong: var(--salt-color-cider-600);
959
+ --salt-palette-categorical-2-weakest: var(--salt-color-cider-100);
960
+ --salt-palette-categorical-3: var(--salt-color-plum-500);
961
+ --salt-palette-categorical-3-strong: var(--salt-color-plum-600);
962
+ --salt-palette-categorical-3-weakest: var(--salt-color-plum-100);
963
+ --salt-palette-categorical-4: var(--salt-color-aqua-500);
964
+ --salt-palette-categorical-4-strong: var(--salt-color-aqua-600);
965
+ --salt-palette-categorical-4-weakest: var(--salt-color-aqua-100);
966
+ --salt-palette-categorical-5: var(--salt-color-slate-500);
967
+ --salt-palette-categorical-5-strong: var(--salt-color-slate-600);
968
+ --salt-palette-categorical-5-weakest: var(--salt-color-slate-100);
969
+ --salt-palette-categorical-6: var(--salt-color-rose-500);
970
+ --salt-palette-categorical-6-strong: var(--salt-color-rose-600);
971
+ --salt-palette-categorical-6-weakest: var(--salt-color-rose-100);
972
+ --salt-palette-categorical-7: var(--salt-color-olive-500);
973
+ --salt-palette-categorical-7-strong: var(--salt-color-olive-600);
974
+ --salt-palette-categorical-7-weakest: var(--salt-color-olive-100);
975
+ --salt-palette-categorical-8: var(--salt-color-salmon-500);
976
+ --salt-palette-categorical-8-strong: var(--salt-color-salmon-600);
977
+ --salt-palette-categorical-8-weakest: var(--salt-color-salmon-100);
978
+ --salt-palette-categorical-9: var(--salt-color-indigo-500);
979
+ --salt-palette-categorical-9-strong: var(--salt-color-indigo-600);
980
+ --salt-palette-categorical-9-weakest: var(--salt-color-indigo-100);
981
+ --salt-palette-categorical-10: var(--salt-color-jade-500);
982
+ --salt-palette-categorical-10-strong: var(--salt-color-jade-600);
983
+ --salt-palette-categorical-10-weakest: var(--salt-color-jade-100);
984
+ --salt-palette-categorical-11: var(--salt-color-citrine-500);
985
+ --salt-palette-categorical-11-strong: var(--salt-color-citrine-600);
986
+ --salt-palette-categorical-11-weakest: var(--salt-color-citrine-100);
987
+ --salt-palette-categorical-12: var(--salt-color-autumn-500);
988
+ --salt-palette-categorical-12-strong: var(--salt-color-autumn-600);
989
+ --salt-palette-categorical-12-weakest: var(--salt-color-autumn-100);
990
+ --salt-palette-categorical-13: var(--salt-color-lavender-500);
991
+ --salt-palette-categorical-13-strong: var(--salt-color-lavender-600);
992
+ --salt-palette-categorical-13-weakest: var(--salt-color-lavender-100);
993
+ --salt-palette-categorical-14: var(--salt-color-ocean-500);
994
+ --salt-palette-categorical-14-strong: var(--salt-color-ocean-600);
995
+ --salt-palette-categorical-14-weakest: var(--salt-color-ocean-100);
996
+ --salt-palette-categorical-15: var(--salt-color-smoke-500);
997
+ --salt-palette-categorical-15-strong: var(--salt-color-smoke-600);
998
+ --salt-palette-categorical-15-weakest: var(--salt-color-smoke-100);
999
+ --salt-palette-categorical-16: var(--salt-color-fuchsia-500);
1000
+ --salt-palette-categorical-16-strong: var(--salt-color-fuchsia-600);
1001
+ --salt-palette-categorical-16-weakest: var(--salt-color-fuchsia-100);
1002
+ --salt-palette-categorical-17: var(--salt-color-lime-500);
1003
+ --salt-palette-categorical-17-strong: var(--salt-color-lime-600);
1004
+ --salt-palette-categorical-17-weakest: var(--salt-color-lime-100);
1005
+ --salt-palette-categorical-18: var(--salt-color-fur-500);
1006
+ --salt-palette-categorical-18-strong: var(--salt-color-fur-600);
1007
+ --salt-palette-categorical-18-weakest: var(--salt-color-fur-100);
1008
+ --salt-palette-categorical-19: var(--salt-color-violet-500);
1009
+ --salt-palette-categorical-19-strong: var(--salt-color-violet-600);
1010
+ --salt-palette-categorical-19-weakest: var(--salt-color-violet-100);
1011
+ --salt-palette-categorical-20: var(--salt-color-forest-500);
1012
+ --salt-palette-categorical-20-strong: var(--salt-color-forest-600);
1013
+ --salt-palette-categorical-20-weakest: var(--salt-color-forest-100);
1014
+ }
1015
+ .salt-theme.salt-theme-next[data-mode=dark] {
1016
+ --salt-palette-categorical-1: var(--salt-color-cobalt-500);
1017
+ --salt-palette-categorical-1-strong: var(--salt-color-cobalt-400);
1018
+ --salt-palette-categorical-1-weakest: var(--salt-color-cobalt-900);
1019
+ --salt-palette-categorical-2: var(--salt-color-cider-500);
1020
+ --salt-palette-categorical-2-strong: var(--salt-color-cider-400);
1021
+ --salt-palette-categorical-2-weakest: var(--salt-color-cider-900);
1022
+ --salt-palette-categorical-3: var(--salt-color-plum-500);
1023
+ --salt-palette-categorical-3-strong: var(--salt-color-plum-400);
1024
+ --salt-palette-categorical-3-weakest: var(--salt-color-plum-900);
1025
+ --salt-palette-categorical-4: var(--salt-color-aqua-500);
1026
+ --salt-palette-categorical-4-strong: var(--salt-color-aqua-400);
1027
+ --salt-palette-categorical-4-weakest: var(--salt-color-aqua-900);
1028
+ --salt-palette-categorical-5: var(--salt-color-slate-500);
1029
+ --salt-palette-categorical-5-strong: var(--salt-color-slate-400);
1030
+ --salt-palette-categorical-5-weakest: var(--salt-color-slate-900);
1031
+ --salt-palette-categorical-6: var(--salt-color-rose-500);
1032
+ --salt-palette-categorical-6-strong: var(--salt-color-rose-400);
1033
+ --salt-palette-categorical-6-weakest: var(--salt-color-rose-900);
1034
+ --salt-palette-categorical-7: var(--salt-color-olive-500);
1035
+ --salt-palette-categorical-7-strong: var(--salt-color-olive-400);
1036
+ --salt-palette-categorical-7-weakest: var(--salt-color-olive-900);
1037
+ --salt-palette-categorical-8: var(--salt-color-salmon-500);
1038
+ --salt-palette-categorical-8-strong: var(--salt-color-salmon-400);
1039
+ --salt-palette-categorical-8-weakest: var(--salt-color-salmon-900);
1040
+ --salt-palette-categorical-9: var(--salt-color-indigo-500);
1041
+ --salt-palette-categorical-9-strong: var(--salt-color-indigo-400);
1042
+ --salt-palette-categorical-9-weakest: var(--salt-color-indigo-900);
1043
+ --salt-palette-categorical-10: var(--salt-color-jade-500);
1044
+ --salt-palette-categorical-10-strong: var(--salt-color-jade-400);
1045
+ --salt-palette-categorical-10-weakest: var(--salt-color-jade-900);
1046
+ --salt-palette-categorical-11: var(--salt-color-citrine-500);
1047
+ --salt-palette-categorical-11-strong: var(--salt-color-citrine-400);
1048
+ --salt-palette-categorical-11-weakest: var(--salt-color-citrine-900);
1049
+ --salt-palette-categorical-12: var(--salt-color-autumn-500);
1050
+ --salt-palette-categorical-12-strong: var(--salt-color-autumn-400);
1051
+ --salt-palette-categorical-12-weakest: var(--salt-color-autumn-900);
1052
+ --salt-palette-categorical-13: var(--salt-color-lavender-500);
1053
+ --salt-palette-categorical-13-strong: var(--salt-color-lavender-400);
1054
+ --salt-palette-categorical-13-weakest: var(--salt-color-lavender-900);
1055
+ --salt-palette-categorical-14: var(--salt-color-ocean-500);
1056
+ --salt-palette-categorical-14-strong: var(--salt-color-ocean-400);
1057
+ --salt-palette-categorical-14-weakest: var(--salt-color-ocean-900);
1058
+ --salt-palette-categorical-15: var(--salt-color-smoke-500);
1059
+ --salt-palette-categorical-15-strong: var(--salt-color-smoke-400);
1060
+ --salt-palette-categorical-15-weakest: var(--salt-color-smoke-900);
1061
+ --salt-palette-categorical-16: var(--salt-color-fuchsia-500);
1062
+ --salt-palette-categorical-16-strong: var(--salt-color-fuchsia-400);
1063
+ --salt-palette-categorical-16-weakest: var(--salt-color-fuchsia-900);
1064
+ --salt-palette-categorical-17: var(--salt-color-lime-500);
1065
+ --salt-palette-categorical-17-strong: var(--salt-color-lime-400);
1066
+ --salt-palette-categorical-17-weakest: var(--salt-color-lime-900);
1067
+ --salt-palette-categorical-18: var(--salt-color-fur-500);
1068
+ --salt-palette-categorical-18-strong: var(--salt-color-fur-400);
1069
+ --salt-palette-categorical-18-weakest: var(--salt-color-fur-900);
1070
+ --salt-palette-categorical-19: var(--salt-color-violet-500);
1071
+ --salt-palette-categorical-19-strong: var(--salt-color-violet-400);
1072
+ --salt-palette-categorical-19-weakest: var(--salt-color-violet-900);
1073
+ --salt-palette-categorical-20: var(--salt-color-forest-500);
1074
+ --salt-palette-categorical-20-strong: var(--salt-color-forest-400);
1075
+ --salt-palette-categorical-20-weakest: var(--salt-color-forest-900);
1076
+ }
1077
+
1078
+ /* css/next/palette/corner.css */
529
1079
  .salt-theme-next[data-corner=rounded] {
530
1080
  --salt-palette-corner-weaker: var(--salt-curve-50);
531
1081
  --salt-palette-corner-weak: var(--salt-curve-100);
@@ -543,7 +1093,7 @@
543
1093
  --salt-palette-corner-strongest: var(--salt-curve-999);
544
1094
  }
545
1095
 
546
- /* css/palette/foreground-next.css */
1096
+ /* css/next/palette/foreground.css */
547
1097
  .salt-theme.salt-theme-next[data-mode=light] {
548
1098
  --salt-palette-foreground-primary: var(--salt-color-black);
549
1099
  --salt-palette-foreground-primary-disabled: var(--salt-color-black-40a);
@@ -563,7 +1113,7 @@
563
1113
  --salt-palette-foreground-visited: var(--salt-color-purple-200);
564
1114
  }
565
1115
 
566
- /* css/palette/info-next.css */
1116
+ /* css/next/palette/info.css */
567
1117
  .salt-theme.salt-theme-next[data-mode=light] {
568
1118
  --salt-palette-info: var(--salt-color-blue-500);
569
1119
  --salt-palette-info-strong: var(--salt-color-blue-600);
@@ -575,31 +1125,29 @@
575
1125
  --salt-palette-info-weakest: var(--salt-color-blue-900);
576
1126
  }
577
1127
 
578
- /* css/palette/negative-next.css */
1128
+ /* css/next/palette/negative.css */
579
1129
  .salt-theme.salt-theme-next[data-mode=light] {
580
1130
  --salt-palette-negative: var(--salt-color-red-500);
581
1131
  --salt-palette-negative-disabled: var(--salt-color-red-500-40a);
582
- --salt-palette-negative-stronger: var(--salt-color-red-700);
583
1132
  --salt-palette-negative-strong: var(--salt-color-red-600);
584
1133
  --salt-palette-negative-strong-disabled: var(--salt-color-red-600-40a);
585
1134
  --salt-palette-negative-weaker: var(--salt-color-red-200);
586
1135
  --salt-palette-negative-weakest: var(--salt-color-red-100);
587
- --salt-palette-negative-action-hover: var(--salt-color-red-100);
588
- --salt-palette-negative-action-active: var(--salt-color-red-200);
1136
+ --salt-palette-negative-action-hover: var(--salt-color-red-600);
1137
+ --salt-palette-negative-action-active: var(--salt-color-red-800);
589
1138
  }
590
1139
  .salt-theme.salt-theme-next[data-mode=dark] {
591
1140
  --salt-palette-negative: var(--salt-color-red-500);
592
1141
  --salt-palette-negative-disabled: var(--salt-color-red-500-40a);
593
- --salt-palette-negative-stronger: var(--salt-color-red-300);
594
1142
  --salt-palette-negative-strong: var(--salt-color-red-400);
595
1143
  --salt-palette-negative-strong-disabled: var(--salt-color-red-400-40a);
596
1144
  --salt-palette-negative-weaker: var(--salt-color-red-800);
597
1145
  --salt-palette-negative-weakest: var(--salt-color-red-900);
598
- --salt-palette-negative-action-hover: var(--salt-color-red-900);
1146
+ --salt-palette-negative-action-hover: var(--salt-color-red-600);
599
1147
  --salt-palette-negative-action-active: var(--salt-color-red-800);
600
1148
  }
601
1149
 
602
- /* css/palette/neutral-next.css */
1150
+ /* css/next/palette/neutral.css */
603
1151
  .salt-theme.salt-theme-next[data-mode=light] {
604
1152
  --salt-palette-neutral: var(--salt-color-gray-500);
605
1153
  --salt-palette-neutral-disabled: var(--salt-color-gray-500-40a);
@@ -614,7 +1162,8 @@
614
1162
  --salt-palette-neutral-weaker-disabled: var(--salt-color-gray-300-40a);
615
1163
  --salt-palette-neutral-weaker-readonly: var(--salt-color-gray-300-10a);
616
1164
  --salt-palette-neutral-weakest: var(--salt-color-gray-200);
617
- --salt-palette-neutral-action-hover: var(--salt-color-gray-100);
1165
+ --salt-palette-neutral-action-hover: var(--salt-color-gray-600);
1166
+ --salt-palette-neutral-action-active: var(--salt-color-gray-800);
618
1167
  }
619
1168
  .salt-theme.salt-theme-next[data-mode=dark] {
620
1169
  --salt-palette-neutral: var(--salt-color-gray-500);
@@ -630,32 +1179,49 @@
630
1179
  --salt-palette-neutral-weaker-disabled: var(--salt-color-gray-700-40a);
631
1180
  --salt-palette-neutral-weaker-readonly: var(--salt-color-gray-700-10a);
632
1181
  --salt-palette-neutral-weakest: var(--salt-color-gray-800);
633
- --salt-palette-neutral-action-hover: var(--salt-color-gray-900);
1182
+ --salt-palette-neutral-action-hover: var(--salt-color-gray-600);
1183
+ --salt-palette-neutral-action-active: var(--salt-color-gray-800);
634
1184
  }
635
1185
 
636
- /* css/palette/positive-next.css */
1186
+ /* css/next/palette/positive.css */
637
1187
  .salt-theme.salt-theme-next[data-mode=light] {
638
1188
  --salt-palette-positive: var(--salt-color-green-500);
639
1189
  --salt-palette-positive-disabled: var(--salt-color-green-500-40a);
640
- --salt-palette-positive-stronger: var(--salt-color-green-700);
641
1190
  --salt-palette-positive-strong: var(--salt-color-green-600);
642
1191
  --salt-palette-positive-strong-disabled: var(--salt-color-green-600-40a);
643
1192
  --salt-palette-positive-weaker: var(--salt-color-green-200);
644
1193
  --salt-palette-positive-weakest: var(--salt-color-green-100);
645
- --salt-palette-positive-action-hover: var(--salt-color-green-100);
1194
+ --salt-palette-positive-action-hover: var(--salt-color-green-600);
1195
+ --salt-palette-positive-action-active: var(--salt-color-green-800);
646
1196
  }
647
1197
  .salt-theme.salt-theme-next[data-mode=dark] {
648
1198
  --salt-palette-positive: var(--salt-color-green-500);
649
1199
  --salt-palette-positive-disabled: var(--salt-color-green-500-40a);
650
- --salt-palette-positive-stronger: var(--salt-color-green-300);
651
1200
  --salt-palette-positive-strong: var(--salt-color-green-400);
652
1201
  --salt-palette-positive-strong-disabled: var(--salt-color-green-400-40a);
653
1202
  --salt-palette-positive-weaker: var(--salt-color-green-800);
654
1203
  --salt-palette-positive-weakest: var(--salt-color-green-900);
655
- --salt-palette-positive-action-hover: var(--salt-color-green-900);
1204
+ --salt-palette-positive-action-hover: var(--salt-color-green-600);
1205
+ --salt-palette-positive-action-active: var(--salt-color-green-800);
1206
+ }
1207
+
1208
+ /* css/next/palette/shadow.css */
1209
+ .salt-theme.salt-theme-next[data-mode=light] {
1210
+ --salt-shadow-lowest: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
1211
+ --salt-shadow-lower: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
1212
+ --salt-shadow-low: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
1213
+ --salt-shadow-mediumLow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
1214
+ --salt-shadow-medium: 0 12px 40px 0 rgba(0, 0, 0, 0.3);
1215
+ }
1216
+ .salt-theme.salt-theme-next[data-mode=dark] {
1217
+ --salt-shadow-lowest: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
1218
+ --salt-shadow-lower: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
1219
+ --salt-shadow-low: 0 4px 8px 0 rgba(0, 0, 0, 0.55);
1220
+ --salt-shadow-mediumLow: 0 6px 10px 0 rgba(0, 0, 0, 0.55);
1221
+ --salt-shadow-medium: 0 12px 40px 0 rgba(0, 0, 0, 0.65);
656
1222
  }
657
1223
 
658
- /* css/palette/text-next.css */
1224
+ /* css/next/palette/text.css */
659
1225
  .salt-theme-next.salt-theme[data-heading-font="Open Sans"] {
660
1226
  --salt-palette-text-fontFamily-heading: var(--salt-typography-fontFamily-openSans);
661
1227
  --salt-palette-text-display-fontWeight: var(--salt-typography-fontWeight-semiBold);
@@ -695,29 +1261,29 @@
695
1261
  --salt-palette-text-action-fontWeight: var(--salt-typography-fontWeight-medium);
696
1262
  }
697
1263
 
698
- /* css/palette/warning-next.css */
1264
+ /* css/next/palette/warning.css */
699
1265
  .salt-theme.salt-theme-next[data-mode=light] {
700
1266
  --salt-palette-warning: var(--salt-color-orange-500);
701
1267
  --salt-palette-warning-disabled: var(--salt-color-orange-500-40a);
702
- --salt-palette-warning-stronger: var(--salt-color-orange-700);
703
1268
  --salt-palette-warning-strong: var(--salt-color-orange-600);
704
1269
  --salt-palette-warning-strong-disabled: var(--salt-color-orange-600-40a);
705
1270
  --salt-palette-warning-weaker: var(--salt-color-orange-200);
706
1271
  --salt-palette-warning-weakest: var(--salt-color-orange-100);
707
- --salt-palette-warning-action-hover: var(--salt-color-orange-100);
1272
+ --salt-palette-warning-action-hover: var(--salt-color-orange-600);
1273
+ --salt-palette-warning-action-active: var(--salt-color-orange-800);
708
1274
  }
709
1275
  .salt-theme.salt-theme-next[data-mode=dark] {
710
1276
  --salt-palette-warning: var(--salt-color-orange-500);
711
1277
  --salt-palette-warning-disabled: var(--salt-color-orange-500-40a);
712
- --salt-palette-warning-stronger: var(--salt-color-orange-300);
713
1278
  --salt-palette-warning-strong: var(--salt-color-orange-400);
714
1279
  --salt-palette-warning-strong-disabled: var(--salt-color-orange-400-40a);
715
1280
  --salt-palette-warning-weaker: var(--salt-color-orange-800);
716
1281
  --salt-palette-warning-weakest: var(--salt-color-orange-900);
717
- --salt-palette-warning-action-hover: var(--salt-color-orange-900);
1282
+ --salt-palette-warning-action-hover: var(--salt-color-orange-600);
1283
+ --salt-palette-warning-action-active: var(--salt-color-orange-800);
718
1284
  }
719
1285
 
720
- /* css/characteristics/accent-next.css */
1286
+ /* css/next/characteristics/accent.css */
721
1287
  .salt-theme.salt-theme-next {
722
1288
  --salt-accent-background: var(--salt-palette-accent);
723
1289
  --salt-accent-background-disabled: var(--salt-palette-accent-disabled);
@@ -726,57 +1292,57 @@
726
1292
  --salt-accent-foreground: var(--salt-palette-foreground-primary-alt);
727
1293
  }
728
1294
 
729
- /* css/characteristics/actionable-next.css */
1295
+ /* css/next/characteristics/actionable.css */
730
1296
  .salt-theme.salt-theme-next {
731
- --salt-actionable-accented-bold-background-active: var(--salt-palette-accent-weaker);
1297
+ --salt-actionable-accented-bold-background-active: var(--salt-palette-accent-action-active);
732
1298
  --salt-actionable-accented-bold-background-disabled: var(--salt-palette-accent-disabled);
733
- --salt-actionable-accented-bold-background-hover: var(--salt-palette-accent);
1299
+ --salt-actionable-accented-bold-background-hover: var(--salt-palette-accent-action-hover);
734
1300
  --salt-actionable-accented-bold-background: var(--salt-palette-accent);
735
1301
  --salt-actionable-accented-bold-borderColor-active: var(--salt-palette-accent);
736
1302
  --salt-actionable-accented-bold-borderColor-disabled: var(--salt-palette-alpha-none);
737
- --salt-actionable-accented-bold-borderColor-hover: var(--salt-palette-alpha-contrast-high);
1303
+ --salt-actionable-accented-bold-borderColor-hover: var(--salt-palette-accent);
738
1304
  --salt-actionable-accented-bold-borderColor: var(--salt-palette-accent);
739
- --salt-actionable-accented-bold-foreground-active: var(--salt-palette-foreground-primary);
1305
+ --salt-actionable-accented-bold-foreground-active: var(--salt-palette-foreground-primary-alt);
740
1306
  --salt-actionable-accented-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
741
1307
  --salt-actionable-accented-bold-foreground-hover: var(--salt-palette-foreground-primary-alt);
742
1308
  --salt-actionable-accented-bold-foreground: var(--salt-palette-foreground-primary-alt);
743
- --salt-actionable-accented-background-active: var(--salt-palette-accent-weaker);
1309
+ --salt-actionable-accented-background-active: var(--salt-palette-accent-action-active);
744
1310
  --salt-actionable-accented-background-disabled: var(--salt-palette-alpha-none);
745
- --salt-actionable-accented-background-hover: var(--salt-palette-accent-weakest);
1311
+ --salt-actionable-accented-background-hover: var(--salt-palette-accent-action-hover);
746
1312
  --salt-actionable-accented-background: var(--salt-palette-alpha-none);
747
1313
  --salt-actionable-accented-borderColor-active: var(--salt-palette-accent);
748
1314
  --salt-actionable-accented-borderColor-disabled: var(--salt-palette-accent-disabled);
749
1315
  --salt-actionable-accented-borderColor-hover: var(--salt-palette-accent);
750
1316
  --salt-actionable-accented-borderColor: var(--salt-palette-accent);
751
- --salt-actionable-accented-foreground-active: var(--salt-palette-foreground-primary);
1317
+ --salt-actionable-accented-foreground-active: var(--salt-palette-foreground-primary-alt);
752
1318
  --salt-actionable-accented-foreground-disabled: var(--salt-palette-accent-strong-disabled);
753
- --salt-actionable-accented-foreground-hover: var(--salt-palette-accent-stronger);
1319
+ --salt-actionable-accented-foreground-hover: var(--salt-palette-foreground-primary-alt);
754
1320
  --salt-actionable-accented-foreground: var(--salt-palette-accent-strong);
755
- --salt-actionable-accented-subtle-background-active: var(--salt-palette-accent-weaker);
1321
+ --salt-actionable-accented-subtle-background-active: var(--salt-palette-accent-action-active);
756
1322
  --salt-actionable-accented-subtle-background-disabled: var(--salt-palette-alpha-none);
757
- --salt-actionable-accented-subtle-background-hover: var(--salt-palette-accent-weakest);
1323
+ --salt-actionable-accented-subtle-background-hover: var(--salt-palette-accent-action-hover);
758
1324
  --salt-actionable-accented-subtle-background: var(--salt-palette-alpha-none);
759
1325
  --salt-actionable-accented-subtle-borderColor-active: var(--salt-palette-accent);
760
1326
  --salt-actionable-accented-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
761
1327
  --salt-actionable-accented-subtle-borderColor-hover: var(--salt-palette-accent);
762
1328
  --salt-actionable-accented-subtle-borderColor: var(--salt-palette-alpha-none);
763
- --salt-actionable-accented-subtle-foreground-active: var(--salt-palette-foreground-primary);
1329
+ --salt-actionable-accented-subtle-foreground-active: var(--salt-palette-foreground-primary-alt);
764
1330
  --salt-actionable-accented-subtle-foreground-disabled: var(--salt-palette-accent-strong-disabled);
765
- --salt-actionable-accented-subtle-foreground-hover: var(--salt-palette-accent-stronger);
1331
+ --salt-actionable-accented-subtle-foreground-hover: var(--salt-palette-foreground-primary-alt);
766
1332
  --salt-actionable-accented-subtle-foreground: var(--salt-palette-accent-strong);
767
- --salt-actionable-bold-background-active: var(--salt-palette-neutral-weaker);
1333
+ --salt-actionable-bold-background-active: var(--salt-palette-neutral-action-active);
768
1334
  --salt-actionable-bold-background-disabled: var(--salt-palette-neutral-disabled);
769
- --salt-actionable-bold-background-hover: var(--salt-palette-neutral);
1335
+ --salt-actionable-bold-background-hover: var(--salt-palette-neutral-action-hover);
770
1336
  --salt-actionable-bold-background: var(--salt-palette-neutral);
771
1337
  --salt-actionable-bold-borderColor-active: var(--salt-palette-neutral);
772
1338
  --salt-actionable-bold-borderColor-disabled: var(--salt-palette-alpha-none);
773
- --salt-actionable-bold-borderColor-hover: var(--salt-palette-alpha-contrast-high);
1339
+ --salt-actionable-bold-borderColor-hover: var(--salt-palette-neutral);
774
1340
  --salt-actionable-bold-borderColor: var(--salt-palette-neutral);
775
- --salt-actionable-bold-foreground-active: var(--salt-palette-foreground-primary);
1341
+ --salt-actionable-bold-foreground-active: var(--salt-palette-foreground-primary-alt);
776
1342
  --salt-actionable-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
777
1343
  --salt-actionable-bold-foreground-hover: var(--salt-palette-foreground-primary-alt);
778
1344
  --salt-actionable-bold-foreground: var(--salt-palette-foreground-primary-alt);
779
- --salt-actionable-background-active: var(--salt-palette-neutral-weaker);
1345
+ --salt-actionable-background-active: var(--salt-palette-neutral-action-active);
780
1346
  --salt-actionable-background-disabled: var(--salt-palette-alpha-none);
781
1347
  --salt-actionable-background-hover: var(--salt-palette-neutral-action-hover);
782
1348
  --salt-actionable-background: var(--salt-palette-alpha-none);
@@ -784,11 +1350,11 @@
784
1350
  --salt-actionable-borderColor-disabled: var(--salt-palette-neutral-disabled);
785
1351
  --salt-actionable-borderColor-hover: var(--salt-palette-neutral);
786
1352
  --salt-actionable-borderColor: var(--salt-palette-neutral);
787
- --salt-actionable-foreground-active: var(--salt-palette-foreground-primary);
1353
+ --salt-actionable-foreground-active: var(--salt-palette-foreground-primary-alt);
788
1354
  --salt-actionable-foreground-disabled: var(--salt-palette-foreground-primary-disabled);
789
- --salt-actionable-foreground-hover: var(--salt-palette-foreground-primary);
1355
+ --salt-actionable-foreground-hover: var(--salt-palette-foreground-primary-alt);
790
1356
  --salt-actionable-foreground: var(--salt-palette-foreground-primary);
791
- --salt-actionable-subtle-background-active: var(--salt-palette-neutral-weaker);
1357
+ --salt-actionable-subtle-background-active: var(--salt-palette-neutral-action-active);
792
1358
  --salt-actionable-subtle-background-disabled: var(--salt-palette-alpha-none);
793
1359
  --salt-actionable-subtle-background-hover: var(--salt-palette-neutral-action-hover);
794
1360
  --salt-actionable-subtle-background: var(--salt-palette-alpha-none);
@@ -796,23 +1362,23 @@
796
1362
  --salt-actionable-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
797
1363
  --salt-actionable-subtle-borderColor-hover: var(--salt-palette-neutral);
798
1364
  --salt-actionable-subtle-borderColor: var(--salt-palette-alpha-none);
799
- --salt-actionable-subtle-foreground-active: var(--salt-palette-foreground-primary);
1365
+ --salt-actionable-subtle-foreground-active: var(--salt-palette-foreground-primary-alt);
800
1366
  --salt-actionable-subtle-foreground-disabled: var(--salt-palette-foreground-primary-disabled);
801
- --salt-actionable-subtle-foreground-hover: var(--salt-palette-foreground-primary);
1367
+ --salt-actionable-subtle-foreground-hover: var(--salt-palette-foreground-primary-alt);
802
1368
  --salt-actionable-subtle-foreground: var(--salt-palette-foreground-primary);
803
- --salt-actionable-negative-bold-background-active: var(--salt-palette-negative-weaker);
1369
+ --salt-actionable-negative-bold-background-active: var(--salt-palette-negative-action-active);
804
1370
  --salt-actionable-negative-bold-background-disabled: var(--salt-palette-negative-disabled);
805
- --salt-actionable-negative-bold-background-hover: var(--salt-palette-negative);
1371
+ --salt-actionable-negative-bold-background-hover: var(--salt-palette-negative-action-hover);
806
1372
  --salt-actionable-negative-bold-background: var(--salt-palette-negative);
807
1373
  --salt-actionable-negative-bold-borderColor-active: var(--salt-palette-negative);
808
1374
  --salt-actionable-negative-bold-borderColor-disabled: var(--salt-palette-alpha-none);
809
- --salt-actionable-negative-bold-borderColor-hover: var(--salt-palette-alpha-contrast-high);
1375
+ --salt-actionable-negative-bold-borderColor-hover: var(--salt-palette-negative);
810
1376
  --salt-actionable-negative-bold-borderColor: var(--salt-palette-negative);
811
- --salt-actionable-negative-bold-foreground-active: var(--salt-palette-foreground-primary);
1377
+ --salt-actionable-negative-bold-foreground-active: var(--salt-palette-foreground-primary-alt);
812
1378
  --salt-actionable-negative-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
813
1379
  --salt-actionable-negative-bold-foreground-hover: var(--salt-palette-foreground-primary-alt);
814
1380
  --salt-actionable-negative-bold-foreground: var(--salt-palette-foreground-primary-alt);
815
- --salt-actionable-negative-background-active: var(--salt-palette-negative-weaker);
1381
+ --salt-actionable-negative-background-active: var(--salt-palette-negative-action-active);
816
1382
  --salt-actionable-negative-background-disabled: var(--salt-palette-alpha-none);
817
1383
  --salt-actionable-negative-background-hover: var(--salt-palette-negative-action-hover);
818
1384
  --salt-actionable-negative-background: var(--salt-palette-alpha-none);
@@ -820,11 +1386,11 @@
820
1386
  --salt-actionable-negative-borderColor-disabled: var(--salt-palette-negative-disabled);
821
1387
  --salt-actionable-negative-borderColor-hover: var(--salt-palette-negative);
822
1388
  --salt-actionable-negative-borderColor: var(--salt-palette-negative);
823
- --salt-actionable-negative-foreground-active: var(--salt-palette-foreground-primary);
1389
+ --salt-actionable-negative-foreground-active: var(--salt-palette-foreground-primary-alt);
824
1390
  --salt-actionable-negative-foreground-disabled: var(--salt-palette-negative-strong-disabled);
825
- --salt-actionable-negative-foreground-hover: var(--salt-palette-negative-stronger);
1391
+ --salt-actionable-negative-foreground-hover: var(--salt-palette-foreground-primary-alt);
826
1392
  --salt-actionable-negative-foreground: var(--salt-palette-negative-strong);
827
- --salt-actionable-negative-subtle-background-active: var(--salt-palette-negative-weaker);
1393
+ --salt-actionable-negative-subtle-background-active: var(--salt-palette-negative-action-active);
828
1394
  --salt-actionable-negative-subtle-background-disabled: var(--salt-palette-alpha-none);
829
1395
  --salt-actionable-negative-subtle-background-hover: var(--salt-palette-negative-action-hover);
830
1396
  --salt-actionable-negative-subtle-background: var(--salt-palette-alpha-none);
@@ -832,23 +1398,23 @@
832
1398
  --salt-actionable-negative-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
833
1399
  --salt-actionable-negative-subtle-borderColor-hover: var(--salt-palette-negative);
834
1400
  --salt-actionable-negative-subtle-borderColor: var(--salt-palette-alpha-none);
835
- --salt-actionable-negative-subtle-foreground-active: var(--salt-palette-foreground-primary);
1401
+ --salt-actionable-negative-subtle-foreground-active: var(--salt-palette-foreground-primary-alt);
836
1402
  --salt-actionable-negative-subtle-foreground-disabled: var(--salt-palette-negative-strong-disabled);
837
- --salt-actionable-negative-subtle-foreground-hover: var(--salt-palette-negative-stronger);
1403
+ --salt-actionable-negative-subtle-foreground-hover: var(--salt-palette-foreground-primary-alt);
838
1404
  --salt-actionable-negative-subtle-foreground: var(--salt-palette-negative-strong);
839
- --salt-actionable-positive-bold-background-active: var(--salt-palette-positive-weaker);
1405
+ --salt-actionable-positive-bold-background-active: var(--salt-palette-positive-action-active);
840
1406
  --salt-actionable-positive-bold-background-disabled: var(--salt-palette-positive-disabled);
841
- --salt-actionable-positive-bold-background-hover: var(--salt-palette-positive);
1407
+ --salt-actionable-positive-bold-background-hover: var(--salt-palette-positive-action-hover);
842
1408
  --salt-actionable-positive-bold-background: var(--salt-palette-positive);
843
1409
  --salt-actionable-positive-bold-borderColor-active: var(--salt-palette-positive);
844
1410
  --salt-actionable-positive-bold-borderColor-disabled: var(--salt-palette-alpha-none);
845
- --salt-actionable-positive-bold-borderColor-hover: var(--salt-palette-alpha-contrast-high);
1411
+ --salt-actionable-positive-bold-borderColor-hover: var(--salt-palette-positive);
846
1412
  --salt-actionable-positive-bold-borderColor: var(--salt-palette-positive);
847
- --salt-actionable-positive-bold-foreground-active: var(--salt-palette-foreground-primary);
1413
+ --salt-actionable-positive-bold-foreground-active: var(--salt-palette-foreground-primary-alt);
848
1414
  --salt-actionable-positive-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
849
1415
  --salt-actionable-positive-bold-foreground-hover: var(--salt-palette-foreground-primary-alt);
850
1416
  --salt-actionable-positive-bold-foreground: var(--salt-palette-foreground-primary-alt);
851
- --salt-actionable-positive-background-active: var(--salt-palette-positive-weaker);
1417
+ --salt-actionable-positive-background-active: var(--salt-palette-positive-action-active);
852
1418
  --salt-actionable-positive-background-disabled: var(--salt-palette-alpha-none);
853
1419
  --salt-actionable-positive-background-hover: var(--salt-palette-positive-action-hover);
854
1420
  --salt-actionable-positive-background: var(--salt-palette-alpha-none);
@@ -856,11 +1422,11 @@
856
1422
  --salt-actionable-positive-borderColor-disabled: var(--salt-palette-positive-disabled);
857
1423
  --salt-actionable-positive-borderColor-hover: var(--salt-palette-positive);
858
1424
  --salt-actionable-positive-borderColor: var(--salt-palette-positive);
859
- --salt-actionable-positive-foreground-active: var(--salt-palette-foreground-primary);
1425
+ --salt-actionable-positive-foreground-active: var(--salt-palette-foreground-primary-alt);
860
1426
  --salt-actionable-positive-foreground-disabled: var(--salt-palette-positive-strong-disabled);
861
- --salt-actionable-positive-foreground-hover: var(--salt-palette-positive-stronger);
1427
+ --salt-actionable-positive-foreground-hover: var(--salt-palette-foreground-primary-alt);
862
1428
  --salt-actionable-positive-foreground: var(--salt-palette-positive-strong);
863
- --salt-actionable-positive-subtle-background-active: var(--salt-palette-positive-weaker);
1429
+ --salt-actionable-positive-subtle-background-active: var(--salt-palette-positive-action-active);
864
1430
  --salt-actionable-positive-subtle-background-disabled: var(--salt-palette-alpha-none);
865
1431
  --salt-actionable-positive-subtle-background-hover: var(--salt-palette-positive-action-hover);
866
1432
  --salt-actionable-positive-subtle-background: var(--salt-palette-alpha-none);
@@ -868,23 +1434,23 @@
868
1434
  --salt-actionable-positive-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
869
1435
  --salt-actionable-positive-subtle-borderColor-hover: var(--salt-palette-positive);
870
1436
  --salt-actionable-positive-subtle-borderColor: var(--salt-palette-alpha-none);
871
- --salt-actionable-positive-subtle-foreground-active: var(--salt-palette-foreground-primary);
1437
+ --salt-actionable-positive-subtle-foreground-active: var(--salt-palette-foreground-primary-alt);
872
1438
  --salt-actionable-positive-subtle-foreground-disabled: var(--salt-palette-positive-strong-disabled);
873
- --salt-actionable-positive-subtle-foreground-hover: var(--salt-palette-positive-stronger);
1439
+ --salt-actionable-positive-subtle-foreground-hover: var(--salt-palette-foreground-primary-alt);
874
1440
  --salt-actionable-positive-subtle-foreground: var(--salt-palette-positive-strong);
875
- --salt-actionable-caution-bold-background-active: var(--salt-palette-warning-weaker);
1441
+ --salt-actionable-caution-bold-background-active: var(--salt-palette-warning-action-active);
876
1442
  --salt-actionable-caution-bold-background-disabled: var(--salt-palette-warning-disabled);
877
- --salt-actionable-caution-bold-background-hover: var(--salt-palette-warning);
1443
+ --salt-actionable-caution-bold-background-hover: var(--salt-palette-warning-action-hover);
878
1444
  --salt-actionable-caution-bold-background: var(--salt-palette-warning);
879
1445
  --salt-actionable-caution-bold-borderColor-active: var(--salt-palette-warning);
880
1446
  --salt-actionable-caution-bold-borderColor-disabled: var(--salt-palette-alpha-none);
881
- --salt-actionable-caution-bold-borderColor-hover: var(--salt-palette-alpha-contrast-high);
1447
+ --salt-actionable-caution-bold-borderColor-hover: var(--salt-palette-warning);
882
1448
  --salt-actionable-caution-bold-borderColor: var(--salt-palette-warning);
883
- --salt-actionable-caution-bold-foreground-active: var(--salt-palette-foreground-primary);
1449
+ --salt-actionable-caution-bold-foreground-active: var(--salt-palette-foreground-primary-alt);
884
1450
  --salt-actionable-caution-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
885
1451
  --salt-actionable-caution-bold-foreground-hover: var(--salt-palette-foreground-primary-alt);
886
1452
  --salt-actionable-caution-bold-foreground: var(--salt-palette-foreground-primary-alt);
887
- --salt-actionable-caution-background-active: var(--salt-palette-warning-weaker);
1453
+ --salt-actionable-caution-background-active: var(--salt-palette-warning-action-active);
888
1454
  --salt-actionable-caution-background-disabled: var(--salt-palette-alpha-none);
889
1455
  --salt-actionable-caution-background-hover: var(--salt-palette-warning-action-hover);
890
1456
  --salt-actionable-caution-background: var(--salt-palette-alpha-none);
@@ -892,11 +1458,11 @@
892
1458
  --salt-actionable-caution-borderColor-disabled: var(--salt-palette-warning-disabled);
893
1459
  --salt-actionable-caution-borderColor-hover: var(--salt-palette-warning);
894
1460
  --salt-actionable-caution-borderColor: var(--salt-palette-warning);
895
- --salt-actionable-caution-foreground-active: var(--salt-palette-foreground-primary);
1461
+ --salt-actionable-caution-foreground-active: var(--salt-palette-foreground-primary-alt);
896
1462
  --salt-actionable-caution-foreground-disabled: var(--salt-palette-warning-strong-disabled);
897
- --salt-actionable-caution-foreground-hover: var(--salt-palette-warning-stronger);
1463
+ --salt-actionable-caution-foreground-hover: var(--salt-palette-foreground-primary-alt);
898
1464
  --salt-actionable-caution-foreground: var(--salt-palette-warning-strong);
899
- --salt-actionable-caution-subtle-background-active: var(--salt-palette-warning-weaker);
1465
+ --salt-actionable-caution-subtle-background-active: var(--salt-palette-warning-action-active);
900
1466
  --salt-actionable-caution-subtle-background-disabled: var(--salt-palette-alpha-none);
901
1467
  --salt-actionable-caution-subtle-background-hover: var(--salt-palette-warning-action-hover);
902
1468
  --salt-actionable-caution-subtle-background: var(--salt-palette-alpha-none);
@@ -904,37 +1470,117 @@
904
1470
  --salt-actionable-caution-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
905
1471
  --salt-actionable-caution-subtle-borderColor-hover: var(--salt-palette-warning);
906
1472
  --salt-actionable-caution-subtle-borderColor: var(--salt-palette-alpha-none);
907
- --salt-actionable-caution-subtle-foreground-active: var(--salt-palette-foreground-primary);
1473
+ --salt-actionable-caution-subtle-foreground-active: var(--salt-palette-foreground-primary-alt);
908
1474
  --salt-actionable-caution-subtle-foreground-disabled: var(--salt-palette-warning-strong-disabled);
909
- --salt-actionable-caution-subtle-foreground-hover: var(--salt-palette-warning-stronger);
1475
+ --salt-actionable-caution-subtle-foreground-hover: var(--salt-palette-foreground-primary-alt);
910
1476
  --salt-actionable-caution-subtle-foreground: var(--salt-palette-warning-strong);
911
1477
  }
912
1478
 
913
- /* css/characteristics/category-next.css */
1479
+ /* css/next/characteristics/category.css */
914
1480
  .salt-theme.salt-theme-next {
1481
+ --salt-category-1-subtle-foreground: var(--salt-palette-categorical-1-strong);
1482
+ --salt-category-1-subtle-background: var(--salt-palette-categorical-1-weakest);
1483
+ --salt-category-1-subtle-borderColor: var(--salt-palette-categorical-1);
915
1484
  --salt-category-1-bold-foreground: var(--salt-palette-foreground-primary-alt);
1485
+ --salt-category-1-bold-background: var(--salt-palette-categorical-1);
1486
+ --salt-category-2-subtle-foreground: var(--salt-palette-categorical-2-strong);
1487
+ --salt-category-2-subtle-background: var(--salt-palette-categorical-2-weakest);
1488
+ --salt-category-2-subtle-borderColor: var(--salt-palette-categorical-2);
916
1489
  --salt-category-2-bold-foreground: var(--salt-palette-foreground-primary-alt);
1490
+ --salt-category-2-bold-background: var(--salt-palette-categorical-2);
1491
+ --salt-category-3-subtle-foreground: var(--salt-palette-categorical-3-strong);
1492
+ --salt-category-3-subtle-background: var(--salt-palette-categorical-3-weakest);
1493
+ --salt-category-3-subtle-borderColor: var(--salt-palette-categorical-3);
917
1494
  --salt-category-3-bold-foreground: var(--salt-palette-foreground-primary-alt);
1495
+ --salt-category-3-bold-background: var(--salt-palette-categorical-3);
1496
+ --salt-category-4-subtle-foreground: var(--salt-palette-categorical-4-strong);
1497
+ --salt-category-4-subtle-background: var(--salt-palette-categorical-4-weakest);
1498
+ --salt-category-4-subtle-borderColor: var(--salt-palette-categorical-4);
918
1499
  --salt-category-4-bold-foreground: var(--salt-palette-foreground-primary-alt);
1500
+ --salt-category-4-bold-background: var(--salt-palette-categorical-4);
1501
+ --salt-category-5-subtle-foreground: var(--salt-palette-categorical-5-strong);
1502
+ --salt-category-5-subtle-background: var(--salt-palette-categorical-5-weakest);
1503
+ --salt-category-5-subtle-borderColor: var(--salt-palette-categorical-5);
919
1504
  --salt-category-5-bold-foreground: var(--salt-palette-foreground-primary-alt);
1505
+ --salt-category-5-bold-background: var(--salt-palette-categorical-5);
1506
+ --salt-category-6-subtle-foreground: var(--salt-palette-categorical-6-strong);
1507
+ --salt-category-6-subtle-background: var(--salt-palette-categorical-6-weakest);
1508
+ --salt-category-6-subtle-borderColor: var(--salt-palette-categorical-6);
920
1509
  --salt-category-6-bold-foreground: var(--salt-palette-foreground-primary-alt);
1510
+ --salt-category-6-bold-background: var(--salt-palette-categorical-6);
1511
+ --salt-category-7-subtle-foreground: var(--salt-palette-categorical-7-strong);
1512
+ --salt-category-7-subtle-background: var(--salt-palette-categorical-7-weakest);
1513
+ --salt-category-7-subtle-borderColor: var(--salt-palette-categorical-7);
921
1514
  --salt-category-7-bold-foreground: var(--salt-palette-foreground-primary-alt);
1515
+ --salt-category-7-bold-background: var(--salt-palette-categorical-7);
1516
+ --salt-category-8-subtle-foreground: var(--salt-palette-categorical-8-strong);
1517
+ --salt-category-8-subtle-background: var(--salt-palette-categorical-8-weakest);
1518
+ --salt-category-8-subtle-borderColor: var(--salt-palette-categorical-8);
922
1519
  --salt-category-8-bold-foreground: var(--salt-palette-foreground-primary-alt);
1520
+ --salt-category-8-bold-background: var(--salt-palette-categorical-8);
1521
+ --salt-category-9-subtle-foreground: var(--salt-palette-categorical-9-strong);
1522
+ --salt-category-9-subtle-background: var(--salt-palette-categorical-9-weakest);
1523
+ --salt-category-9-subtle-borderColor: var(--salt-palette-categorical-9);
923
1524
  --salt-category-9-bold-foreground: var(--salt-palette-foreground-primary-alt);
1525
+ --salt-category-9-bold-background: var(--salt-palette-categorical-9);
1526
+ --salt-category-10-subtle-foreground: var(--salt-palette-categorical-10-strong);
1527
+ --salt-category-10-subtle-background: var(--salt-palette-categorical-10-weakest);
1528
+ --salt-category-10-subtle-borderColor: var(--salt-palette-categorical-10);
924
1529
  --salt-category-10-bold-foreground: var(--salt-palette-foreground-primary-alt);
1530
+ --salt-category-10-bold-background: var(--salt-palette-categorical-10);
1531
+ --salt-category-11-subtle-foreground: var(--salt-palette-categorical-11-strong);
1532
+ --salt-category-11-subtle-background: var(--salt-palette-categorical-11-weakest);
1533
+ --salt-category-11-subtle-borderColor: var(--salt-palette-categorical-11);
925
1534
  --salt-category-11-bold-foreground: var(--salt-palette-foreground-primary-alt);
1535
+ --salt-category-11-bold-background: var(--salt-palette-categorical-11);
1536
+ --salt-category-12-subtle-foreground: var(--salt-palette-categorical-12-strong);
1537
+ --salt-category-12-subtle-background: var(--salt-palette-categorical-12-weakest);
1538
+ --salt-category-12-subtle-borderColor: var(--salt-palette-categorical-12);
926
1539
  --salt-category-12-bold-foreground: var(--salt-palette-foreground-primary-alt);
1540
+ --salt-category-12-bold-background: var(--salt-palette-categorical-12);
1541
+ --salt-category-13-subtle-foreground: var(--salt-palette-categorical-13-strong);
1542
+ --salt-category-13-subtle-background: var(--salt-palette-categorical-13-weakest);
1543
+ --salt-category-13-subtle-borderColor: var(--salt-palette-categorical-13);
927
1544
  --salt-category-13-bold-foreground: var(--salt-palette-foreground-primary-alt);
1545
+ --salt-category-13-bold-background: var(--salt-palette-categorical-13);
1546
+ --salt-category-14-subtle-foreground: var(--salt-palette-categorical-14-strong);
1547
+ --salt-category-14-subtle-background: var(--salt-palette-categorical-14-weakest);
1548
+ --salt-category-14-subtle-borderColor: var(--salt-palette-categorical-14);
928
1549
  --salt-category-14-bold-foreground: var(--salt-palette-foreground-primary-alt);
1550
+ --salt-category-14-bold-background: var(--salt-palette-categorical-14);
1551
+ --salt-category-15-subtle-foreground: var(--salt-palette-categorical-15-strong);
1552
+ --salt-category-15-subtle-background: var(--salt-palette-categorical-15-weakest);
1553
+ --salt-category-15-subtle-borderColor: var(--salt-palette-categorical-15);
929
1554
  --salt-category-15-bold-foreground: var(--salt-palette-foreground-primary-alt);
1555
+ --salt-category-15-bold-background: var(--salt-palette-categorical-15);
1556
+ --salt-category-16-subtle-foreground: var(--salt-palette-categorical-16-strong);
1557
+ --salt-category-16-subtle-background: var(--salt-palette-categorical-16-weakest);
1558
+ --salt-category-16-subtle-borderColor: var(--salt-palette-categorical-16);
930
1559
  --salt-category-16-bold-foreground: var(--salt-palette-foreground-primary-alt);
1560
+ --salt-category-16-bold-background: var(--salt-palette-categorical-16);
1561
+ --salt-category-17-subtle-foreground: var(--salt-palette-categorical-17-strong);
1562
+ --salt-category-17-subtle-background: var(--salt-palette-categorical-17-weakest);
1563
+ --salt-category-17-subtle-borderColor: var(--salt-palette-categorical-17);
931
1564
  --salt-category-17-bold-foreground: var(--salt-palette-foreground-primary-alt);
1565
+ --salt-category-17-bold-background: var(--salt-palette-categorical-17);
1566
+ --salt-category-18-subtle-foreground: var(--salt-palette-categorical-18-strong);
1567
+ --salt-category-18-subtle-background: var(--salt-palette-categorical-18-weakest);
1568
+ --salt-category-18-subtle-borderColor: var(--salt-palette-categorical-18);
932
1569
  --salt-category-18-bold-foreground: var(--salt-palette-foreground-primary-alt);
1570
+ --salt-category-18-bold-background: var(--salt-palette-categorical-18);
1571
+ --salt-category-19-subtle-foreground: var(--salt-palette-categorical-19-strong);
1572
+ --salt-category-19-subtle-background: var(--salt-palette-categorical-19-weakest);
1573
+ --salt-category-19-subtle-borderColor: var(--salt-palette-categorical-19);
933
1574
  --salt-category-19-bold-foreground: var(--salt-palette-foreground-primary-alt);
1575
+ --salt-category-19-bold-background: var(--salt-palette-categorical-19);
1576
+ --salt-category-20-subtle-foreground: var(--salt-palette-categorical-20-strong);
1577
+ --salt-category-20-subtle-background: var(--salt-palette-categorical-20-weakest);
1578
+ --salt-category-20-subtle-borderColor: var(--salt-palette-categorical-20);
934
1579
  --salt-category-20-bold-foreground: var(--salt-palette-foreground-primary-alt);
1580
+ --salt-category-20-bold-background: var(--salt-palette-categorical-20);
935
1581
  }
936
1582
 
937
- /* css/characteristics/container-next.css */
1583
+ /* css/next/characteristics/container.css */
938
1584
  .salt-theme.salt-theme-next {
939
1585
  --salt-container-primary-background: var(--salt-palette-background-primary);
940
1586
  --salt-container-primary-background-disabled: var(--salt-palette-background-primary-disabled);
@@ -948,9 +1594,11 @@
948
1594
  --salt-container-tertiary-background-disabled: var(--salt-palette-background-tertiary-disabled);
949
1595
  --salt-container-tertiary-borderColor: var(--salt-palette-alpha-contrast-medium);
950
1596
  --salt-container-tertiary-borderColor-disabled: var(--salt-palette-alpha-contrast-lower);
1597
+ --salt-container-ghost-background: var(--salt-palette-alpha-medium);
1598
+ --salt-container-ghost-borderColor: var(--salt-palette-alpha-contrast-medium);
951
1599
  }
952
1600
 
953
- /* css/characteristics/content-next.css */
1601
+ /* css/next/characteristics/content.css */
954
1602
  .salt-theme.salt-theme-next {
955
1603
  --salt-content-primary-foreground: var(--salt-palette-foreground-primary);
956
1604
  --salt-content-primary-foreground-disabled: var(--salt-palette-foreground-primary-disabled);
@@ -966,7 +1614,7 @@
966
1614
  --salt-content-foreground-highlight: var(--salt-palette-accent-weaker);
967
1615
  }
968
1616
 
969
- /* css/characteristics/editable-next.css */
1617
+ /* css/next/characteristics/editable.css */
970
1618
  .salt-theme.salt-theme-next {
971
1619
  --salt-editable-borderColor: var(--salt-palette-neutral);
972
1620
  --salt-editable-borderColor-active: var(--salt-palette-accent-stronger);
@@ -985,12 +1633,17 @@
985
1633
  --salt-editable-secondary-background-readonly: var(--salt-palette-alpha-none);
986
1634
  }
987
1635
 
988
- /* css/characteristics/focused-next.css */
1636
+ /* css/next/characteristics/focused.css */
989
1637
  .salt-theme.salt-theme-next {
990
1638
  --salt-focused-outlineColor: var(--salt-palette-accent-stronger);
1639
+ --salt-focused-outlineStyle: var(--salt-borderStyle-dotted);
1640
+ --salt-focused-outlineWidth: var(--salt-size-fixed-200);
1641
+ --salt-focused-outlineInset: 0;
1642
+ --salt-focused-outlineOffset: 0;
1643
+ --salt-focused-outline: var(--salt-focused-outlineWidth) var(--salt-focused-outlineStyle) var(--salt-focused-outlineColor);
991
1644
  }
992
1645
 
993
- /* css/characteristics/navigable-next.css */
1646
+ /* css/next/characteristics/navigable.css */
994
1647
  .salt-theme.salt-theme-next {
995
1648
  --salt-navigable-indicator-hover: var(--salt-palette-neutral);
996
1649
  --salt-navigable-accent-indicator-active: var(--salt-palette-accent);
@@ -998,15 +1651,22 @@
998
1651
  --salt-navigable-accent-borderColor-active: var(--salt-palette-accent);
999
1652
  }
1000
1653
 
1001
- /* css/characteristics/overlayable-next.css */
1654
+ /* css/next/characteristics/overlayable.css */
1002
1655
  .salt-theme.salt-theme-next {
1656
+ --salt-overlayable-shadow-scroll: var(--salt-shadow-lowest);
1657
+ --salt-overlayable-shadow-region: var(--salt-shadow-lower);
1658
+ --salt-overlayable-shadow: var(--salt-shadow-lower);
1659
+ --salt-overlayable-shadow-hover: var(--salt-shadow-low);
1660
+ --salt-overlayable-shadow-popout: var(--salt-shadow-mediumLow);
1661
+ --salt-overlayable-shadow-drag: var(--salt-shadow-mediumLow);
1662
+ --salt-overlayable-shadow-modal: var(--salt-shadow-medium);
1003
1663
  --salt-overlayable-background: var(--salt-palette-alpha-higher);
1004
1664
  --salt-overlayable-background-hover: var(--salt-palette-alpha-contrast-lowest);
1005
1665
  --salt-overlayable-background-highlight: var(--salt-palette-alpha-contrast-medium);
1006
1666
  --salt-overlayable-background-rangeSelection: var(--salt-palette-alpha-contrast-mediumLow);
1007
1667
  }
1008
1668
 
1009
- /* css/characteristics/selectable-next.css */
1669
+ /* css/next/characteristics/selectable.css */
1010
1670
  .salt-theme.salt-theme-next {
1011
1671
  --salt-selectable-borderColor: var(--salt-palette-neutral);
1012
1672
  --salt-selectable-borderColor-hover: var(--salt-palette-accent-weak);
@@ -1026,7 +1686,7 @@
1026
1686
  --salt-selectable-background-selectedDisabled: var(--salt-palette-accent-weaker-disabled);
1027
1687
  }
1028
1688
 
1029
- /* css/characteristics/sentiment-next.css */
1689
+ /* css/next/characteristics/sentiment.css */
1030
1690
  .salt-theme-next.salt-theme {
1031
1691
  --salt-sentiment-negative-foreground-informative: var(--salt-palette-negative-strong);
1032
1692
  --salt-sentiment-positive-foreground-informative: var(--salt-palette-positive-strong);
@@ -1036,7 +1696,7 @@
1036
1696
  --salt-sentiment-neutral-track-disabled: var(--salt-palette-alpha-contrast-lower);
1037
1697
  }
1038
1698
 
1039
- /* css/characteristics/separable-next.css */
1699
+ /* css/next/characteristics/separable.css */
1040
1700
  .salt-theme.salt-theme-next {
1041
1701
  --salt-separable-primary-borderColor: var(--salt-palette-alpha-contrast-mediumHigh);
1042
1702
  --salt-separable-secondary-borderColor: var(--salt-palette-alpha-contrast-medium);
@@ -1049,7 +1709,7 @@
1049
1709
  --salt-separable-background-active: var(--salt-palette-accent);
1050
1710
  }
1051
1711
 
1052
- /* css/characteristics/status-next.css */
1712
+ /* css/next/characteristics/status.css */
1053
1713
  .salt-theme.salt-theme-next {
1054
1714
  --salt-status-info-foreground-decorative: var(--salt-palette-info);
1055
1715
  --salt-status-success-foreground-decorative: var(--salt-palette-positive);
@@ -1076,14 +1736,84 @@
1076
1736
  --salt-status-error-background-selected: var(--salt-palette-negative-weaker);
1077
1737
  }
1078
1738
 
1079
- /* css/characteristics/target-next.css */
1739
+ /* css/next/characteristics/target.css */
1080
1740
  .salt-theme.salt-theme-next {
1081
1741
  --salt-target-background-hover: var(--salt-palette-accent-weakest);
1082
1742
  --salt-target-borderColor-hover: var(--salt-palette-accent);
1083
1743
  }
1084
1744
 
1085
- /* css/characteristics/text-next.css */
1745
+ /* css/next/characteristics/text.css */
1746
+ .salt-theme.salt-theme-next {
1747
+ --salt-text-letterSpacing: 0;
1748
+ --salt-text-textAlign: left;
1749
+ --salt-text-textAlign-embedded: center;
1750
+ --salt-text-action-fontFamily: var(--salt-palette-text-fontFamily-action);
1751
+ --salt-text-action-letterSpacing: 0.6px;
1752
+ --salt-text-action-textTransform: uppercase;
1753
+ --salt-text-action-textAlign: center;
1754
+ --salt-text-action-fontWeight: var(--salt-palette-text-action-fontWeight);
1755
+ --salt-text-action-fontWeight-small: var(--salt-palette-text-action-fontWeight-small);
1756
+ --salt-text-action-fontWeight-strong: var(--salt-palette-text-action-fontWeight-strong);
1757
+ --salt-text-fontFamily: var(--salt-palette-text-fontFamily);
1758
+ --salt-text-fontWeight: var(--salt-palette-text-body-fontWeight);
1759
+ --salt-text-fontWeight-small: var(--salt-palette-text-body-fontWeight-small);
1760
+ --salt-text-fontWeight-strong: var(--salt-palette-text-body-fontWeight-strong);
1761
+ --salt-text-notation-fontFamily: var(--salt-palette-text-fontFamily);
1762
+ --salt-text-notation-fontWeight: var(--salt-palette-text-notation-fontWeight);
1763
+ --salt-text-notation-fontWeight-small: var(--salt-palette-text-notation-fontWeight-small);
1764
+ --salt-text-notation-fontWeight-strong: var(--salt-palette-text-notation-fontWeight-strong);
1765
+ --salt-text-h1-fontFamily: var(--salt-palette-text-fontFamily-heading);
1766
+ --salt-text-h1-fontWeight: var(--salt-palette-text-heading-fontWeight);
1767
+ --salt-text-h1-fontWeight-small: var(--salt-palette-text-heading-fontWeight-small);
1768
+ --salt-text-h1-fontWeight-strong: var(--salt-palette-text-heading-fontWeight-strong);
1769
+ --salt-text-h2-fontFamily: var(--salt-palette-text-fontFamily-heading);
1770
+ --salt-text-h2-fontWeight: var(--salt-palette-text-heading-fontWeight);
1771
+ --salt-text-h2-fontWeight-small: var(--salt-palette-text-heading-fontWeight-small);
1772
+ --salt-text-h2-fontWeight-strong: var(--salt-palette-text-heading-fontWeight-strong);
1773
+ --salt-text-h3-fontFamily: var(--salt-palette-text-fontFamily-heading);
1774
+ --salt-text-h3-fontWeight: var(--salt-palette-text-heading-fontWeight);
1775
+ --salt-text-h3-fontWeight-small: var(--salt-palette-text-heading-fontWeight-small);
1776
+ --salt-text-h3-fontWeight-strong: var(--salt-palette-text-heading-fontWeight-strong);
1777
+ --salt-text-h4-fontFamily: var(--salt-palette-text-fontFamily-heading);
1778
+ --salt-text-h4-fontWeight: var(--salt-palette-text-heading-fontWeight);
1779
+ --salt-text-h4-fontWeight-small: var(--salt-palette-text-heading-fontWeight-small);
1780
+ --salt-text-h4-fontWeight-strong: var(--salt-palette-text-heading-fontWeight-strong);
1781
+ --salt-text-label-fontFamily: var(--salt-palette-text-fontFamily);
1782
+ --salt-text-label-fontWeight: var(--salt-palette-text-body-fontWeight);
1783
+ --salt-text-label-fontWeight-small: var(--salt-palette-text-body-fontWeight-small);
1784
+ --salt-text-label-fontWeight-strong: var(--salt-palette-text-body-fontWeight-strong);
1785
+ --salt-text-display1-fontFamily: var(--salt-palette-text-fontFamily-heading);
1786
+ --salt-text-display1-fontWeight: var(--salt-palette-text-display-fontWeight);
1787
+ --salt-text-display1-fontWeight-strong: var(--salt-palette-text-display-fontWeight-strong);
1788
+ --salt-text-display1-fontWeight-small: var(--salt-palette-text-display-fontWeight-small);
1789
+ --salt-text-display2-fontFamily: var(--salt-palette-text-fontFamily-heading);
1790
+ --salt-text-display2-fontWeight: var(--salt-palette-text-display-fontWeight);
1791
+ --salt-text-display2-fontWeight-strong: var(--salt-palette-text-display-fontWeight-strong);
1792
+ --salt-text-display2-fontWeight-small: var(--salt-palette-text-display-fontWeight-small);
1793
+ --salt-text-display3-fontFamily: var(--salt-palette-text-fontFamily-heading);
1794
+ --salt-text-display3-fontWeight: var(--salt-palette-text-display-fontWeight);
1795
+ --salt-text-display3-fontWeight-strong: var(--salt-palette-text-display-fontWeight-strong);
1796
+ --salt-text-display3-fontWeight-small: var(--salt-palette-text-display-fontWeight-small);
1797
+ --salt-text-display4-fontFamily: var(--salt-palette-text-fontFamily-heading);
1798
+ --salt-text-display4-fontWeight: var(--salt-palette-text-display-fontWeight);
1799
+ --salt-text-display4-fontWeight-strong: var(--salt-palette-text-display-fontWeight-strong);
1800
+ --salt-text-display4-fontWeight-small: var(--salt-palette-text-display-fontWeight-small);
1801
+ --salt-text-code-fontFamily: var(--salt-palette-text-fontFamily-code);
1802
+ }
1086
1803
  .salt-theme-next.salt-density-touch {
1804
+ --salt-text-h1-fontSize: 42px;
1805
+ --salt-text-h1-lineHeight: 54px;
1806
+ --salt-text-h2-fontSize: 32px;
1807
+ --salt-text-h2-lineHeight: 42px;
1808
+ --salt-text-h3-fontSize: 24px;
1809
+ --salt-text-h3-lineHeight: 32px;
1810
+ --salt-text-h4-fontSize: 16px;
1811
+ --salt-text-h4-lineHeight: 20px;
1812
+ --salt-text-label-fontSize: 14px;
1813
+ --salt-text-label-lineHeight: 18px;
1814
+ --salt-text-fontSize: 16px;
1815
+ --salt-text-lineHeight: 20px;
1816
+ --salt-text-minHeight: 20px;
1087
1817
  --salt-text-display1-fontSize: 102px;
1088
1818
  --salt-text-display1-lineHeight: 133px;
1089
1819
  --salt-text-display2-fontSize: 84px;
@@ -1092,8 +1822,23 @@
1092
1822
  --salt-text-display3-lineHeight: 88px;
1093
1823
  --salt-text-display4-fontSize: 54px;
1094
1824
  --salt-text-display4-lineHeight: 70px;
1825
+ --salt-text-notation-fontSize: 14px;
1826
+ --salt-text-notation-lineHeight: 18px;
1095
1827
  }
1096
1828
  .salt-theme-next.salt-density-low {
1829
+ --salt-text-h1-fontSize: 32px;
1830
+ --salt-text-h1-lineHeight: 42px;
1831
+ --salt-text-h2-fontSize: 24px;
1832
+ --salt-text-h2-lineHeight: 32px;
1833
+ --salt-text-h3-fontSize: 18px;
1834
+ --salt-text-h3-lineHeight: 24px;
1835
+ --salt-text-h4-fontSize: 14px;
1836
+ --salt-text-h4-lineHeight: 18px;
1837
+ --salt-text-label-fontSize: 12px;
1838
+ --salt-text-label-lineHeight: 16px;
1839
+ --salt-text-fontSize: 14px;
1840
+ --salt-text-lineHeight: 18px;
1841
+ --salt-text-minHeight: 18px;
1097
1842
  --salt-text-display1-fontSize: 84px;
1098
1843
  --salt-text-display1-lineHeight: 109px;
1099
1844
  --salt-text-display2-fontSize: 68px;
@@ -1102,8 +1847,23 @@
1102
1847
  --salt-text-display3-lineHeight: 70px;
1103
1848
  --salt-text-display4-fontSize: 42px;
1104
1849
  --salt-text-display4-lineHeight: 55px;
1850
+ --salt-text-notation-fontSize: 12px;
1851
+ --salt-text-notation-lineHeight: 16px;
1105
1852
  }
1106
1853
  .salt-theme-next.salt-density-medium {
1854
+ --salt-text-h1-fontSize: 24px;
1855
+ --salt-text-h1-lineHeight: 32px;
1856
+ --salt-text-h2-fontSize: 18px;
1857
+ --salt-text-h2-lineHeight: 24px;
1858
+ --salt-text-h3-fontSize: 14px;
1859
+ --salt-text-h3-lineHeight: 18px;
1860
+ --salt-text-h4-fontSize: 12px;
1861
+ --salt-text-h4-lineHeight: 16px;
1862
+ --salt-text-label-fontSize: 11px;
1863
+ --salt-text-label-lineHeight: 14px;
1864
+ --salt-text-fontSize: 12px;
1865
+ --salt-text-lineHeight: 16px;
1866
+ --salt-text-minHeight: 16px;
1107
1867
  --salt-text-display1-fontSize: 68px;
1108
1868
  --salt-text-display1-lineHeight: 88px;
1109
1869
  --salt-text-display2-fontSize: 54px;
@@ -1112,8 +1872,23 @@
1112
1872
  --salt-text-display3-lineHeight: 55px;
1113
1873
  --salt-text-display4-fontSize: 32px;
1114
1874
  --salt-text-display4-lineHeight: 42px;
1875
+ --salt-text-notation-fontSize: 10px;
1876
+ --salt-text-notation-lineHeight: 13px;
1115
1877
  }
1116
1878
  .salt-theme-next.salt-density-high {
1879
+ --salt-text-h1-fontSize: 18px;
1880
+ --salt-text-h1-lineHeight: 24px;
1881
+ --salt-text-h2-fontSize: 14px;
1882
+ --salt-text-h2-lineHeight: 18px;
1883
+ --salt-text-h3-fontSize: 12px;
1884
+ --salt-text-h3-lineHeight: 16px;
1885
+ --salt-text-h4-fontSize: 11px;
1886
+ --salt-text-h4-lineHeight: 14px;
1887
+ --salt-text-label-fontSize: 10px;
1888
+ --salt-text-label-lineHeight: 13px;
1889
+ --salt-text-fontSize: 11px;
1890
+ --salt-text-lineHeight: 14px;
1891
+ --salt-text-minHeight: 14px;
1117
1892
  --salt-text-display1-fontSize: 54px;
1118
1893
  --salt-text-display1-lineHeight: 70px;
1119
1894
  --salt-text-display2-fontSize: 42px;
@@ -1122,9 +1897,234 @@
1122
1897
  --salt-text-display3-lineHeight: 42px;
1123
1898
  --salt-text-display4-fontSize: 24px;
1124
1899
  --salt-text-display4-lineHeight: 32px;
1900
+ --salt-text-notation-fontSize: 8px;
1901
+ --salt-text-notation-lineHeight: 10px;
1125
1902
  }
1126
1903
 
1127
- /* css/deprecated/characteristics-next.css */
1904
+ /* css/deprecated/foundations.css */
1905
+ .salt-theme {
1906
+ --salt-delay-instant: 100ms;
1907
+ --salt-delay-perceptible: 300ms;
1908
+ --salt-delay-notable: 1000ms;
1909
+ --salt-delay-cutoff: 10000ms;
1910
+ --salt-size-icon-base: var(--salt-icon-size-base);
1911
+ --salt-opacity-1: 0.15;
1912
+ --salt-opacity-2: 0.25;
1913
+ --salt-opacity-3: 0.4;
1914
+ --salt-opacity-4: 0.7;
1915
+ --salt-opacity-8: 0.08;
1916
+ --salt-opacity-0: 0;
1917
+ --salt-opacity-15: 0.15;
1918
+ --salt-opacity-25: 0.25;
1919
+ --salt-opacity-40: 0.4;
1920
+ --salt-opacity-45: 0.45;
1921
+ --salt-opacity-70: 0.7;
1922
+ --salt-shadow-0: none;
1923
+ --salt-shadow-1: 0 1px 3px 0 var(--salt-shadow-1-color);
1924
+ --salt-shadow-2: 0 2px 4px 0 var(--salt-shadow-2-color);
1925
+ --salt-shadow-3: 0 4px 8px 0 var(--salt-shadow-3-color);
1926
+ --salt-shadow-4: 0 6px 10px 0 var(--salt-shadow-4-color);
1927
+ --salt-shadow-5: 0 12px 40px 0 var(--salt-shadow-5-color);
1928
+ --salt-shadow-100: 0 1px 3px 0 var(--salt-shadow-100-color);
1929
+ --salt-shadow-200: 0 2px 4px 0 var(--salt-shadow-200-color);
1930
+ --salt-shadow-300: 0 4px 8px 0 var(--salt-shadow-300-color);
1931
+ --salt-shadow-400: 0 6px 10px 0 var(--salt-shadow-400-color);
1932
+ --salt-shadow-500: 0 12px 40px 0 var(--salt-shadow-500-color);
1933
+ --salt-typography-fontFamily: var(--salt-typography-fontFamily-openSans);
1934
+ --salt-typography-fontFamily-code: var(--salt-typography-fontFamily-ptMono);
1935
+ --salt-color-black-15a: rgba(var(--salt-color-black-rgb), 0.15);
1936
+ --salt-color-black-45a: rgba(var(--salt-color-black-rgb), 0.45);
1937
+ --salt-color-black-60a: rgba(var(--salt-color-black-rgb), 0.6);
1938
+ --salt-color-black-70a: rgba(var(--salt-color-black-rgb), 0.7);
1939
+ --salt-color-black-90a: rgba(var(--salt-color-black-rgb), 0.9);
1940
+ --salt-color-white-15a: rgba(var(--salt-color-white-rgb), 0.15);
1941
+ --salt-color-white-45a: rgba(var(--salt-color-white-rgb), 0.45);
1942
+ --salt-color-white-60a: rgba(var(--salt-color-white-rgb), 0.6);
1943
+ --salt-color-white-70a: rgba(var(--salt-color-white-rgb), 0.7);
1944
+ --salt-color-white-90a: rgba(var(--salt-color-white-rgb), 0.9);
1945
+ }
1946
+ .salt-theme[data-mode=light] {
1947
+ --salt-shadow-1-color: rgba(0, 0, 0, 0.1);
1948
+ --salt-shadow-2-color: rgba(0, 0, 0, 0.1);
1949
+ --salt-shadow-3-color: rgba(0, 0, 0, 0.15);
1950
+ --salt-shadow-4-color: rgba(0, 0, 0, 0.2);
1951
+ --salt-shadow-5-color: rgba(0, 0, 0, 0.3);
1952
+ --salt-shadow-100-color: rgba(0, 0, 0, 0.1);
1953
+ --salt-shadow-200-color: rgba(0, 0, 0, 0.1);
1954
+ --salt-shadow-300-color: rgba(0, 0, 0, 0.15);
1955
+ --salt-shadow-400-color: rgba(0, 0, 0, 0.2);
1956
+ --salt-shadow-500-color: rgba(0, 0, 0, 0.3);
1957
+ }
1958
+ .salt-theme[data-mode=dark] {
1959
+ --salt-shadow-1-color: rgba(0, 0, 0, 0.5);
1960
+ --salt-shadow-2-color: rgba(0, 0, 0, 0.5);
1961
+ --salt-shadow-3-color: rgba(0, 0, 0, 0.55);
1962
+ --salt-shadow-4-color: rgba(0, 0, 0, 0.55);
1963
+ --salt-shadow-5-color: rgba(0, 0, 0, 0.65);
1964
+ --salt-shadow-100-color: rgba(0, 0, 0, 0.5);
1965
+ --salt-shadow-200-color: rgba(0, 0, 0, 0.5);
1966
+ --salt-shadow-300-color: rgba(0, 0, 0, 0.55);
1967
+ --salt-shadow-400-color: rgba(0, 0, 0, 0.55);
1968
+ --salt-shadow-500-color: rgba(0, 0, 0, 0.65);
1969
+ }
1970
+ .salt-density-touch,
1971
+ .salt-density-low,
1972
+ .salt-density-medium,
1973
+ .salt-density-high {
1974
+ --salt-size-selection: var(--salt-size-selectable);
1975
+ --salt-size-brandBar: 4px;
1976
+ --salt-size-graphic-small: 12px;
1977
+ --salt-size-graphic-medium: 24px;
1978
+ --salt-size-graphic-large: 48px;
1979
+ --salt-size-divider-height: var(--salt-size-separator-height);
1980
+ --salt-size-divider-strokeWidth: var(--salt-size-separator-strokeWidth);
1981
+ --salt-size-detail: var(--salt-size-compact);
1982
+ --salt-size-basis-unit: 4px;
1983
+ --salt-size-adornmentGap: calc(0.75 * var(--salt-size-unit));
1984
+ --salt-size-container-spacing: calc(3 * var(--salt-size-unit));
1985
+ --salt-size-separator-strokeWidth: 1px;
1986
+ --salt-size-separator-height: calc(var(--salt-size-compact) + 1.5 * var(--salt-size-basis-unit));
1987
+ --salt-size-sharktooth-height: 5px;
1988
+ --salt-size-sharktooth-width: 10px;
1989
+ --salt-size-stackable: calc(var(--salt-size-base) + var(--salt-size-unit));
1990
+ --salt-size-border: 1px;
1991
+ --salt-size-bar-small: 2px;
1992
+ --salt-size-border-strong: 2px;
1993
+ --salt-zIndex-docked: 1050;
1994
+ }
1995
+ .salt-density-high {
1996
+ --salt-size-unit: calc(var(--salt-size-basis-unit) * 1);
1997
+ --salt-size-compact: calc(var(--salt-size-basis-unit) * 1.5);
1998
+ --salt-size-accent: calc(var(--salt-size-basis-unit) * 0.5);
1999
+ --salt-icon-size-base: 10px;
2000
+ --salt-icon-size-status-adornment: 6px;
2001
+ }
2002
+ .salt-density-medium {
2003
+ --salt-size-unit: calc(var(--salt-size-basis-unit) * 2);
2004
+ --salt-size-compact: calc(var(--salt-size-basis-unit) * 2);
2005
+ --salt-size-accent: calc(var(--salt-size-basis-unit) * 1);
2006
+ --salt-icon-size-base: 12px;
2007
+ --salt-icon-size-status-adornment: 8px;
2008
+ }
2009
+ .salt-density-low {
2010
+ --salt-size-unit: calc(var(--salt-size-basis-unit) * 3);
2011
+ --salt-size-compact: calc(var(--salt-size-basis-unit) * 2.5);
2012
+ --salt-size-accent: calc(var(--salt-size-basis-unit) * 1.5);
2013
+ --salt-icon-size-base: 14px;
2014
+ --salt-icon-size-status-adornment: 10px;
2015
+ }
2016
+ .salt-density-touch {
2017
+ --salt-size-unit: calc(var(--salt-size-basis-unit) * 4);
2018
+ --salt-size-compact: calc(var(--salt-size-basis-unit) * 3);
2019
+ --salt-size-accent: calc(var(--salt-size-basis-unit) * 2);
2020
+ --salt-icon-size-base: 16px;
2021
+ --salt-icon-size-status-adornment: 12px;
2022
+ }
2023
+
2024
+ /* css/deprecated/characteristics.css */
2025
+ .salt-theme {
2026
+ --salt-container-borderStyle: solid;
2027
+ --salt-editable-borderStyle: solid;
2028
+ --salt-editable-borderStyle-hover: solid;
2029
+ --salt-editable-borderStyle-active: solid;
2030
+ --salt-editable-borderStyle-disabled: solid;
2031
+ --salt-editable-borderStyle-readonly: solid;
2032
+ --salt-editable-cursor-hover: text;
2033
+ --salt-editable-cursor-active: text;
2034
+ --salt-editable-cursor-disabled: not-allowed;
2035
+ --salt-editable-cursor-readonly: text;
2036
+ --salt-editable-borderWidth-active: 2px;
2037
+ --salt-editable-help-fontStyle: italic;
2038
+ --salt-measured-borderStyle: solid;
2039
+ --salt-measured-borderStyle-active: solid;
2040
+ --salt-measured-borderStyle-complete: solid;
2041
+ --salt-measured-borderStyle-incomplete: dotted;
2042
+ --salt-measured-borderWidth: 2px;
2043
+ --salt-measured-borderWidth-active: 2px;
2044
+ --salt-measured-borderWidth-complete: 2px;
2045
+ --salt-measured-borderWidth-incomplete: 2px;
2046
+ --salt-measured-fontWeight: var(--salt-typography-fontWeight-semiBold);
2047
+ --salt-measured-textAlign: center;
2048
+ --salt-selectable-borderStyle: solid;
2049
+ --salt-selectable-borderStyle-hover: solid;
2050
+ --salt-selectable-borderStyle-selected: solid;
2051
+ --salt-selectable-borderStyle-blurSelected: solid;
2052
+ --salt-selectable-cursor-hover: pointer;
2053
+ --salt-selectable-cursor-selected: pointer;
2054
+ --salt-selectable-cursor-blurSelected: pointer;
2055
+ --salt-selectable-cursor-disabled: not-allowed;
2056
+ --salt-selectable-cursor-readonly: not-allowed;
2057
+ --salt-separable-borderStyle: solid;
2058
+ --salt-draggable-horizontal-cursor-hover: row-resize;
2059
+ --salt-draggable-horizontal-cursor-active: row-resize;
2060
+ --salt-draggable-vertical-cursor-hover: col-resize;
2061
+ --salt-draggable-vertical-cursor-active: col-resize;
2062
+ --salt-draggable-grab-cursor-hover: grab;
2063
+ --salt-draggable-grab-cursor-active: grabbing;
2064
+ --salt-actionable-cursor-hover: pointer;
2065
+ --salt-actionable-cursor-active: pointer;
2066
+ --salt-actionable-cursor-disabled: not-allowed;
2067
+ --salt-actionable-letterSpacing: 0.6px;
2068
+ --salt-actionable-textTransform: uppercase;
2069
+ --salt-actionable-textAlign: center;
2070
+ --salt-actionable-primary-fontWeight: var(--salt-typography-fontWeight-bold);
2071
+ --salt-actionable-cta-fontWeight: var(--salt-typography-fontWeight-bold);
2072
+ --salt-actionable-secondary-fontWeight: var(--salt-typography-fontWeight-semiBold);
2073
+ --salt-target-cursor-disabled: not-allowed;
2074
+ --salt-target-borderStyle: dashed;
2075
+ --salt-target-borderStyle-hover: solid;
2076
+ --salt-target-borderStyle-disabled: dashed;
2077
+ --salt-text-link-textDecoration: underline;
2078
+ --salt-text-link-textDecoration-hover: none;
2079
+ --salt-text-link-textDecoration-selected: underline;
2080
+ --salt-text-textDecoration: var(--salt-typography-textDecoration-none);
2081
+ --salt-text-textTransform: none;
2082
+ --salt-navigable-cursor-active: pointer;
2083
+ --salt-navigable-cursor-hover: pointer;
2084
+ --salt-navigable-cursor-disabled: not-allowed;
2085
+ --salt-navigable-cursor-edit: text;
2086
+ --salt-navigable-textDecoration: var(--salt-typography-textDecoration-underline);
2087
+ --salt-navigable-textDecoration-hover: var(--salt-typography-textDecoration-none);
2088
+ --salt-navigable-textDecoration-selected: var(--salt-typography-textDecoration-underline);
2089
+ --salt-navigable-fontWeight: var(--salt-typography-fontWeight-regular);
2090
+ --salt-navigable-fontWeight-hover: var(--salt-typography-fontWeight-regular);
2091
+ --salt-navigable-fontWeight-active: var(--salt-typography-fontWeight-semiBold);
2092
+ --salt-navigable-fontWeight-edit: var(--salt-typography-fontWeight-regular);
2093
+ --salt-accent-fontWeight: var(--salt-typography-fontWeight-semiBold);
2094
+ --salt-track-borderStyle: solid;
2095
+ --salt-track-borderStyle-active: solid;
2096
+ --salt-track-borderStyle-complete: solid;
2097
+ --salt-track-borderStyle-incomplete: dotted;
2098
+ --salt-track-borderWidth: 2px;
2099
+ --salt-track-borderWidth-active: 2px;
2100
+ --salt-track-borderWidth-complete: 2px;
2101
+ --salt-track-borderWidth-incomplete: 2px;
2102
+ --salt-track-fontWeight: var(--salt-typography-fontWeight-semiBold);
2103
+ --salt-track-textAlign: center;
2104
+ --salt-taggable-cursor-hover: pointer;
2105
+ --salt-taggable-cursor-active: pointer;
2106
+ --salt-taggable-cursor-disabled: not-allowed;
2107
+ --salt-overlayable-shadow-scroll-color: var(--salt-shadow-1-color);
2108
+ --salt-overlayable-shadow-borderRegion: var(--salt-shadow-2);
2109
+ }
2110
+ .salt-density-high {
2111
+ --salt-accent-fontSize: 8px;
2112
+ --salt-accent-lineHeight: 11px;
2113
+ }
2114
+ .salt-density-medium {
2115
+ --salt-accent-fontSize: 10px;
2116
+ --salt-accent-lineHeight: 13px;
2117
+ }
2118
+ .salt-density-low {
2119
+ --salt-accent-fontSize: 12px;
2120
+ --salt-accent-lineHeight: 16px;
2121
+ }
2122
+ .salt-density-touch {
2123
+ --salt-accent-fontSize: 14px;
2124
+ --salt-accent-lineHeight: 18px;
2125
+ }
2126
+
2127
+ /* css/next/deprecated/characteristics.css */
1128
2128
  .salt-theme.salt-theme-next {
1129
2129
  --salt-navigable-indicator-active: var(--salt-palette-accent);
1130
2130
  --salt-navigable-background-hover: var(--salt-palette-alpha-contrast-lowest);
@@ -1136,13 +2136,13 @@
1136
2136
  --salt-track-borderColor-disabled: var(--salt-palette-alpha-contrast-lower);
1137
2137
  }
1138
2138
 
1139
- /* css/deprecated/foundations-next.css */
2139
+ /* css/next/deprecated/foundations.css */
1140
2140
  .salt-theme.salt-theme-next {
1141
2141
  --salt-color-background-gradientlight-rgb: var(--salt-color-background-titanium-rgb);
1142
2142
  --salt-color-background-gradientlight: var(--salt-color-background-titanium);
1143
2143
  }
1144
2144
 
1145
- /* css/deprecated/palette-next.css */
2145
+ /* css/next/deprecated/palette.css */
1146
2146
  .salt-theme[data-mode=light] {
1147
2147
  --salt-palette-foreground-active: var(--salt-color-blue-700);
1148
2148
  --salt-palette-foreground-hover: var(--salt-color-blue-600);
@@ -1150,9 +2150,6 @@
1150
2150
  --salt-palette-positive-weak: var(--salt-color-green-100);
1151
2151
  --salt-palette-info-weak: var(--salt-color-blue-100);
1152
2152
  --salt-palette-negative-weak: var(--salt-color-red-100);
1153
- --salt-palette-warning-action-active: var(--salt-color-orange-800);
1154
- --salt-palette-neutral-action-active: var(--salt-color-gray-800);
1155
- --salt-palette-positive-action-active: var(--salt-color-green-800);
1156
2153
  }
1157
2154
  .salt-theme[data-mode=dark] {
1158
2155
  --salt-palette-foreground-active: var(--salt-color-blue-300);
@@ -1161,25 +2158,6 @@
1161
2158
  --salt-palette-positive-weak: var(--salt-color-green-900);
1162
2159
  --salt-palette-info-weak: var(--salt-color-blue-900);
1163
2160
  --salt-palette-negative-weak: var(--salt-color-red-900);
1164
- --salt-palette-warning-action-active: var(--salt-color-orange-800);
1165
- --salt-palette-neutral-action-active: var(--salt-color-gray-800);
1166
- --salt-palette-positive-action-active: var(--salt-color-green-800);
1167
- }
1168
- .salt-theme.salt-theme-next[data-mode=light][data-accent=blue] {
1169
- --salt-palette-accent-action-active: var(--salt-color-blue-800);
1170
- --salt-palette-accent-action-hover: var(--salt-color-blue-100);
1171
- }
1172
- .salt-theme.salt-theme-next[data-mode=dark][data-accent=blue] {
1173
- --salt-palette-accent-action-active: var(--salt-color-blue-800);
1174
- --salt-palette-accent-action-hover: var(--salt-color-blue-900);
1175
- }
1176
- .salt-theme.salt-theme-next[data-mode=light][data-accent=teal] {
1177
- --salt-palette-accent-action-active: var(--salt-color-teal-800);
1178
- --salt-palette-accent-action-hover: var(--salt-color-teal-100);
1179
- }
1180
- .salt-theme.salt-theme-next[data-mode=dark][data-accent=teal] {
1181
- --salt-palette-accent-action-active: var(--salt-color-teal-800);
1182
- --salt-palette-accent-action-hover: var(--salt-color-teal-900);
1183
2161
  }
1184
2162
 
1185
2163
  /* css/theme-next.css */