@salt-ds/theme 1.33.0 → 1.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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,69 +825,97 @@
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);
460
832
  --salt-palette-accent-strong: var(--salt-color-blue-600);
461
- --salt-palette-accent-strong-disabled: var(--salt-color-blue-600-40a);
462
833
  --salt-palette-accent-stronger: var(--salt-color-blue-700);
463
- --salt-palette-accent-stronger-disabled: var(--salt-color-blue-700-40a);
464
834
  --salt-palette-accent-strongest: var(--salt-color-blue-800);
465
835
  --salt-palette-accent-weak: var(--salt-color-blue-400);
466
836
  --salt-palette-accent-weaker: var(--salt-color-blue-200);
467
837
  --salt-palette-accent-weaker-disabled: var(--salt-color-blue-200-40a);
468
838
  --salt-palette-accent-weakest: var(--salt-color-blue-100);
469
- --salt-palette-accent-action-hover: var(--salt-color-blue-600);
470
- --salt-palette-accent-action-active: var(--salt-color-blue-800);
471
839
  }
472
840
  .salt-theme.salt-theme-next[data-mode=dark][data-accent=blue] {
473
841
  --salt-palette-accent: var(--salt-color-blue-500);
474
842
  --salt-palette-accent-disabled: var(--salt-color-blue-500-40a);
475
843
  --salt-palette-accent-strong: var(--salt-color-blue-400);
476
- --salt-palette-accent-strong-disabled: var(--salt-color-blue-400-40a);
477
844
  --salt-palette-accent-stronger: var(--salt-color-blue-300);
478
- --salt-palette-accent-stronger-disabled: var(--salt-color-blue-300-40a);
479
845
  --salt-palette-accent-strongest: var(--salt-color-blue-200);
480
846
  --salt-palette-accent-weak: var(--salt-color-blue-600);
481
847
  --salt-palette-accent-weaker: var(--salt-color-blue-800);
482
848
  --salt-palette-accent-weaker-disabled: var(--salt-color-blue-800-40a);
483
849
  --salt-palette-accent-weakest: var(--salt-color-blue-900);
484
- --salt-palette-accent-action-hover: var(--salt-color-blue-600);
485
- --salt-palette-accent-action-active: var(--salt-color-blue-800);
486
850
  }
487
851
  .salt-theme.salt-theme-next[data-mode=light][data-accent=teal] {
488
852
  --salt-palette-accent: var(--salt-color-teal-500);
489
853
  --salt-palette-accent-disabled: var(--salt-color-teal-500-40a);
490
854
  --salt-palette-accent-strong: var(--salt-color-teal-600);
491
- --salt-palette-accent-strong-disabled: var(--salt-color-teal-600-40a);
492
855
  --salt-palette-accent-stronger: var(--salt-color-teal-700);
493
- --salt-palette-accent-stronger-disabled: var(--salt-color-teal-700-40a);
494
856
  --salt-palette-accent-strongest: var(--salt-color-teal-800);
495
857
  --salt-palette-accent-weak: var(--salt-color-teal-400);
496
858
  --salt-palette-accent-weaker: var(--salt-color-teal-200);
497
859
  --salt-palette-accent-weaker-disabled: var(--salt-color-teal-200-40a);
498
860
  --salt-palette-accent-weakest: var(--salt-color-teal-100);
499
- --salt-palette-accent-action-hover: var(--salt-color-teal-600);
500
- --salt-palette-accent-action-active: var(--salt-color-teal-800);
501
861
  }
502
862
  .salt-theme.salt-theme-next[data-mode=dark][data-accent=teal] {
503
863
  --salt-palette-accent: var(--salt-color-teal-500);
504
864
  --salt-palette-accent-disabled: var(--salt-color-teal-500-40a);
505
865
  --salt-palette-accent-strong: var(--salt-color-teal-400);
506
- --salt-palette-accent-strong-disabled: var(--salt-color-teal-400-40a);
507
866
  --salt-palette-accent-stronger: var(--salt-color-teal-300);
508
- --salt-palette-accent-stronger-disabled: var(--salt-color-teal-300-40a);
509
867
  --salt-palette-accent-strongest: var(--salt-color-teal-200);
510
868
  --salt-palette-accent-weak: var(--salt-color-teal-600);
511
869
  --salt-palette-accent-weaker: var(--salt-color-teal-800);
512
870
  --salt-palette-accent-weaker-disabled: var(--salt-color-teal-800-40a);
513
871
  --salt-palette-accent-weakest: var(--salt-color-teal-900);
514
- --salt-palette-accent-action-hover: var(--salt-color-teal-600);
515
- --salt-palette-accent-action-active: var(--salt-color-teal-800);
516
872
  }
517
873
 
518
- /* css/palette/background-next.css */
874
+ /* css/next/palette/alpha.css */
875
+ .salt-theme-next[data-mode=light] {
876
+ --salt-palette-alpha-highest: var(--salt-color-white-80a);
877
+ --salt-palette-alpha-higher: var(--salt-color-white-65a);
878
+ --salt-palette-alpha-high: var(--salt-color-white-50a);
879
+ --salt-palette-alpha-mediumHigh: var(--salt-color-white-40a);
880
+ --salt-palette-alpha-medium: var(--salt-color-white-30a);
881
+ --salt-palette-alpha-mediumLow: var(--salt-color-white-20a);
882
+ --salt-palette-alpha-low: var(--salt-color-white-15a);
883
+ --salt-palette-alpha-lower: var(--salt-color-white-10a);
884
+ --salt-palette-alpha-lowest: var(--salt-color-white-5a);
885
+ --salt-palette-alpha-contrast-highest: var(--salt-color-black-80a);
886
+ --salt-palette-alpha-contrast-higher: var(--salt-color-black-65a);
887
+ --salt-palette-alpha-contrast-high: var(--salt-color-black-50a);
888
+ --salt-palette-alpha-contrast-mediumHigh: var(--salt-color-black-40a);
889
+ --salt-palette-alpha-contrast-medium: var(--salt-color-black-30a);
890
+ --salt-palette-alpha-contrast-mediumLow: var(--salt-color-black-20a);
891
+ --salt-palette-alpha-contrast-low: var(--salt-color-black-15a);
892
+ --salt-palette-alpha-contrast-lower: var(--salt-color-black-10a);
893
+ --salt-palette-alpha-contrast-lowest: var(--salt-color-black-5a);
894
+ --salt-palette-alpha-none: transparent;
895
+ }
896
+ .salt-theme-next[data-mode=dark] {
897
+ --salt-palette-alpha-highest: var(--salt-color-black-80a);
898
+ --salt-palette-alpha-higher: var(--salt-color-black-65a);
899
+ --salt-palette-alpha-high: var(--salt-color-black-50a);
900
+ --salt-palette-alpha-mediumHigh: var(--salt-color-black-40a);
901
+ --salt-palette-alpha-medium: var(--salt-color-black-30a);
902
+ --salt-palette-alpha-mediumLow: var(--salt-color-black-20a);
903
+ --salt-palette-alpha-low: var(--salt-color-black-15a);
904
+ --salt-palette-alpha-lower: var(--salt-color-black-10a);
905
+ --salt-palette-alpha-lowest: var(--salt-color-black-5a);
906
+ --salt-palette-alpha-contrast-highest: var(--salt-color-white-80a);
907
+ --salt-palette-alpha-contrast-higher: var(--salt-color-white-65a);
908
+ --salt-palette-alpha-contrast-high: var(--salt-color-white-50a);
909
+ --salt-palette-alpha-contrast-mediumHigh: var(--salt-color-white-40a);
910
+ --salt-palette-alpha-contrast-medium: var(--salt-color-white-30a);
911
+ --salt-palette-alpha-contrast-mediumLow: var(--salt-color-white-20a);
912
+ --salt-palette-alpha-contrast-low: var(--salt-color-white-15a);
913
+ --salt-palette-alpha-contrast-lower: var(--salt-color-white-10a);
914
+ --salt-palette-alpha-contrast-lowest: var(--salt-color-white-5a);
915
+ --salt-palette-alpha-none: transparent;
916
+ }
917
+
918
+ /* css/next/palette/background.css */
519
919
  .salt-theme.salt-theme-next[data-mode=light] {
520
920
  --salt-palette-background-primary: var(--salt-color-background-snow);
521
921
  --salt-palette-background-primary-disabled: var(--salt-color-background-snow-40a);
@@ -533,7 +933,133 @@
533
933
  --salt-palette-background-tertiary-disabled: var(--salt-color-background-leather-40a);
534
934
  }
535
935
 
536
- /* css/palette/corner-next.css */
936
+ /* css/next/palette/categorical.css */
937
+ .salt-theme.salt-theme-next[data-mode=light] {
938
+ --salt-palette-categorical-1: var(--salt-color-cobalt-500);
939
+ --salt-palette-categorical-1-strong: var(--salt-color-cobalt-600);
940
+ --salt-palette-categorical-1-weakest: var(--salt-color-cobalt-100);
941
+ --salt-palette-categorical-2: var(--salt-color-cider-500);
942
+ --salt-palette-categorical-2-strong: var(--salt-color-cider-600);
943
+ --salt-palette-categorical-2-weakest: var(--salt-color-cider-100);
944
+ --salt-palette-categorical-3: var(--salt-color-plum-500);
945
+ --salt-palette-categorical-3-strong: var(--salt-color-plum-600);
946
+ --salt-palette-categorical-3-weakest: var(--salt-color-plum-100);
947
+ --salt-palette-categorical-4: var(--salt-color-aqua-500);
948
+ --salt-palette-categorical-4-strong: var(--salt-color-aqua-600);
949
+ --salt-palette-categorical-4-weakest: var(--salt-color-aqua-100);
950
+ --salt-palette-categorical-5: var(--salt-color-slate-500);
951
+ --salt-palette-categorical-5-strong: var(--salt-color-slate-600);
952
+ --salt-palette-categorical-5-weakest: var(--salt-color-slate-100);
953
+ --salt-palette-categorical-6: var(--salt-color-rose-500);
954
+ --salt-palette-categorical-6-strong: var(--salt-color-rose-600);
955
+ --salt-palette-categorical-6-weakest: var(--salt-color-rose-100);
956
+ --salt-palette-categorical-7: var(--salt-color-olive-500);
957
+ --salt-palette-categorical-7-strong: var(--salt-color-olive-600);
958
+ --salt-palette-categorical-7-weakest: var(--salt-color-olive-100);
959
+ --salt-palette-categorical-8: var(--salt-color-salmon-500);
960
+ --salt-palette-categorical-8-strong: var(--salt-color-salmon-600);
961
+ --salt-palette-categorical-8-weakest: var(--salt-color-salmon-100);
962
+ --salt-palette-categorical-9: var(--salt-color-indigo-500);
963
+ --salt-palette-categorical-9-strong: var(--salt-color-indigo-600);
964
+ --salt-palette-categorical-9-weakest: var(--salt-color-indigo-100);
965
+ --salt-palette-categorical-10: var(--salt-color-jade-500);
966
+ --salt-palette-categorical-10-strong: var(--salt-color-jade-600);
967
+ --salt-palette-categorical-10-weakest: var(--salt-color-jade-100);
968
+ --salt-palette-categorical-11: var(--salt-color-citrine-500);
969
+ --salt-palette-categorical-11-strong: var(--salt-color-citrine-600);
970
+ --salt-palette-categorical-11-weakest: var(--salt-color-citrine-100);
971
+ --salt-palette-categorical-12: var(--salt-color-autumn-500);
972
+ --salt-palette-categorical-12-strong: var(--salt-color-autumn-600);
973
+ --salt-palette-categorical-12-weakest: var(--salt-color-autumn-100);
974
+ --salt-palette-categorical-13: var(--salt-color-lavender-500);
975
+ --salt-palette-categorical-13-strong: var(--salt-color-lavender-600);
976
+ --salt-palette-categorical-13-weakest: var(--salt-color-lavender-100);
977
+ --salt-palette-categorical-14: var(--salt-color-ocean-500);
978
+ --salt-palette-categorical-14-strong: var(--salt-color-ocean-600);
979
+ --salt-palette-categorical-14-weakest: var(--salt-color-ocean-100);
980
+ --salt-palette-categorical-15: var(--salt-color-smoke-500);
981
+ --salt-palette-categorical-15-strong: var(--salt-color-smoke-600);
982
+ --salt-palette-categorical-15-weakest: var(--salt-color-smoke-100);
983
+ --salt-palette-categorical-16: var(--salt-color-fuchsia-500);
984
+ --salt-palette-categorical-16-strong: var(--salt-color-fuchsia-600);
985
+ --salt-palette-categorical-16-weakest: var(--salt-color-fuchsia-100);
986
+ --salt-palette-categorical-17: var(--salt-color-lime-500);
987
+ --salt-palette-categorical-17-strong: var(--salt-color-lime-600);
988
+ --salt-palette-categorical-17-weakest: var(--salt-color-lime-100);
989
+ --salt-palette-categorical-18: var(--salt-color-fur-500);
990
+ --salt-palette-categorical-18-strong: var(--salt-color-fur-600);
991
+ --salt-palette-categorical-18-weakest: var(--salt-color-fur-100);
992
+ --salt-palette-categorical-19: var(--salt-color-violet-500);
993
+ --salt-palette-categorical-19-strong: var(--salt-color-violet-600);
994
+ --salt-palette-categorical-19-weakest: var(--salt-color-violet-100);
995
+ --salt-palette-categorical-20: var(--salt-color-forest-500);
996
+ --salt-palette-categorical-20-strong: var(--salt-color-forest-600);
997
+ --salt-palette-categorical-20-weakest: var(--salt-color-forest-100);
998
+ }
999
+ .salt-theme.salt-theme-next[data-mode=dark] {
1000
+ --salt-palette-categorical-1: var(--salt-color-cobalt-500);
1001
+ --salt-palette-categorical-1-strong: var(--salt-color-cobalt-400);
1002
+ --salt-palette-categorical-1-weakest: var(--salt-color-cobalt-900);
1003
+ --salt-palette-categorical-2: var(--salt-color-cider-500);
1004
+ --salt-palette-categorical-2-strong: var(--salt-color-cider-400);
1005
+ --salt-palette-categorical-2-weakest: var(--salt-color-cider-900);
1006
+ --salt-palette-categorical-3: var(--salt-color-plum-500);
1007
+ --salt-palette-categorical-3-strong: var(--salt-color-plum-400);
1008
+ --salt-palette-categorical-3-weakest: var(--salt-color-plum-900);
1009
+ --salt-palette-categorical-4: var(--salt-color-aqua-500);
1010
+ --salt-palette-categorical-4-strong: var(--salt-color-aqua-400);
1011
+ --salt-palette-categorical-4-weakest: var(--salt-color-aqua-900);
1012
+ --salt-palette-categorical-5: var(--salt-color-slate-500);
1013
+ --salt-palette-categorical-5-strong: var(--salt-color-slate-400);
1014
+ --salt-palette-categorical-5-weakest: var(--salt-color-slate-900);
1015
+ --salt-palette-categorical-6: var(--salt-color-rose-500);
1016
+ --salt-palette-categorical-6-strong: var(--salt-color-rose-400);
1017
+ --salt-palette-categorical-6-weakest: var(--salt-color-rose-900);
1018
+ --salt-palette-categorical-7: var(--salt-color-olive-500);
1019
+ --salt-palette-categorical-7-strong: var(--salt-color-olive-400);
1020
+ --salt-palette-categorical-7-weakest: var(--salt-color-olive-900);
1021
+ --salt-palette-categorical-8: var(--salt-color-salmon-500);
1022
+ --salt-palette-categorical-8-strong: var(--salt-color-salmon-400);
1023
+ --salt-palette-categorical-8-weakest: var(--salt-color-salmon-900);
1024
+ --salt-palette-categorical-9: var(--salt-color-indigo-500);
1025
+ --salt-palette-categorical-9-strong: var(--salt-color-indigo-400);
1026
+ --salt-palette-categorical-9-weakest: var(--salt-color-indigo-900);
1027
+ --salt-palette-categorical-10: var(--salt-color-jade-500);
1028
+ --salt-palette-categorical-10-strong: var(--salt-color-jade-400);
1029
+ --salt-palette-categorical-10-weakest: var(--salt-color-jade-900);
1030
+ --salt-palette-categorical-11: var(--salt-color-citrine-500);
1031
+ --salt-palette-categorical-11-strong: var(--salt-color-citrine-400);
1032
+ --salt-palette-categorical-11-weakest: var(--salt-color-citrine-900);
1033
+ --salt-palette-categorical-12: var(--salt-color-autumn-500);
1034
+ --salt-palette-categorical-12-strong: var(--salt-color-autumn-400);
1035
+ --salt-palette-categorical-12-weakest: var(--salt-color-autumn-900);
1036
+ --salt-palette-categorical-13: var(--salt-color-lavender-500);
1037
+ --salt-palette-categorical-13-strong: var(--salt-color-lavender-400);
1038
+ --salt-palette-categorical-13-weakest: var(--salt-color-lavender-900);
1039
+ --salt-palette-categorical-14: var(--salt-color-ocean-500);
1040
+ --salt-palette-categorical-14-strong: var(--salt-color-ocean-400);
1041
+ --salt-palette-categorical-14-weakest: var(--salt-color-ocean-900);
1042
+ --salt-palette-categorical-15: var(--salt-color-smoke-500);
1043
+ --salt-palette-categorical-15-strong: var(--salt-color-smoke-400);
1044
+ --salt-palette-categorical-15-weakest: var(--salt-color-smoke-900);
1045
+ --salt-palette-categorical-16: var(--salt-color-fuchsia-500);
1046
+ --salt-palette-categorical-16-strong: var(--salt-color-fuchsia-400);
1047
+ --salt-palette-categorical-16-weakest: var(--salt-color-fuchsia-900);
1048
+ --salt-palette-categorical-17: var(--salt-color-lime-500);
1049
+ --salt-palette-categorical-17-strong: var(--salt-color-lime-400);
1050
+ --salt-palette-categorical-17-weakest: var(--salt-color-lime-900);
1051
+ --salt-palette-categorical-18: var(--salt-color-fur-500);
1052
+ --salt-palette-categorical-18-strong: var(--salt-color-fur-400);
1053
+ --salt-palette-categorical-18-weakest: var(--salt-color-fur-900);
1054
+ --salt-palette-categorical-19: var(--salt-color-violet-500);
1055
+ --salt-palette-categorical-19-strong: var(--salt-color-violet-400);
1056
+ --salt-palette-categorical-19-weakest: var(--salt-color-violet-900);
1057
+ --salt-palette-categorical-20: var(--salt-color-forest-500);
1058
+ --salt-palette-categorical-20-strong: var(--salt-color-forest-400);
1059
+ --salt-palette-categorical-20-weakest: var(--salt-color-forest-900);
1060
+ }
1061
+
1062
+ /* css/next/palette/corner.css */
537
1063
  .salt-theme-next[data-corner=rounded] {
538
1064
  --salt-palette-corner-weaker: var(--salt-curve-50);
539
1065
  --salt-palette-corner-weak: var(--salt-curve-100);
@@ -551,7 +1077,7 @@
551
1077
  --salt-palette-corner-strongest: var(--salt-curve-999);
552
1078
  }
553
1079
 
554
- /* css/palette/foreground-next.css */
1080
+ /* css/next/palette/foreground.css */
555
1081
  .salt-theme.salt-theme-next[data-mode=light] {
556
1082
  --salt-palette-foreground-primary: var(--salt-color-black);
557
1083
  --salt-palette-foreground-primary-disabled: var(--salt-color-black-40a);
@@ -571,7 +1097,7 @@
571
1097
  --salt-palette-foreground-visited: var(--salt-color-purple-200);
572
1098
  }
573
1099
 
574
- /* css/palette/info-next.css */
1100
+ /* css/next/palette/info.css */
575
1101
  .salt-theme.salt-theme-next[data-mode=light] {
576
1102
  --salt-palette-info: var(--salt-color-blue-500);
577
1103
  --salt-palette-info-strong: var(--salt-color-blue-600);
@@ -583,29 +1109,23 @@
583
1109
  --salt-palette-info-weakest: var(--salt-color-blue-900);
584
1110
  }
585
1111
 
586
- /* css/palette/negative-next.css */
1112
+ /* css/next/palette/negative.css */
587
1113
  .salt-theme.salt-theme-next[data-mode=light] {
588
- --salt-palette-negative: var(--salt-color-red-500);
589
- --salt-palette-negative-disabled: var(--salt-color-red-500-40a);
1114
+ --salt-palette-negative-stronger: var(--salt-color-red-700);
590
1115
  --salt-palette-negative-strong: var(--salt-color-red-600);
591
- --salt-palette-negative-strong-disabled: var(--salt-color-red-600-40a);
1116
+ --salt-palette-negative: var(--salt-color-red-500);
592
1117
  --salt-palette-negative-weaker: var(--salt-color-red-200);
593
1118
  --salt-palette-negative-weakest: var(--salt-color-red-100);
594
- --salt-palette-negative-action-hover: var(--salt-color-red-600);
595
- --salt-palette-negative-action-active: var(--salt-color-red-800);
596
1119
  }
597
1120
  .salt-theme.salt-theme-next[data-mode=dark] {
598
- --salt-palette-negative: var(--salt-color-red-500);
599
- --salt-palette-negative-disabled: var(--salt-color-red-500-40a);
1121
+ --salt-palette-negative-stronger: var(--salt-color-red-300);
600
1122
  --salt-palette-negative-strong: var(--salt-color-red-400);
601
- --salt-palette-negative-strong-disabled: var(--salt-color-red-400-40a);
1123
+ --salt-palette-negative: var(--salt-color-red-500);
602
1124
  --salt-palette-negative-weaker: var(--salt-color-red-800);
603
1125
  --salt-palette-negative-weakest: var(--salt-color-red-900);
604
- --salt-palette-negative-action-hover: var(--salt-color-red-600);
605
- --salt-palette-negative-action-active: var(--salt-color-red-800);
606
1126
  }
607
1127
 
608
- /* css/palette/neutral-next.css */
1128
+ /* css/next/palette/neutral.css */
609
1129
  .salt-theme.salt-theme-next[data-mode=light] {
610
1130
  --salt-palette-neutral: var(--salt-color-gray-500);
611
1131
  --salt-palette-neutral-disabled: var(--salt-color-gray-500-40a);
@@ -615,13 +1135,8 @@
615
1135
  --salt-palette-neutral-stronger: var(--salt-color-gray-700);
616
1136
  --salt-palette-neutral-strongest: var(--salt-color-gray-800);
617
1137
  --salt-palette-neutral-weak: var(--salt-color-gray-400);
618
- --salt-palette-neutral-weak-disabled: var(--salt-color-gray-400-40a);
619
- --salt-palette-neutral-weaker: var(--salt-color-gray-300);
620
- --salt-palette-neutral-weaker-disabled: var(--salt-color-gray-300-40a);
621
- --salt-palette-neutral-weaker-readonly: var(--salt-color-gray-300-10a);
622
- --salt-palette-neutral-weakest: var(--salt-color-gray-200);
623
- --salt-palette-neutral-action-hover: var(--salt-color-gray-600);
624
- --salt-palette-neutral-action-active: var(--salt-color-gray-800);
1138
+ --salt-palette-neutral-weaker: var(--salt-color-gray-200);
1139
+ --salt-palette-neutral-weakest: var(--salt-color-gray-100);
625
1140
  }
626
1141
  .salt-theme.salt-theme-next[data-mode=dark] {
627
1142
  --salt-palette-neutral: var(--salt-color-gray-500);
@@ -629,41 +1144,46 @@
629
1144
  --salt-palette-neutral-readonly: var(--salt-color-gray-500-10a);
630
1145
  --salt-palette-neutral-strong: var(--salt-color-gray-400);
631
1146
  --salt-palette-neutral-strong-disabled: var(--salt-color-gray-400-40a);
632
- --salt-palette-neutral-stronger: var(--salt-color-gray-300);
633
- --salt-palette-neutral-strongest: var(--salt-color-gray-200);
1147
+ --salt-palette-neutral-stronger: var(--salt-color-gray-200);
1148
+ --salt-palette-neutral-strongest: var(--salt-color-gray-100);
634
1149
  --salt-palette-neutral-weak: var(--salt-color-gray-600);
635
- --salt-palette-neutral-weak-disabled: var(--salt-color-gray-600-40a);
636
- --salt-palette-neutral-weaker: var(--salt-color-gray-700);
637
- --salt-palette-neutral-weaker-disabled: var(--salt-color-gray-700-40a);
638
- --salt-palette-neutral-weaker-readonly: var(--salt-color-gray-700-10a);
639
- --salt-palette-neutral-weakest: var(--salt-color-gray-800);
640
- --salt-palette-neutral-action-hover: var(--salt-color-gray-600);
641
- --salt-palette-neutral-action-active: var(--salt-color-gray-800);
1150
+ --salt-palette-neutral-weaker: var(--salt-color-gray-800);
1151
+ --salt-palette-neutral-weakest: var(--salt-color-gray-900);
642
1152
  }
643
1153
 
644
- /* css/palette/positive-next.css */
1154
+ /* css/next/palette/positive.css */
645
1155
  .salt-theme.salt-theme-next[data-mode=light] {
646
- --salt-palette-positive: var(--salt-color-green-500);
647
- --salt-palette-positive-disabled: var(--salt-color-green-500-40a);
1156
+ --salt-palette-positive-stronger: var(--salt-color-green-700);
648
1157
  --salt-palette-positive-strong: var(--salt-color-green-600);
649
- --salt-palette-positive-strong-disabled: var(--salt-color-green-600-40a);
1158
+ --salt-palette-positive: var(--salt-color-green-500);
650
1159
  --salt-palette-positive-weaker: var(--salt-color-green-200);
651
1160
  --salt-palette-positive-weakest: var(--salt-color-green-100);
652
- --salt-palette-positive-action-hover: var(--salt-color-green-600);
653
- --salt-palette-positive-action-active: var(--salt-color-green-800);
654
1161
  }
655
1162
  .salt-theme.salt-theme-next[data-mode=dark] {
656
- --salt-palette-positive: var(--salt-color-green-500);
657
- --salt-palette-positive-disabled: var(--salt-color-green-500-40a);
1163
+ --salt-palette-positive-stronger: var(--salt-color-green-300);
658
1164
  --salt-palette-positive-strong: var(--salt-color-green-400);
659
- --salt-palette-positive-strong-disabled: var(--salt-color-green-400-40a);
1165
+ --salt-palette-positive: var(--salt-color-green-500);
660
1166
  --salt-palette-positive-weaker: var(--salt-color-green-800);
661
1167
  --salt-palette-positive-weakest: var(--salt-color-green-900);
662
- --salt-palette-positive-action-hover: var(--salt-color-green-600);
663
- --salt-palette-positive-action-active: var(--salt-color-green-800);
664
1168
  }
665
1169
 
666
- /* css/palette/text-next.css */
1170
+ /* css/next/palette/shadow.css */
1171
+ .salt-theme.salt-theme-next[data-mode=light] {
1172
+ --salt-shadow-lowest: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
1173
+ --salt-shadow-lower: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
1174
+ --salt-shadow-low: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
1175
+ --salt-shadow-mediumLow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
1176
+ --salt-shadow-medium: 0 12px 40px 0 rgba(0, 0, 0, 0.3);
1177
+ }
1178
+ .salt-theme.salt-theme-next[data-mode=dark] {
1179
+ --salt-shadow-lowest: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
1180
+ --salt-shadow-lower: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
1181
+ --salt-shadow-low: 0 4px 8px 0 rgba(0, 0, 0, 0.55);
1182
+ --salt-shadow-mediumLow: 0 6px 10px 0 rgba(0, 0, 0, 0.55);
1183
+ --salt-shadow-medium: 0 12px 40px 0 rgba(0, 0, 0, 0.65);
1184
+ }
1185
+
1186
+ /* css/next/palette/text.css */
667
1187
  .salt-theme-next.salt-theme[data-heading-font="Open Sans"] {
668
1188
  --salt-palette-text-fontFamily-heading: var(--salt-typography-fontFamily-openSans);
669
1189
  --salt-palette-text-display-fontWeight: var(--salt-typography-fontWeight-semiBold);
@@ -703,29 +1223,23 @@
703
1223
  --salt-palette-text-action-fontWeight: var(--salt-typography-fontWeight-medium);
704
1224
  }
705
1225
 
706
- /* css/palette/warning-next.css */
1226
+ /* css/next/palette/warning.css */
707
1227
  .salt-theme.salt-theme-next[data-mode=light] {
708
- --salt-palette-warning: var(--salt-color-orange-500);
709
- --salt-palette-warning-disabled: var(--salt-color-orange-500-40a);
1228
+ --salt-palette-warning-stronger: var(--salt-color-orange-700);
710
1229
  --salt-palette-warning-strong: var(--salt-color-orange-600);
711
- --salt-palette-warning-strong-disabled: var(--salt-color-orange-600-40a);
1230
+ --salt-palette-warning: var(--salt-color-orange-500);
712
1231
  --salt-palette-warning-weaker: var(--salt-color-orange-200);
713
1232
  --salt-palette-warning-weakest: var(--salt-color-orange-100);
714
- --salt-palette-warning-action-hover: var(--salt-color-orange-600);
715
- --salt-palette-warning-action-active: var(--salt-color-orange-800);
716
1233
  }
717
1234
  .salt-theme.salt-theme-next[data-mode=dark] {
718
- --salt-palette-warning: var(--salt-color-orange-500);
719
- --salt-palette-warning-disabled: var(--salt-color-orange-500-40a);
1235
+ --salt-palette-warning-stronger: var(--salt-color-orange-300);
720
1236
  --salt-palette-warning-strong: var(--salt-color-orange-400);
721
- --salt-palette-warning-strong-disabled: var(--salt-color-orange-400-40a);
1237
+ --salt-palette-warning: var(--salt-color-orange-500);
722
1238
  --salt-palette-warning-weaker: var(--salt-color-orange-800);
723
1239
  --salt-palette-warning-weakest: var(--salt-color-orange-900);
724
- --salt-palette-warning-action-hover: var(--salt-color-orange-600);
725
- --salt-palette-warning-action-active: var(--salt-color-orange-800);
726
1240
  }
727
1241
 
728
- /* css/characteristics/accent-next.css */
1242
+ /* css/next/characteristics/accent.css */
729
1243
  .salt-theme.salt-theme-next {
730
1244
  --salt-accent-background: var(--salt-palette-accent);
731
1245
  --salt-accent-background-disabled: var(--salt-palette-accent-disabled);
@@ -734,215 +1248,265 @@
734
1248
  --salt-accent-foreground: var(--salt-palette-foreground-primary-alt);
735
1249
  }
736
1250
 
737
- /* css/characteristics/actionable-next.css */
1251
+ /* css/next/characteristics/actionable.css */
738
1252
  .salt-theme.salt-theme-next {
739
- --salt-actionable-accented-bold-background-active: var(--salt-palette-accent-action-active);
740
- --salt-actionable-accented-bold-background-disabled: var(--salt-palette-accent-disabled);
741
- --salt-actionable-accented-bold-background-hover: var(--salt-palette-accent-action-hover);
1253
+ --salt-actionable-accented-bold-background-active: var(--salt-palette-accent-weaker);
1254
+ --salt-actionable-accented-bold-background-hover: var(--salt-palette-accent);
742
1255
  --salt-actionable-accented-bold-background: var(--salt-palette-accent);
743
1256
  --salt-actionable-accented-bold-borderColor-active: var(--salt-palette-accent);
744
- --salt-actionable-accented-bold-borderColor-disabled: var(--salt-palette-alpha-none);
745
- --salt-actionable-accented-bold-borderColor-hover: var(--salt-palette-accent);
1257
+ --salt-actionable-accented-bold-borderColor-hover: var(--salt-palette-alpha-contrast-high);
746
1258
  --salt-actionable-accented-bold-borderColor: var(--salt-palette-accent);
747
- --salt-actionable-accented-bold-foreground-active: var(--salt-palette-foreground-primary-alt);
748
- --salt-actionable-accented-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
1259
+ --salt-actionable-accented-bold-foreground-active: var(--salt-palette-foreground-primary);
749
1260
  --salt-actionable-accented-bold-foreground-hover: var(--salt-palette-foreground-primary-alt);
750
1261
  --salt-actionable-accented-bold-foreground: var(--salt-palette-foreground-primary-alt);
751
- --salt-actionable-accented-background-active: var(--salt-palette-accent-action-active);
752
- --salt-actionable-accented-background-disabled: var(--salt-palette-alpha-none);
753
- --salt-actionable-accented-background-hover: var(--salt-palette-accent-action-hover);
1262
+ --salt-actionable-accented-background-active: var(--salt-palette-accent-weaker);
1263
+ --salt-actionable-accented-background-hover: var(--salt-palette-accent-weakest);
754
1264
  --salt-actionable-accented-background: var(--salt-palette-alpha-none);
755
1265
  --salt-actionable-accented-borderColor-active: var(--salt-palette-accent);
756
- --salt-actionable-accented-borderColor-disabled: var(--salt-palette-accent-disabled);
757
1266
  --salt-actionable-accented-borderColor-hover: var(--salt-palette-accent);
758
1267
  --salt-actionable-accented-borderColor: var(--salt-palette-accent);
759
- --salt-actionable-accented-foreground-active: var(--salt-palette-foreground-primary-alt);
760
- --salt-actionable-accented-foreground-disabled: var(--salt-palette-accent-strong-disabled);
761
- --salt-actionable-accented-foreground-hover: var(--salt-palette-foreground-primary-alt);
1268
+ --salt-actionable-accented-foreground-active: var(--salt-palette-foreground-primary);
1269
+ --salt-actionable-accented-foreground-hover: var(--salt-palette-accent-stronger);
762
1270
  --salt-actionable-accented-foreground: var(--salt-palette-accent-strong);
763
- --salt-actionable-accented-subtle-background-active: var(--salt-palette-accent-action-active);
764
- --salt-actionable-accented-subtle-background-disabled: var(--salt-palette-alpha-none);
765
- --salt-actionable-accented-subtle-background-hover: var(--salt-palette-accent-action-hover);
1271
+ --salt-actionable-accented-background-selected: var(--salt-palette-accent);
1272
+ --salt-actionable-accented-borderColor-selected: var(--salt-palette-accent);
1273
+ --salt-actionable-accented-foreground-selected: var(--salt-palette-foreground-primary-alt);
1274
+ --salt-actionable-accented-subtle-background-active: var(--salt-palette-accent-weaker);
1275
+ --salt-actionable-accented-subtle-background-hover: var(--salt-palette-accent-weakest);
766
1276
  --salt-actionable-accented-subtle-background: var(--salt-palette-alpha-none);
767
1277
  --salt-actionable-accented-subtle-borderColor-active: var(--salt-palette-accent);
768
- --salt-actionable-accented-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
769
1278
  --salt-actionable-accented-subtle-borderColor-hover: var(--salt-palette-accent);
770
1279
  --salt-actionable-accented-subtle-borderColor: var(--salt-palette-alpha-none);
771
- --salt-actionable-accented-subtle-foreground-active: var(--salt-palette-foreground-primary-alt);
772
- --salt-actionable-accented-subtle-foreground-disabled: var(--salt-palette-accent-strong-disabled);
773
- --salt-actionable-accented-subtle-foreground-hover: var(--salt-palette-foreground-primary-alt);
1280
+ --salt-actionable-accented-subtle-foreground-active: var(--salt-palette-foreground-primary);
1281
+ --salt-actionable-accented-subtle-foreground-hover: var(--salt-palette-accent-stronger);
774
1282
  --salt-actionable-accented-subtle-foreground: var(--salt-palette-accent-strong);
775
- --salt-actionable-bold-background-active: var(--salt-palette-neutral-action-active);
776
- --salt-actionable-bold-background-disabled: var(--salt-palette-neutral-disabled);
777
- --salt-actionable-bold-background-hover: var(--salt-palette-neutral-action-hover);
1283
+ --salt-actionable-bold-background-active: var(--salt-palette-neutral-weaker);
1284
+ --salt-actionable-bold-background-hover: var(--salt-palette-neutral);
778
1285
  --salt-actionable-bold-background: var(--salt-palette-neutral);
779
1286
  --salt-actionable-bold-borderColor-active: var(--salt-palette-neutral);
780
- --salt-actionable-bold-borderColor-disabled: var(--salt-palette-alpha-none);
781
- --salt-actionable-bold-borderColor-hover: var(--salt-palette-neutral);
1287
+ --salt-actionable-bold-borderColor-hover: var(--salt-palette-alpha-contrast-high);
782
1288
  --salt-actionable-bold-borderColor: var(--salt-palette-neutral);
783
- --salt-actionable-bold-foreground-active: var(--salt-palette-foreground-primary-alt);
784
- --salt-actionable-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
1289
+ --salt-actionable-bold-foreground-active: var(--salt-palette-foreground-primary);
785
1290
  --salt-actionable-bold-foreground-hover: var(--salt-palette-foreground-primary-alt);
786
1291
  --salt-actionable-bold-foreground: var(--salt-palette-foreground-primary-alt);
787
- --salt-actionable-background-active: var(--salt-palette-neutral-action-active);
788
- --salt-actionable-background-disabled: var(--salt-palette-alpha-none);
789
- --salt-actionable-background-hover: var(--salt-palette-neutral-action-hover);
1292
+ --salt-actionable-background-active: var(--salt-palette-neutral-weaker);
1293
+ --salt-actionable-background-hover: var(--salt-palette-neutral-weakest);
790
1294
  --salt-actionable-background: var(--salt-palette-alpha-none);
791
1295
  --salt-actionable-borderColor-active: var(--salt-palette-neutral);
792
- --salt-actionable-borderColor-disabled: var(--salt-palette-neutral-disabled);
793
1296
  --salt-actionable-borderColor-hover: var(--salt-palette-neutral);
794
1297
  --salt-actionable-borderColor: var(--salt-palette-neutral);
795
- --salt-actionable-foreground-active: var(--salt-palette-foreground-primary-alt);
796
- --salt-actionable-foreground-disabled: var(--salt-palette-foreground-primary-disabled);
797
- --salt-actionable-foreground-hover: var(--salt-palette-foreground-primary-alt);
1298
+ --salt-actionable-foreground-active: var(--salt-palette-foreground-primary);
1299
+ --salt-actionable-foreground-hover: var(--salt-palette-foreground-primary);
798
1300
  --salt-actionable-foreground: var(--salt-palette-foreground-primary);
799
- --salt-actionable-subtle-background-active: var(--salt-palette-neutral-action-active);
800
- --salt-actionable-subtle-background-disabled: var(--salt-palette-alpha-none);
801
- --salt-actionable-subtle-background-hover: var(--salt-palette-neutral-action-hover);
1301
+ --salt-actionable-background-selected: var(--salt-palette-neutral);
1302
+ --salt-actionable-borderColor-selected: var(--salt-palette-neutral);
1303
+ --salt-actionable-foreground-selected: var(--salt-palette-foreground-primary-alt);
1304
+ --salt-actionable-subtle-background-active: var(--salt-palette-neutral-weaker);
1305
+ --salt-actionable-subtle-background-hover: var(--salt-palette-neutral-weakest);
802
1306
  --salt-actionable-subtle-background: var(--salt-palette-alpha-none);
803
1307
  --salt-actionable-subtle-borderColor-active: var(--salt-palette-neutral);
804
- --salt-actionable-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
805
1308
  --salt-actionable-subtle-borderColor-hover: var(--salt-palette-neutral);
806
1309
  --salt-actionable-subtle-borderColor: var(--salt-palette-alpha-none);
807
- --salt-actionable-subtle-foreground-active: var(--salt-palette-foreground-primary-alt);
808
- --salt-actionable-subtle-foreground-disabled: var(--salt-palette-foreground-primary-disabled);
809
- --salt-actionable-subtle-foreground-hover: var(--salt-palette-foreground-primary-alt);
1310
+ --salt-actionable-subtle-foreground-active: var(--salt-palette-foreground-primary);
1311
+ --salt-actionable-subtle-foreground-hover: var(--salt-palette-foreground-primary);
810
1312
  --salt-actionable-subtle-foreground: var(--salt-palette-foreground-primary);
811
- --salt-actionable-negative-bold-background-active: var(--salt-palette-negative-action-active);
812
- --salt-actionable-negative-bold-background-disabled: var(--salt-palette-negative-disabled);
813
- --salt-actionable-negative-bold-background-hover: var(--salt-palette-negative-action-hover);
1313
+ --salt-actionable-negative-bold-background-active: var(--salt-palette-negative-weaker);
1314
+ --salt-actionable-negative-bold-background-hover: var(--salt-palette-negative);
814
1315
  --salt-actionable-negative-bold-background: var(--salt-palette-negative);
815
1316
  --salt-actionable-negative-bold-borderColor-active: var(--salt-palette-negative);
816
- --salt-actionable-negative-bold-borderColor-disabled: var(--salt-palette-alpha-none);
817
- --salt-actionable-negative-bold-borderColor-hover: var(--salt-palette-negative);
1317
+ --salt-actionable-negative-bold-borderColor-hover: var(--salt-palette-alpha-contrast-high);
818
1318
  --salt-actionable-negative-bold-borderColor: var(--salt-palette-negative);
819
- --salt-actionable-negative-bold-foreground-active: var(--salt-palette-foreground-primary-alt);
820
- --salt-actionable-negative-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
1319
+ --salt-actionable-negative-bold-foreground-active: var(--salt-palette-foreground-primary);
821
1320
  --salt-actionable-negative-bold-foreground-hover: var(--salt-palette-foreground-primary-alt);
822
1321
  --salt-actionable-negative-bold-foreground: var(--salt-palette-foreground-primary-alt);
823
- --salt-actionable-negative-background-active: var(--salt-palette-negative-action-active);
824
- --salt-actionable-negative-background-disabled: var(--salt-palette-alpha-none);
825
- --salt-actionable-negative-background-hover: var(--salt-palette-negative-action-hover);
1322
+ --salt-actionable-negative-background-active: var(--salt-palette-negative-weaker);
1323
+ --salt-actionable-negative-background-hover: var(--salt-palette-negative-weakest);
826
1324
  --salt-actionable-negative-background: var(--salt-palette-alpha-none);
827
1325
  --salt-actionable-negative-borderColor-active: var(--salt-palette-negative);
828
- --salt-actionable-negative-borderColor-disabled: var(--salt-palette-negative-disabled);
829
1326
  --salt-actionable-negative-borderColor-hover: var(--salt-palette-negative);
830
1327
  --salt-actionable-negative-borderColor: var(--salt-palette-negative);
831
- --salt-actionable-negative-foreground-active: var(--salt-palette-foreground-primary-alt);
832
- --salt-actionable-negative-foreground-disabled: var(--salt-palette-negative-strong-disabled);
833
- --salt-actionable-negative-foreground-hover: var(--salt-palette-foreground-primary-alt);
1328
+ --salt-actionable-negative-foreground-active: var(--salt-palette-foreground-primary);
1329
+ --salt-actionable-negative-foreground-hover: var(--salt-palette-negative-stronger);
834
1330
  --salt-actionable-negative-foreground: var(--salt-palette-negative-strong);
835
- --salt-actionable-negative-subtle-background-active: var(--salt-palette-negative-action-active);
836
- --salt-actionable-negative-subtle-background-disabled: var(--salt-palette-alpha-none);
837
- --salt-actionable-negative-subtle-background-hover: var(--salt-palette-negative-action-hover);
1331
+ --salt-actionable-negative-background-selected: var(--salt-palette-negative);
1332
+ --salt-actionable-negative-borderColor-selected: var(--salt-palette-negative);
1333
+ --salt-actionable-negative-foreground-selected: var(--salt-palette-foreground-primary-alt);
1334
+ --salt-actionable-negative-subtle-background-active: var(--salt-palette-negative-weaker);
1335
+ --salt-actionable-negative-subtle-background-hover: var(--salt-palette-negative-weakest);
838
1336
  --salt-actionable-negative-subtle-background: var(--salt-palette-alpha-none);
839
1337
  --salt-actionable-negative-subtle-borderColor-active: var(--salt-palette-negative);
840
- --salt-actionable-negative-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
841
1338
  --salt-actionable-negative-subtle-borderColor-hover: var(--salt-palette-negative);
842
1339
  --salt-actionable-negative-subtle-borderColor: var(--salt-palette-alpha-none);
843
- --salt-actionable-negative-subtle-foreground-active: var(--salt-palette-foreground-primary-alt);
844
- --salt-actionable-negative-subtle-foreground-disabled: var(--salt-palette-negative-strong-disabled);
845
- --salt-actionable-negative-subtle-foreground-hover: var(--salt-palette-foreground-primary-alt);
1340
+ --salt-actionable-negative-subtle-foreground-active: var(--salt-palette-foreground-primary);
1341
+ --salt-actionable-negative-subtle-foreground-hover: var(--salt-palette-negative-stronger);
846
1342
  --salt-actionable-negative-subtle-foreground: var(--salt-palette-negative-strong);
847
- --salt-actionable-positive-bold-background-active: var(--salt-palette-positive-action-active);
848
- --salt-actionable-positive-bold-background-disabled: var(--salt-palette-positive-disabled);
849
- --salt-actionable-positive-bold-background-hover: var(--salt-palette-positive-action-hover);
1343
+ --salt-actionable-positive-bold-background-active: var(--salt-palette-positive-weaker);
1344
+ --salt-actionable-positive-bold-background-hover: var(--salt-palette-positive);
850
1345
  --salt-actionable-positive-bold-background: var(--salt-palette-positive);
851
1346
  --salt-actionable-positive-bold-borderColor-active: var(--salt-palette-positive);
852
- --salt-actionable-positive-bold-borderColor-disabled: var(--salt-palette-alpha-none);
853
- --salt-actionable-positive-bold-borderColor-hover: var(--salt-palette-positive);
1347
+ --salt-actionable-positive-bold-borderColor-hover: var(--salt-palette-alpha-contrast-high);
854
1348
  --salt-actionable-positive-bold-borderColor: var(--salt-palette-positive);
855
- --salt-actionable-positive-bold-foreground-active: var(--salt-palette-foreground-primary-alt);
856
- --salt-actionable-positive-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
1349
+ --salt-actionable-positive-bold-foreground-active: var(--salt-palette-foreground-primary);
857
1350
  --salt-actionable-positive-bold-foreground-hover: var(--salt-palette-foreground-primary-alt);
858
1351
  --salt-actionable-positive-bold-foreground: var(--salt-palette-foreground-primary-alt);
859
- --salt-actionable-positive-background-active: var(--salt-palette-positive-action-active);
860
- --salt-actionable-positive-background-disabled: var(--salt-palette-alpha-none);
861
- --salt-actionable-positive-background-hover: var(--salt-palette-positive-action-hover);
1352
+ --salt-actionable-positive-background-active: var(--salt-palette-positive-weaker);
1353
+ --salt-actionable-positive-background-hover: var(--salt-palette-positive-weakest);
862
1354
  --salt-actionable-positive-background: var(--salt-palette-alpha-none);
863
1355
  --salt-actionable-positive-borderColor-active: var(--salt-palette-positive);
864
- --salt-actionable-positive-borderColor-disabled: var(--salt-palette-positive-disabled);
865
1356
  --salt-actionable-positive-borderColor-hover: var(--salt-palette-positive);
866
1357
  --salt-actionable-positive-borderColor: var(--salt-palette-positive);
867
- --salt-actionable-positive-foreground-active: var(--salt-palette-foreground-primary-alt);
868
- --salt-actionable-positive-foreground-disabled: var(--salt-palette-positive-strong-disabled);
869
- --salt-actionable-positive-foreground-hover: var(--salt-palette-foreground-primary-alt);
1358
+ --salt-actionable-positive-foreground-active: var(--salt-palette-foreground-primary);
1359
+ --salt-actionable-positive-foreground-hover: var(--salt-palette-positive-stronger);
870
1360
  --salt-actionable-positive-foreground: var(--salt-palette-positive-strong);
871
- --salt-actionable-positive-subtle-background-active: var(--salt-palette-positive-action-active);
872
- --salt-actionable-positive-subtle-background-disabled: var(--salt-palette-alpha-none);
873
- --salt-actionable-positive-subtle-background-hover: var(--salt-palette-positive-action-hover);
1361
+ --salt-actionable-positive-background-selected: var(--salt-palette-positive);
1362
+ --salt-actionable-positive-borderColor-selected: var(--salt-palette-positive);
1363
+ --salt-actionable-positive-foreground-selected: var(--salt-palette-foreground-primary-alt);
1364
+ --salt-actionable-positive-subtle-background-active: var(--salt-palette-positive-weaker);
1365
+ --salt-actionable-positive-subtle-background-hover: var(--salt-palette-positive-weakest);
874
1366
  --salt-actionable-positive-subtle-background: var(--salt-palette-alpha-none);
875
1367
  --salt-actionable-positive-subtle-borderColor-active: var(--salt-palette-positive);
876
- --salt-actionable-positive-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
877
1368
  --salt-actionable-positive-subtle-borderColor-hover: var(--salt-palette-positive);
878
1369
  --salt-actionable-positive-subtle-borderColor: var(--salt-palette-alpha-none);
879
- --salt-actionable-positive-subtle-foreground-active: var(--salt-palette-foreground-primary-alt);
880
- --salt-actionable-positive-subtle-foreground-disabled: var(--salt-palette-positive-strong-disabled);
881
- --salt-actionable-positive-subtle-foreground-hover: var(--salt-palette-foreground-primary-alt);
1370
+ --salt-actionable-positive-subtle-foreground-active: var(--salt-palette-foreground-primary);
1371
+ --salt-actionable-positive-subtle-foreground-hover: var(--salt-palette-positive-stronger);
882
1372
  --salt-actionable-positive-subtle-foreground: var(--salt-palette-positive-strong);
883
- --salt-actionable-caution-bold-background-active: var(--salt-palette-warning-action-active);
884
- --salt-actionable-caution-bold-background-disabled: var(--salt-palette-warning-disabled);
885
- --salt-actionable-caution-bold-background-hover: var(--salt-palette-warning-action-hover);
1373
+ --salt-actionable-caution-bold-background-active: var(--salt-palette-warning-weaker);
1374
+ --salt-actionable-caution-bold-background-hover: var(--salt-palette-warning);
886
1375
  --salt-actionable-caution-bold-background: var(--salt-palette-warning);
887
1376
  --salt-actionable-caution-bold-borderColor-active: var(--salt-palette-warning);
888
- --salt-actionable-caution-bold-borderColor-disabled: var(--salt-palette-alpha-none);
889
- --salt-actionable-caution-bold-borderColor-hover: var(--salt-palette-warning);
1377
+ --salt-actionable-caution-bold-borderColor-hover: var(--salt-palette-alpha-contrast-high);
890
1378
  --salt-actionable-caution-bold-borderColor: var(--salt-palette-warning);
891
- --salt-actionable-caution-bold-foreground-active: var(--salt-palette-foreground-primary-alt);
892
- --salt-actionable-caution-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
1379
+ --salt-actionable-caution-bold-foreground-active: var(--salt-palette-foreground-primary);
893
1380
  --salt-actionable-caution-bold-foreground-hover: var(--salt-palette-foreground-primary-alt);
894
1381
  --salt-actionable-caution-bold-foreground: var(--salt-palette-foreground-primary-alt);
895
- --salt-actionable-caution-background-active: var(--salt-palette-warning-action-active);
896
- --salt-actionable-caution-background-disabled: var(--salt-palette-alpha-none);
897
- --salt-actionable-caution-background-hover: var(--salt-palette-warning-action-hover);
1382
+ --salt-actionable-caution-background-active: var(--salt-palette-warning-weaker);
1383
+ --salt-actionable-caution-background-hover: var(--salt-palette-warning-weakest);
898
1384
  --salt-actionable-caution-background: var(--salt-palette-alpha-none);
899
1385
  --salt-actionable-caution-borderColor-active: var(--salt-palette-warning);
900
- --salt-actionable-caution-borderColor-disabled: var(--salt-palette-warning-disabled);
901
1386
  --salt-actionable-caution-borderColor-hover: var(--salt-palette-warning);
902
1387
  --salt-actionable-caution-borderColor: var(--salt-palette-warning);
903
- --salt-actionable-caution-foreground-active: var(--salt-palette-foreground-primary-alt);
904
- --salt-actionable-caution-foreground-disabled: var(--salt-palette-warning-strong-disabled);
905
- --salt-actionable-caution-foreground-hover: var(--salt-palette-foreground-primary-alt);
1388
+ --salt-actionable-caution-foreground-active: var(--salt-palette-foreground-primary);
1389
+ --salt-actionable-caution-foreground-hover: var(--salt-palette-warning-stronger);
906
1390
  --salt-actionable-caution-foreground: var(--salt-palette-warning-strong);
907
- --salt-actionable-caution-subtle-background-active: var(--salt-palette-warning-action-active);
908
- --salt-actionable-caution-subtle-background-disabled: var(--salt-palette-alpha-none);
909
- --salt-actionable-caution-subtle-background-hover: var(--salt-palette-warning-action-hover);
1391
+ --salt-actionable-caution-background-selected: var(--salt-palette-warning);
1392
+ --salt-actionable-caution-borderColor-selected: var(--salt-palette-warning);
1393
+ --salt-actionable-caution-foreground-selected: var(--salt-palette-foreground-primary-alt);
1394
+ --salt-actionable-caution-subtle-background-active: var(--salt-palette-warning-weaker);
1395
+ --salt-actionable-caution-subtle-background-hover: var(--salt-palette-warning-weakest);
910
1396
  --salt-actionable-caution-subtle-background: var(--salt-palette-alpha-none);
911
1397
  --salt-actionable-caution-subtle-borderColor-active: var(--salt-palette-warning);
912
- --salt-actionable-caution-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
913
1398
  --salt-actionable-caution-subtle-borderColor-hover: var(--salt-palette-warning);
914
1399
  --salt-actionable-caution-subtle-borderColor: var(--salt-palette-alpha-none);
915
- --salt-actionable-caution-subtle-foreground-active: var(--salt-palette-foreground-primary-alt);
916
- --salt-actionable-caution-subtle-foreground-disabled: var(--salt-palette-warning-strong-disabled);
917
- --salt-actionable-caution-subtle-foreground-hover: var(--salt-palette-foreground-primary-alt);
1400
+ --salt-actionable-caution-subtle-foreground-active: var(--salt-palette-foreground-primary);
1401
+ --salt-actionable-caution-subtle-foreground-hover: var(--salt-palette-warning-stronger);
918
1402
  --salt-actionable-caution-subtle-foreground: var(--salt-palette-warning-strong);
919
1403
  }
920
1404
 
921
- /* css/characteristics/category-next.css */
1405
+ /* css/next/characteristics/category.css */
922
1406
  .salt-theme.salt-theme-next {
1407
+ --salt-category-1-subtle-foreground: var(--salt-palette-categorical-1-strong);
1408
+ --salt-category-1-subtle-background: var(--salt-palette-categorical-1-weakest);
1409
+ --salt-category-1-subtle-borderColor: var(--salt-palette-categorical-1);
923
1410
  --salt-category-1-bold-foreground: var(--salt-palette-foreground-primary-alt);
1411
+ --salt-category-1-bold-background: var(--salt-palette-categorical-1);
1412
+ --salt-category-2-subtle-foreground: var(--salt-palette-categorical-2-strong);
1413
+ --salt-category-2-subtle-background: var(--salt-palette-categorical-2-weakest);
1414
+ --salt-category-2-subtle-borderColor: var(--salt-palette-categorical-2);
924
1415
  --salt-category-2-bold-foreground: var(--salt-palette-foreground-primary-alt);
1416
+ --salt-category-2-bold-background: var(--salt-palette-categorical-2);
1417
+ --salt-category-3-subtle-foreground: var(--salt-palette-categorical-3-strong);
1418
+ --salt-category-3-subtle-background: var(--salt-palette-categorical-3-weakest);
1419
+ --salt-category-3-subtle-borderColor: var(--salt-palette-categorical-3);
925
1420
  --salt-category-3-bold-foreground: var(--salt-palette-foreground-primary-alt);
1421
+ --salt-category-3-bold-background: var(--salt-palette-categorical-3);
1422
+ --salt-category-4-subtle-foreground: var(--salt-palette-categorical-4-strong);
1423
+ --salt-category-4-subtle-background: var(--salt-palette-categorical-4-weakest);
1424
+ --salt-category-4-subtle-borderColor: var(--salt-palette-categorical-4);
926
1425
  --salt-category-4-bold-foreground: var(--salt-palette-foreground-primary-alt);
1426
+ --salt-category-4-bold-background: var(--salt-palette-categorical-4);
1427
+ --salt-category-5-subtle-foreground: var(--salt-palette-categorical-5-strong);
1428
+ --salt-category-5-subtle-background: var(--salt-palette-categorical-5-weakest);
1429
+ --salt-category-5-subtle-borderColor: var(--salt-palette-categorical-5);
927
1430
  --salt-category-5-bold-foreground: var(--salt-palette-foreground-primary-alt);
1431
+ --salt-category-5-bold-background: var(--salt-palette-categorical-5);
1432
+ --salt-category-6-subtle-foreground: var(--salt-palette-categorical-6-strong);
1433
+ --salt-category-6-subtle-background: var(--salt-palette-categorical-6-weakest);
1434
+ --salt-category-6-subtle-borderColor: var(--salt-palette-categorical-6);
928
1435
  --salt-category-6-bold-foreground: var(--salt-palette-foreground-primary-alt);
1436
+ --salt-category-6-bold-background: var(--salt-palette-categorical-6);
1437
+ --salt-category-7-subtle-foreground: var(--salt-palette-categorical-7-strong);
1438
+ --salt-category-7-subtle-background: var(--salt-palette-categorical-7-weakest);
1439
+ --salt-category-7-subtle-borderColor: var(--salt-palette-categorical-7);
929
1440
  --salt-category-7-bold-foreground: var(--salt-palette-foreground-primary-alt);
1441
+ --salt-category-7-bold-background: var(--salt-palette-categorical-7);
1442
+ --salt-category-8-subtle-foreground: var(--salt-palette-categorical-8-strong);
1443
+ --salt-category-8-subtle-background: var(--salt-palette-categorical-8-weakest);
1444
+ --salt-category-8-subtle-borderColor: var(--salt-palette-categorical-8);
930
1445
  --salt-category-8-bold-foreground: var(--salt-palette-foreground-primary-alt);
1446
+ --salt-category-8-bold-background: var(--salt-palette-categorical-8);
1447
+ --salt-category-9-subtle-foreground: var(--salt-palette-categorical-9-strong);
1448
+ --salt-category-9-subtle-background: var(--salt-palette-categorical-9-weakest);
1449
+ --salt-category-9-subtle-borderColor: var(--salt-palette-categorical-9);
931
1450
  --salt-category-9-bold-foreground: var(--salt-palette-foreground-primary-alt);
1451
+ --salt-category-9-bold-background: var(--salt-palette-categorical-9);
1452
+ --salt-category-10-subtle-foreground: var(--salt-palette-categorical-10-strong);
1453
+ --salt-category-10-subtle-background: var(--salt-palette-categorical-10-weakest);
1454
+ --salt-category-10-subtle-borderColor: var(--salt-palette-categorical-10);
932
1455
  --salt-category-10-bold-foreground: var(--salt-palette-foreground-primary-alt);
1456
+ --salt-category-10-bold-background: var(--salt-palette-categorical-10);
1457
+ --salt-category-11-subtle-foreground: var(--salt-palette-categorical-11-strong);
1458
+ --salt-category-11-subtle-background: var(--salt-palette-categorical-11-weakest);
1459
+ --salt-category-11-subtle-borderColor: var(--salt-palette-categorical-11);
933
1460
  --salt-category-11-bold-foreground: var(--salt-palette-foreground-primary-alt);
1461
+ --salt-category-11-bold-background: var(--salt-palette-categorical-11);
1462
+ --salt-category-12-subtle-foreground: var(--salt-palette-categorical-12-strong);
1463
+ --salt-category-12-subtle-background: var(--salt-palette-categorical-12-weakest);
1464
+ --salt-category-12-subtle-borderColor: var(--salt-palette-categorical-12);
934
1465
  --salt-category-12-bold-foreground: var(--salt-palette-foreground-primary-alt);
1466
+ --salt-category-12-bold-background: var(--salt-palette-categorical-12);
1467
+ --salt-category-13-subtle-foreground: var(--salt-palette-categorical-13-strong);
1468
+ --salt-category-13-subtle-background: var(--salt-palette-categorical-13-weakest);
1469
+ --salt-category-13-subtle-borderColor: var(--salt-palette-categorical-13);
935
1470
  --salt-category-13-bold-foreground: var(--salt-palette-foreground-primary-alt);
1471
+ --salt-category-13-bold-background: var(--salt-palette-categorical-13);
1472
+ --salt-category-14-subtle-foreground: var(--salt-palette-categorical-14-strong);
1473
+ --salt-category-14-subtle-background: var(--salt-palette-categorical-14-weakest);
1474
+ --salt-category-14-subtle-borderColor: var(--salt-palette-categorical-14);
936
1475
  --salt-category-14-bold-foreground: var(--salt-palette-foreground-primary-alt);
1476
+ --salt-category-14-bold-background: var(--salt-palette-categorical-14);
1477
+ --salt-category-15-subtle-foreground: var(--salt-palette-categorical-15-strong);
1478
+ --salt-category-15-subtle-background: var(--salt-palette-categorical-15-weakest);
1479
+ --salt-category-15-subtle-borderColor: var(--salt-palette-categorical-15);
937
1480
  --salt-category-15-bold-foreground: var(--salt-palette-foreground-primary-alt);
1481
+ --salt-category-15-bold-background: var(--salt-palette-categorical-15);
1482
+ --salt-category-16-subtle-foreground: var(--salt-palette-categorical-16-strong);
1483
+ --salt-category-16-subtle-background: var(--salt-palette-categorical-16-weakest);
1484
+ --salt-category-16-subtle-borderColor: var(--salt-palette-categorical-16);
938
1485
  --salt-category-16-bold-foreground: var(--salt-palette-foreground-primary-alt);
1486
+ --salt-category-16-bold-background: var(--salt-palette-categorical-16);
1487
+ --salt-category-17-subtle-foreground: var(--salt-palette-categorical-17-strong);
1488
+ --salt-category-17-subtle-background: var(--salt-palette-categorical-17-weakest);
1489
+ --salt-category-17-subtle-borderColor: var(--salt-palette-categorical-17);
939
1490
  --salt-category-17-bold-foreground: var(--salt-palette-foreground-primary-alt);
1491
+ --salt-category-17-bold-background: var(--salt-palette-categorical-17);
1492
+ --salt-category-18-subtle-foreground: var(--salt-palette-categorical-18-strong);
1493
+ --salt-category-18-subtle-background: var(--salt-palette-categorical-18-weakest);
1494
+ --salt-category-18-subtle-borderColor: var(--salt-palette-categorical-18);
940
1495
  --salt-category-18-bold-foreground: var(--salt-palette-foreground-primary-alt);
1496
+ --salt-category-18-bold-background: var(--salt-palette-categorical-18);
1497
+ --salt-category-19-subtle-foreground: var(--salt-palette-categorical-19-strong);
1498
+ --salt-category-19-subtle-background: var(--salt-palette-categorical-19-weakest);
1499
+ --salt-category-19-subtle-borderColor: var(--salt-palette-categorical-19);
941
1500
  --salt-category-19-bold-foreground: var(--salt-palette-foreground-primary-alt);
1501
+ --salt-category-19-bold-background: var(--salt-palette-categorical-19);
1502
+ --salt-category-20-subtle-foreground: var(--salt-palette-categorical-20-strong);
1503
+ --salt-category-20-subtle-background: var(--salt-palette-categorical-20-weakest);
1504
+ --salt-category-20-subtle-borderColor: var(--salt-palette-categorical-20);
942
1505
  --salt-category-20-bold-foreground: var(--salt-palette-foreground-primary-alt);
1506
+ --salt-category-20-bold-background: var(--salt-palette-categorical-20);
943
1507
  }
944
1508
 
945
- /* css/characteristics/container-next.css */
1509
+ /* css/next/characteristics/container.css */
946
1510
  .salt-theme.salt-theme-next {
947
1511
  --salt-container-primary-background: var(--salt-palette-background-primary);
948
1512
  --salt-container-primary-background-disabled: var(--salt-palette-background-primary-disabled);
@@ -956,9 +1520,11 @@
956
1520
  --salt-container-tertiary-background-disabled: var(--salt-palette-background-tertiary-disabled);
957
1521
  --salt-container-tertiary-borderColor: var(--salt-palette-alpha-contrast-medium);
958
1522
  --salt-container-tertiary-borderColor-disabled: var(--salt-palette-alpha-contrast-lower);
1523
+ --salt-container-ghost-background: var(--salt-palette-alpha-medium);
1524
+ --salt-container-ghost-borderColor: var(--salt-palette-alpha-contrast-medium);
959
1525
  }
960
1526
 
961
- /* css/characteristics/content-next.css */
1527
+ /* css/next/characteristics/content.css */
962
1528
  .salt-theme.salt-theme-next {
963
1529
  --salt-content-primary-foreground: var(--salt-palette-foreground-primary);
964
1530
  --salt-content-primary-foreground-disabled: var(--salt-palette-foreground-primary-disabled);
@@ -974,7 +1540,7 @@
974
1540
  --salt-content-foreground-highlight: var(--salt-palette-accent-weaker);
975
1541
  }
976
1542
 
977
- /* css/characteristics/editable-next.css */
1543
+ /* css/next/characteristics/editable.css */
978
1544
  .salt-theme.salt-theme-next {
979
1545
  --salt-editable-borderColor: var(--salt-palette-neutral);
980
1546
  --salt-editable-borderColor-active: var(--salt-palette-accent-stronger);
@@ -993,12 +1559,17 @@
993
1559
  --salt-editable-secondary-background-readonly: var(--salt-palette-alpha-none);
994
1560
  }
995
1561
 
996
- /* css/characteristics/focused-next.css */
1562
+ /* css/next/characteristics/focused.css */
997
1563
  .salt-theme.salt-theme-next {
998
1564
  --salt-focused-outlineColor: var(--salt-palette-accent-stronger);
1565
+ --salt-focused-outlineStyle: var(--salt-borderStyle-dotted);
1566
+ --salt-focused-outlineWidth: var(--salt-size-fixed-200);
1567
+ --salt-focused-outlineInset: 0;
1568
+ --salt-focused-outlineOffset: 0;
1569
+ --salt-focused-outline: var(--salt-focused-outlineWidth) var(--salt-focused-outlineStyle) var(--salt-focused-outlineColor);
999
1570
  }
1000
1571
 
1001
- /* css/characteristics/navigable-next.css */
1572
+ /* css/next/characteristics/navigable.css */
1002
1573
  .salt-theme.salt-theme-next {
1003
1574
  --salt-navigable-indicator-hover: var(--salt-palette-neutral);
1004
1575
  --salt-navigable-accent-indicator-active: var(--salt-palette-accent);
@@ -1006,15 +1577,22 @@
1006
1577
  --salt-navigable-accent-borderColor-active: var(--salt-palette-accent);
1007
1578
  }
1008
1579
 
1009
- /* css/characteristics/overlayable-next.css */
1580
+ /* css/next/characteristics/overlayable.css */
1010
1581
  .salt-theme.salt-theme-next {
1582
+ --salt-overlayable-shadow-scroll: var(--salt-shadow-lowest);
1583
+ --salt-overlayable-shadow-region: var(--salt-shadow-lower);
1584
+ --salt-overlayable-shadow: var(--salt-shadow-lower);
1585
+ --salt-overlayable-shadow-hover: var(--salt-shadow-low);
1586
+ --salt-overlayable-shadow-popout: var(--salt-shadow-mediumLow);
1587
+ --salt-overlayable-shadow-drag: var(--salt-shadow-mediumLow);
1588
+ --salt-overlayable-shadow-modal: var(--salt-shadow-medium);
1011
1589
  --salt-overlayable-background: var(--salt-palette-alpha-higher);
1012
1590
  --salt-overlayable-background-hover: var(--salt-palette-alpha-contrast-lowest);
1013
1591
  --salt-overlayable-background-highlight: var(--salt-palette-alpha-contrast-medium);
1014
1592
  --salt-overlayable-background-rangeSelection: var(--salt-palette-alpha-contrast-mediumLow);
1015
1593
  }
1016
1594
 
1017
- /* css/characteristics/selectable-next.css */
1595
+ /* css/next/characteristics/selectable.css */
1018
1596
  .salt-theme.salt-theme-next {
1019
1597
  --salt-selectable-borderColor: var(--salt-palette-neutral);
1020
1598
  --salt-selectable-borderColor-hover: var(--salt-palette-accent-weak);
@@ -1034,7 +1612,7 @@
1034
1612
  --salt-selectable-background-selectedDisabled: var(--salt-palette-accent-weaker-disabled);
1035
1613
  }
1036
1614
 
1037
- /* css/characteristics/sentiment-next.css */
1615
+ /* css/next/characteristics/sentiment.css */
1038
1616
  .salt-theme-next.salt-theme {
1039
1617
  --salt-sentiment-negative-foreground-informative: var(--salt-palette-negative-strong);
1040
1618
  --salt-sentiment-positive-foreground-informative: var(--salt-palette-positive-strong);
@@ -1044,7 +1622,7 @@
1044
1622
  --salt-sentiment-neutral-track-disabled: var(--salt-palette-alpha-contrast-lower);
1045
1623
  }
1046
1624
 
1047
- /* css/characteristics/separable-next.css */
1625
+ /* css/next/characteristics/separable.css */
1048
1626
  .salt-theme.salt-theme-next {
1049
1627
  --salt-separable-primary-borderColor: var(--salt-palette-alpha-contrast-mediumHigh);
1050
1628
  --salt-separable-secondary-borderColor: var(--salt-palette-alpha-contrast-medium);
@@ -1057,7 +1635,7 @@
1057
1635
  --salt-separable-background-active: var(--salt-palette-accent);
1058
1636
  }
1059
1637
 
1060
- /* css/characteristics/status-next.css */
1638
+ /* css/next/characteristics/status.css */
1061
1639
  .salt-theme.salt-theme-next {
1062
1640
  --salt-status-info-foreground-decorative: var(--salt-palette-info);
1063
1641
  --salt-status-success-foreground-decorative: var(--salt-palette-positive);
@@ -1084,14 +1662,84 @@
1084
1662
  --salt-status-error-background-selected: var(--salt-palette-negative-weaker);
1085
1663
  }
1086
1664
 
1087
- /* css/characteristics/target-next.css */
1665
+ /* css/next/characteristics/target.css */
1088
1666
  .salt-theme.salt-theme-next {
1089
1667
  --salt-target-background-hover: var(--salt-palette-accent-weakest);
1090
1668
  --salt-target-borderColor-hover: var(--salt-palette-accent);
1091
1669
  }
1092
1670
 
1093
- /* css/characteristics/text-next.css */
1671
+ /* css/next/characteristics/text.css */
1672
+ .salt-theme.salt-theme-next {
1673
+ --salt-text-letterSpacing: 0;
1674
+ --salt-text-textAlign: left;
1675
+ --salt-text-textAlign-embedded: center;
1676
+ --salt-text-action-fontFamily: var(--salt-palette-text-fontFamily-action);
1677
+ --salt-text-action-letterSpacing: 0.6px;
1678
+ --salt-text-action-textTransform: uppercase;
1679
+ --salt-text-action-textAlign: center;
1680
+ --salt-text-action-fontWeight: var(--salt-palette-text-action-fontWeight);
1681
+ --salt-text-action-fontWeight-small: var(--salt-palette-text-action-fontWeight-small);
1682
+ --salt-text-action-fontWeight-strong: var(--salt-palette-text-action-fontWeight-strong);
1683
+ --salt-text-fontFamily: var(--salt-palette-text-fontFamily);
1684
+ --salt-text-fontWeight: var(--salt-palette-text-body-fontWeight);
1685
+ --salt-text-fontWeight-small: var(--salt-palette-text-body-fontWeight-small);
1686
+ --salt-text-fontWeight-strong: var(--salt-palette-text-body-fontWeight-strong);
1687
+ --salt-text-notation-fontFamily: var(--salt-palette-text-fontFamily);
1688
+ --salt-text-notation-fontWeight: var(--salt-palette-text-notation-fontWeight);
1689
+ --salt-text-notation-fontWeight-small: var(--salt-palette-text-notation-fontWeight-small);
1690
+ --salt-text-notation-fontWeight-strong: var(--salt-palette-text-notation-fontWeight-strong);
1691
+ --salt-text-h1-fontFamily: var(--salt-palette-text-fontFamily-heading);
1692
+ --salt-text-h1-fontWeight: var(--salt-palette-text-heading-fontWeight);
1693
+ --salt-text-h1-fontWeight-small: var(--salt-palette-text-heading-fontWeight-small);
1694
+ --salt-text-h1-fontWeight-strong: var(--salt-palette-text-heading-fontWeight-strong);
1695
+ --salt-text-h2-fontFamily: var(--salt-palette-text-fontFamily-heading);
1696
+ --salt-text-h2-fontWeight: var(--salt-palette-text-heading-fontWeight);
1697
+ --salt-text-h2-fontWeight-small: var(--salt-palette-text-heading-fontWeight-small);
1698
+ --salt-text-h2-fontWeight-strong: var(--salt-palette-text-heading-fontWeight-strong);
1699
+ --salt-text-h3-fontFamily: var(--salt-palette-text-fontFamily-heading);
1700
+ --salt-text-h3-fontWeight: var(--salt-palette-text-heading-fontWeight);
1701
+ --salt-text-h3-fontWeight-small: var(--salt-palette-text-heading-fontWeight-small);
1702
+ --salt-text-h3-fontWeight-strong: var(--salt-palette-text-heading-fontWeight-strong);
1703
+ --salt-text-h4-fontFamily: var(--salt-palette-text-fontFamily-heading);
1704
+ --salt-text-h4-fontWeight: var(--salt-palette-text-heading-fontWeight);
1705
+ --salt-text-h4-fontWeight-small: var(--salt-palette-text-heading-fontWeight-small);
1706
+ --salt-text-h4-fontWeight-strong: var(--salt-palette-text-heading-fontWeight-strong);
1707
+ --salt-text-label-fontFamily: var(--salt-palette-text-fontFamily);
1708
+ --salt-text-label-fontWeight: var(--salt-palette-text-body-fontWeight);
1709
+ --salt-text-label-fontWeight-small: var(--salt-palette-text-body-fontWeight-small);
1710
+ --salt-text-label-fontWeight-strong: var(--salt-palette-text-body-fontWeight-strong);
1711
+ --salt-text-display1-fontFamily: var(--salt-palette-text-fontFamily-heading);
1712
+ --salt-text-display1-fontWeight: var(--salt-palette-text-display-fontWeight);
1713
+ --salt-text-display1-fontWeight-strong: var(--salt-palette-text-display-fontWeight-strong);
1714
+ --salt-text-display1-fontWeight-small: var(--salt-palette-text-display-fontWeight-small);
1715
+ --salt-text-display2-fontFamily: var(--salt-palette-text-fontFamily-heading);
1716
+ --salt-text-display2-fontWeight: var(--salt-palette-text-display-fontWeight);
1717
+ --salt-text-display2-fontWeight-strong: var(--salt-palette-text-display-fontWeight-strong);
1718
+ --salt-text-display2-fontWeight-small: var(--salt-palette-text-display-fontWeight-small);
1719
+ --salt-text-display3-fontFamily: var(--salt-palette-text-fontFamily-heading);
1720
+ --salt-text-display3-fontWeight: var(--salt-palette-text-display-fontWeight);
1721
+ --salt-text-display3-fontWeight-strong: var(--salt-palette-text-display-fontWeight-strong);
1722
+ --salt-text-display3-fontWeight-small: var(--salt-palette-text-display-fontWeight-small);
1723
+ --salt-text-display4-fontFamily: var(--salt-palette-text-fontFamily-heading);
1724
+ --salt-text-display4-fontWeight: var(--salt-palette-text-display-fontWeight);
1725
+ --salt-text-display4-fontWeight-strong: var(--salt-palette-text-display-fontWeight-strong);
1726
+ --salt-text-display4-fontWeight-small: var(--salt-palette-text-display-fontWeight-small);
1727
+ --salt-text-code-fontFamily: var(--salt-palette-text-fontFamily-code);
1728
+ }
1094
1729
  .salt-theme-next.salt-density-touch {
1730
+ --salt-text-h1-fontSize: 42px;
1731
+ --salt-text-h1-lineHeight: 54px;
1732
+ --salt-text-h2-fontSize: 32px;
1733
+ --salt-text-h2-lineHeight: 42px;
1734
+ --salt-text-h3-fontSize: 24px;
1735
+ --salt-text-h3-lineHeight: 32px;
1736
+ --salt-text-h4-fontSize: 16px;
1737
+ --salt-text-h4-lineHeight: 20px;
1738
+ --salt-text-label-fontSize: 14px;
1739
+ --salt-text-label-lineHeight: 18px;
1740
+ --salt-text-fontSize: 16px;
1741
+ --salt-text-lineHeight: 20px;
1742
+ --salt-text-minHeight: 20px;
1095
1743
  --salt-text-display1-fontSize: 102px;
1096
1744
  --salt-text-display1-lineHeight: 133px;
1097
1745
  --salt-text-display2-fontSize: 84px;
@@ -1100,8 +1748,23 @@
1100
1748
  --salt-text-display3-lineHeight: 88px;
1101
1749
  --salt-text-display4-fontSize: 54px;
1102
1750
  --salt-text-display4-lineHeight: 70px;
1751
+ --salt-text-notation-fontSize: 14px;
1752
+ --salt-text-notation-lineHeight: 18px;
1103
1753
  }
1104
1754
  .salt-theme-next.salt-density-low {
1755
+ --salt-text-h1-fontSize: 32px;
1756
+ --salt-text-h1-lineHeight: 42px;
1757
+ --salt-text-h2-fontSize: 24px;
1758
+ --salt-text-h2-lineHeight: 32px;
1759
+ --salt-text-h3-fontSize: 18px;
1760
+ --salt-text-h3-lineHeight: 24px;
1761
+ --salt-text-h4-fontSize: 14px;
1762
+ --salt-text-h4-lineHeight: 18px;
1763
+ --salt-text-label-fontSize: 12px;
1764
+ --salt-text-label-lineHeight: 16px;
1765
+ --salt-text-fontSize: 14px;
1766
+ --salt-text-lineHeight: 18px;
1767
+ --salt-text-minHeight: 18px;
1105
1768
  --salt-text-display1-fontSize: 84px;
1106
1769
  --salt-text-display1-lineHeight: 109px;
1107
1770
  --salt-text-display2-fontSize: 68px;
@@ -1110,8 +1773,23 @@
1110
1773
  --salt-text-display3-lineHeight: 70px;
1111
1774
  --salt-text-display4-fontSize: 42px;
1112
1775
  --salt-text-display4-lineHeight: 55px;
1776
+ --salt-text-notation-fontSize: 12px;
1777
+ --salt-text-notation-lineHeight: 16px;
1113
1778
  }
1114
1779
  .salt-theme-next.salt-density-medium {
1780
+ --salt-text-h1-fontSize: 24px;
1781
+ --salt-text-h1-lineHeight: 32px;
1782
+ --salt-text-h2-fontSize: 18px;
1783
+ --salt-text-h2-lineHeight: 24px;
1784
+ --salt-text-h3-fontSize: 14px;
1785
+ --salt-text-h3-lineHeight: 18px;
1786
+ --salt-text-h4-fontSize: 12px;
1787
+ --salt-text-h4-lineHeight: 16px;
1788
+ --salt-text-label-fontSize: 11px;
1789
+ --salt-text-label-lineHeight: 14px;
1790
+ --salt-text-fontSize: 12px;
1791
+ --salt-text-lineHeight: 16px;
1792
+ --salt-text-minHeight: 16px;
1115
1793
  --salt-text-display1-fontSize: 68px;
1116
1794
  --salt-text-display1-lineHeight: 88px;
1117
1795
  --salt-text-display2-fontSize: 54px;
@@ -1120,8 +1798,23 @@
1120
1798
  --salt-text-display3-lineHeight: 55px;
1121
1799
  --salt-text-display4-fontSize: 32px;
1122
1800
  --salt-text-display4-lineHeight: 42px;
1801
+ --salt-text-notation-fontSize: 10px;
1802
+ --salt-text-notation-lineHeight: 13px;
1123
1803
  }
1124
1804
  .salt-theme-next.salt-density-high {
1805
+ --salt-text-h1-fontSize: 18px;
1806
+ --salt-text-h1-lineHeight: 24px;
1807
+ --salt-text-h2-fontSize: 14px;
1808
+ --salt-text-h2-lineHeight: 18px;
1809
+ --salt-text-h3-fontSize: 12px;
1810
+ --salt-text-h3-lineHeight: 16px;
1811
+ --salt-text-h4-fontSize: 11px;
1812
+ --salt-text-h4-lineHeight: 14px;
1813
+ --salt-text-label-fontSize: 10px;
1814
+ --salt-text-label-lineHeight: 13px;
1815
+ --salt-text-fontSize: 11px;
1816
+ --salt-text-lineHeight: 14px;
1817
+ --salt-text-minHeight: 14px;
1125
1818
  --salt-text-display1-fontSize: 54px;
1126
1819
  --salt-text-display1-lineHeight: 70px;
1127
1820
  --salt-text-display2-fontSize: 42px;
@@ -1130,9 +1823,234 @@
1130
1823
  --salt-text-display3-lineHeight: 42px;
1131
1824
  --salt-text-display4-fontSize: 24px;
1132
1825
  --salt-text-display4-lineHeight: 32px;
1826
+ --salt-text-notation-fontSize: 8px;
1827
+ --salt-text-notation-lineHeight: 10px;
1133
1828
  }
1134
1829
 
1135
- /* css/deprecated/characteristics-next.css */
1830
+ /* css/deprecated/foundations.css */
1831
+ .salt-theme {
1832
+ --salt-delay-instant: 100ms;
1833
+ --salt-delay-perceptible: 300ms;
1834
+ --salt-delay-notable: 1000ms;
1835
+ --salt-delay-cutoff: 10000ms;
1836
+ --salt-size-icon-base: var(--salt-icon-size-base);
1837
+ --salt-opacity-1: 0.15;
1838
+ --salt-opacity-2: 0.25;
1839
+ --salt-opacity-3: 0.4;
1840
+ --salt-opacity-4: 0.7;
1841
+ --salt-opacity-8: 0.08;
1842
+ --salt-opacity-0: 0;
1843
+ --salt-opacity-15: 0.15;
1844
+ --salt-opacity-25: 0.25;
1845
+ --salt-opacity-40: 0.4;
1846
+ --salt-opacity-45: 0.45;
1847
+ --salt-opacity-70: 0.7;
1848
+ --salt-shadow-0: none;
1849
+ --salt-shadow-1: 0 1px 3px 0 var(--salt-shadow-1-color);
1850
+ --salt-shadow-2: 0 2px 4px 0 var(--salt-shadow-2-color);
1851
+ --salt-shadow-3: 0 4px 8px 0 var(--salt-shadow-3-color);
1852
+ --salt-shadow-4: 0 6px 10px 0 var(--salt-shadow-4-color);
1853
+ --salt-shadow-5: 0 12px 40px 0 var(--salt-shadow-5-color);
1854
+ --salt-shadow-100: 0 1px 3px 0 var(--salt-shadow-100-color);
1855
+ --salt-shadow-200: 0 2px 4px 0 var(--salt-shadow-200-color);
1856
+ --salt-shadow-300: 0 4px 8px 0 var(--salt-shadow-300-color);
1857
+ --salt-shadow-400: 0 6px 10px 0 var(--salt-shadow-400-color);
1858
+ --salt-shadow-500: 0 12px 40px 0 var(--salt-shadow-500-color);
1859
+ --salt-typography-fontFamily: var(--salt-typography-fontFamily-openSans);
1860
+ --salt-typography-fontFamily-code: var(--salt-typography-fontFamily-ptMono);
1861
+ --salt-color-black-15a: rgba(var(--salt-color-black-rgb), 0.15);
1862
+ --salt-color-black-45a: rgba(var(--salt-color-black-rgb), 0.45);
1863
+ --salt-color-black-60a: rgba(var(--salt-color-black-rgb), 0.6);
1864
+ --salt-color-black-70a: rgba(var(--salt-color-black-rgb), 0.7);
1865
+ --salt-color-black-90a: rgba(var(--salt-color-black-rgb), 0.9);
1866
+ --salt-color-white-15a: rgba(var(--salt-color-white-rgb), 0.15);
1867
+ --salt-color-white-45a: rgba(var(--salt-color-white-rgb), 0.45);
1868
+ --salt-color-white-60a: rgba(var(--salt-color-white-rgb), 0.6);
1869
+ --salt-color-white-70a: rgba(var(--salt-color-white-rgb), 0.7);
1870
+ --salt-color-white-90a: rgba(var(--salt-color-white-rgb), 0.9);
1871
+ }
1872
+ .salt-theme[data-mode=light] {
1873
+ --salt-shadow-1-color: rgba(0, 0, 0, 0.1);
1874
+ --salt-shadow-2-color: rgba(0, 0, 0, 0.1);
1875
+ --salt-shadow-3-color: rgba(0, 0, 0, 0.15);
1876
+ --salt-shadow-4-color: rgba(0, 0, 0, 0.2);
1877
+ --salt-shadow-5-color: rgba(0, 0, 0, 0.3);
1878
+ --salt-shadow-100-color: rgba(0, 0, 0, 0.1);
1879
+ --salt-shadow-200-color: rgba(0, 0, 0, 0.1);
1880
+ --salt-shadow-300-color: rgba(0, 0, 0, 0.15);
1881
+ --salt-shadow-400-color: rgba(0, 0, 0, 0.2);
1882
+ --salt-shadow-500-color: rgba(0, 0, 0, 0.3);
1883
+ }
1884
+ .salt-theme[data-mode=dark] {
1885
+ --salt-shadow-1-color: rgba(0, 0, 0, 0.5);
1886
+ --salt-shadow-2-color: rgba(0, 0, 0, 0.5);
1887
+ --salt-shadow-3-color: rgba(0, 0, 0, 0.55);
1888
+ --salt-shadow-4-color: rgba(0, 0, 0, 0.55);
1889
+ --salt-shadow-5-color: rgba(0, 0, 0, 0.65);
1890
+ --salt-shadow-100-color: rgba(0, 0, 0, 0.5);
1891
+ --salt-shadow-200-color: rgba(0, 0, 0, 0.5);
1892
+ --salt-shadow-300-color: rgba(0, 0, 0, 0.55);
1893
+ --salt-shadow-400-color: rgba(0, 0, 0, 0.55);
1894
+ --salt-shadow-500-color: rgba(0, 0, 0, 0.65);
1895
+ }
1896
+ .salt-density-touch,
1897
+ .salt-density-low,
1898
+ .salt-density-medium,
1899
+ .salt-density-high {
1900
+ --salt-size-selection: var(--salt-size-selectable);
1901
+ --salt-size-brandBar: 4px;
1902
+ --salt-size-graphic-small: 12px;
1903
+ --salt-size-graphic-medium: 24px;
1904
+ --salt-size-graphic-large: 48px;
1905
+ --salt-size-divider-height: var(--salt-size-separator-height);
1906
+ --salt-size-divider-strokeWidth: var(--salt-size-separator-strokeWidth);
1907
+ --salt-size-detail: var(--salt-size-compact);
1908
+ --salt-size-basis-unit: 4px;
1909
+ --salt-size-adornmentGap: calc(0.75 * var(--salt-size-unit));
1910
+ --salt-size-container-spacing: calc(3 * var(--salt-size-unit));
1911
+ --salt-size-separator-strokeWidth: 1px;
1912
+ --salt-size-separator-height: calc(var(--salt-size-compact) + 1.5 * var(--salt-size-basis-unit));
1913
+ --salt-size-sharktooth-height: 5px;
1914
+ --salt-size-sharktooth-width: 10px;
1915
+ --salt-size-stackable: calc(var(--salt-size-base) + var(--salt-size-unit));
1916
+ --salt-size-border: 1px;
1917
+ --salt-size-bar-small: 2px;
1918
+ --salt-size-border-strong: 2px;
1919
+ --salt-zIndex-docked: 1050;
1920
+ }
1921
+ .salt-density-high {
1922
+ --salt-size-unit: calc(var(--salt-size-basis-unit) * 1);
1923
+ --salt-size-compact: calc(var(--salt-size-basis-unit) * 1.5);
1924
+ --salt-size-accent: calc(var(--salt-size-basis-unit) * 0.5);
1925
+ --salt-icon-size-base: 10px;
1926
+ --salt-icon-size-status-adornment: 6px;
1927
+ }
1928
+ .salt-density-medium {
1929
+ --salt-size-unit: calc(var(--salt-size-basis-unit) * 2);
1930
+ --salt-size-compact: calc(var(--salt-size-basis-unit) * 2);
1931
+ --salt-size-accent: calc(var(--salt-size-basis-unit) * 1);
1932
+ --salt-icon-size-base: 12px;
1933
+ --salt-icon-size-status-adornment: 8px;
1934
+ }
1935
+ .salt-density-low {
1936
+ --salt-size-unit: calc(var(--salt-size-basis-unit) * 3);
1937
+ --salt-size-compact: calc(var(--salt-size-basis-unit) * 2.5);
1938
+ --salt-size-accent: calc(var(--salt-size-basis-unit) * 1.5);
1939
+ --salt-icon-size-base: 14px;
1940
+ --salt-icon-size-status-adornment: 10px;
1941
+ }
1942
+ .salt-density-touch {
1943
+ --salt-size-unit: calc(var(--salt-size-basis-unit) * 4);
1944
+ --salt-size-compact: calc(var(--salt-size-basis-unit) * 3);
1945
+ --salt-size-accent: calc(var(--salt-size-basis-unit) * 2);
1946
+ --salt-icon-size-base: 16px;
1947
+ --salt-icon-size-status-adornment: 12px;
1948
+ }
1949
+
1950
+ /* css/deprecated/characteristics.css */
1951
+ .salt-theme {
1952
+ --salt-container-borderStyle: solid;
1953
+ --salt-editable-borderStyle: solid;
1954
+ --salt-editable-borderStyle-hover: solid;
1955
+ --salt-editable-borderStyle-active: solid;
1956
+ --salt-editable-borderStyle-disabled: solid;
1957
+ --salt-editable-borderStyle-readonly: solid;
1958
+ --salt-editable-cursor-hover: text;
1959
+ --salt-editable-cursor-active: text;
1960
+ --salt-editable-cursor-disabled: not-allowed;
1961
+ --salt-editable-cursor-readonly: text;
1962
+ --salt-editable-borderWidth-active: 2px;
1963
+ --salt-editable-help-fontStyle: italic;
1964
+ --salt-measured-borderStyle: solid;
1965
+ --salt-measured-borderStyle-active: solid;
1966
+ --salt-measured-borderStyle-complete: solid;
1967
+ --salt-measured-borderStyle-incomplete: dotted;
1968
+ --salt-measured-borderWidth: 2px;
1969
+ --salt-measured-borderWidth-active: 2px;
1970
+ --salt-measured-borderWidth-complete: 2px;
1971
+ --salt-measured-borderWidth-incomplete: 2px;
1972
+ --salt-measured-fontWeight: var(--salt-typography-fontWeight-semiBold);
1973
+ --salt-measured-textAlign: center;
1974
+ --salt-selectable-borderStyle: solid;
1975
+ --salt-selectable-borderStyle-hover: solid;
1976
+ --salt-selectable-borderStyle-selected: solid;
1977
+ --salt-selectable-borderStyle-blurSelected: solid;
1978
+ --salt-selectable-cursor-hover: pointer;
1979
+ --salt-selectable-cursor-selected: pointer;
1980
+ --salt-selectable-cursor-blurSelected: pointer;
1981
+ --salt-selectable-cursor-disabled: not-allowed;
1982
+ --salt-selectable-cursor-readonly: not-allowed;
1983
+ --salt-separable-borderStyle: solid;
1984
+ --salt-draggable-horizontal-cursor-hover: row-resize;
1985
+ --salt-draggable-horizontal-cursor-active: row-resize;
1986
+ --salt-draggable-vertical-cursor-hover: col-resize;
1987
+ --salt-draggable-vertical-cursor-active: col-resize;
1988
+ --salt-draggable-grab-cursor-hover: grab;
1989
+ --salt-draggable-grab-cursor-active: grabbing;
1990
+ --salt-actionable-cursor-hover: pointer;
1991
+ --salt-actionable-cursor-active: pointer;
1992
+ --salt-actionable-cursor-disabled: not-allowed;
1993
+ --salt-actionable-letterSpacing: 0.6px;
1994
+ --salt-actionable-textTransform: uppercase;
1995
+ --salt-actionable-textAlign: center;
1996
+ --salt-actionable-primary-fontWeight: var(--salt-typography-fontWeight-bold);
1997
+ --salt-actionable-cta-fontWeight: var(--salt-typography-fontWeight-bold);
1998
+ --salt-actionable-secondary-fontWeight: var(--salt-typography-fontWeight-semiBold);
1999
+ --salt-target-cursor-disabled: not-allowed;
2000
+ --salt-target-borderStyle: dashed;
2001
+ --salt-target-borderStyle-hover: solid;
2002
+ --salt-target-borderStyle-disabled: dashed;
2003
+ --salt-text-link-textDecoration: underline;
2004
+ --salt-text-link-textDecoration-hover: none;
2005
+ --salt-text-link-textDecoration-selected: underline;
2006
+ --salt-text-textDecoration: var(--salt-typography-textDecoration-none);
2007
+ --salt-text-textTransform: none;
2008
+ --salt-navigable-cursor-active: pointer;
2009
+ --salt-navigable-cursor-hover: pointer;
2010
+ --salt-navigable-cursor-disabled: not-allowed;
2011
+ --salt-navigable-cursor-edit: text;
2012
+ --salt-navigable-textDecoration: var(--salt-typography-textDecoration-underline);
2013
+ --salt-navigable-textDecoration-hover: var(--salt-typography-textDecoration-none);
2014
+ --salt-navigable-textDecoration-selected: var(--salt-typography-textDecoration-underline);
2015
+ --salt-navigable-fontWeight: var(--salt-typography-fontWeight-regular);
2016
+ --salt-navigable-fontWeight-hover: var(--salt-typography-fontWeight-regular);
2017
+ --salt-navigable-fontWeight-active: var(--salt-typography-fontWeight-semiBold);
2018
+ --salt-navigable-fontWeight-edit: var(--salt-typography-fontWeight-regular);
2019
+ --salt-accent-fontWeight: var(--salt-typography-fontWeight-semiBold);
2020
+ --salt-track-borderStyle: solid;
2021
+ --salt-track-borderStyle-active: solid;
2022
+ --salt-track-borderStyle-complete: solid;
2023
+ --salt-track-borderStyle-incomplete: dotted;
2024
+ --salt-track-borderWidth: 2px;
2025
+ --salt-track-borderWidth-active: 2px;
2026
+ --salt-track-borderWidth-complete: 2px;
2027
+ --salt-track-borderWidth-incomplete: 2px;
2028
+ --salt-track-fontWeight: var(--salt-typography-fontWeight-semiBold);
2029
+ --salt-track-textAlign: center;
2030
+ --salt-taggable-cursor-hover: pointer;
2031
+ --salt-taggable-cursor-active: pointer;
2032
+ --salt-taggable-cursor-disabled: not-allowed;
2033
+ --salt-overlayable-shadow-scroll-color: var(--salt-shadow-1-color);
2034
+ --salt-overlayable-shadow-borderRegion: var(--salt-shadow-2);
2035
+ }
2036
+ .salt-density-high {
2037
+ --salt-accent-fontSize: 8px;
2038
+ --salt-accent-lineHeight: 11px;
2039
+ }
2040
+ .salt-density-medium {
2041
+ --salt-accent-fontSize: 10px;
2042
+ --salt-accent-lineHeight: 13px;
2043
+ }
2044
+ .salt-density-low {
2045
+ --salt-accent-fontSize: 12px;
2046
+ --salt-accent-lineHeight: 16px;
2047
+ }
2048
+ .salt-density-touch {
2049
+ --salt-accent-fontSize: 14px;
2050
+ --salt-accent-lineHeight: 18px;
2051
+ }
2052
+
2053
+ /* css/next/deprecated/characteristics.css */
1136
2054
  .salt-theme.salt-theme-next {
1137
2055
  --salt-navigable-indicator-active: var(--salt-palette-accent);
1138
2056
  --salt-navigable-background-hover: var(--salt-palette-alpha-contrast-lowest);
@@ -1142,15 +2060,60 @@
1142
2060
  --salt-status-positive-foreground: var(--salt-palette-positive);
1143
2061
  --salt-track-borderColor: var(--salt-palette-alpha-contrast-high);
1144
2062
  --salt-track-borderColor-disabled: var(--salt-palette-alpha-contrast-lower);
2063
+ --salt-actionable-accented-bold-background-disabled: var(--salt-palette-accent-disabled);
2064
+ --salt-actionable-accented-bold-borderColor-disabled: var(--salt-palette-alpha-none);
2065
+ --salt-actionable-accented-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
2066
+ --salt-actionable-accented-background-disabled: var(--salt-palette-alpha-none);
2067
+ --salt-actionable-accented-borderColor-disabled: var(--salt-palette-accent-disabled);
2068
+ --salt-actionable-accented-foreground-disabled: var(--salt-palette-accent-strong-disabled);
2069
+ --salt-actionable-accented-subtle-background-disabled: var(--salt-palette-alpha-none);
2070
+ --salt-actionable-accented-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
2071
+ --salt-actionable-accented-subtle-foreground-disabled: var(--salt-palette-accent-strong-disabled);
2072
+ --salt-actionable-bold-background-disabled: var(--salt-palette-neutral-disabled);
2073
+ --salt-actionable-bold-borderColor-disabled: var(--salt-palette-alpha-none);
2074
+ --salt-actionable-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
2075
+ --salt-actionable-background-disabled: var(--salt-palette-alpha-none);
2076
+ --salt-actionable-borderColor-disabled: var(--salt-palette-neutral-disabled);
2077
+ --salt-actionable-foreground-disabled: var(--salt-palette-foreground-primary-disabled);
2078
+ --salt-actionable-subtle-background-disabled: var(--salt-palette-alpha-none);
2079
+ --salt-actionable-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
2080
+ --salt-actionable-subtle-foreground-disabled: var(--salt-palette-foreground-primary-disabled);
2081
+ --salt-actionable-negative-bold-background-disabled: var(--salt-palette-negative-disabled);
2082
+ --salt-actionable-negative-bold-borderColor-disabled: var(--salt-palette-alpha-none);
2083
+ --salt-actionable-negative-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
2084
+ --salt-actionable-negative-background-disabled: var(--salt-palette-alpha-none);
2085
+ --salt-actionable-negative-borderColor-disabled: var(--salt-palette-negative-disabled);
2086
+ --salt-actionable-negative-foreground-disabled: var(--salt-palette-negative-strong-disabled);
2087
+ --salt-actionable-negative-subtle-background-disabled: var(--salt-palette-alpha-none);
2088
+ --salt-actionable-negative-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
2089
+ --salt-actionable-negative-subtle-foreground-disabled: var(--salt-palette-negative-strong-disabled);
2090
+ --salt-actionable-positive-bold-background-disabled: var(--salt-palette-positive-disabled);
2091
+ --salt-actionable-positive-bold-borderColor-disabled: var(--salt-palette-alpha-none);
2092
+ --salt-actionable-positive-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
2093
+ --salt-actionable-positive-background-disabled: var(--salt-palette-alpha-none);
2094
+ --salt-actionable-positive-borderColor-disabled: var(--salt-palette-positive-disabled);
2095
+ --salt-actionable-positive-foreground-disabled: var(--salt-palette-positive-strong-disabled);
2096
+ --salt-actionable-positive-subtle-background-disabled: var(--salt-palette-alpha-none);
2097
+ --salt-actionable-positive-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
2098
+ --salt-actionable-positive-subtle-foreground-disabled: var(--salt-palette-positive-strong-disabled);
2099
+ --salt-actionable-caution-bold-background-disabled: var(--salt-palette-warning-disabled);
2100
+ --salt-actionable-caution-bold-borderColor-disabled: var(--salt-palette-alpha-none);
2101
+ --salt-actionable-caution-bold-foreground-disabled: var(--salt-palette-foreground-primary-alt-disabled);
2102
+ --salt-actionable-caution-background-disabled: var(--salt-palette-alpha-none);
2103
+ --salt-actionable-caution-borderColor-disabled: var(--salt-palette-warning-disabled);
2104
+ --salt-actionable-caution-foreground-disabled: var(--salt-palette-warning-strong-disabled);
2105
+ --salt-actionable-caution-subtle-background-disabled: var(--salt-palette-alpha-none);
2106
+ --salt-actionable-caution-subtle-borderColor-disabled: var(--salt-palette-alpha-none);
2107
+ --salt-actionable-caution-subtle-foreground-disabled: var(--salt-palette-warning-strong-disabled);
1145
2108
  }
1146
2109
 
1147
- /* css/deprecated/foundations-next.css */
2110
+ /* css/next/deprecated/foundations.css */
1148
2111
  .salt-theme.salt-theme-next {
1149
2112
  --salt-color-background-gradientlight-rgb: var(--salt-color-background-titanium-rgb);
1150
2113
  --salt-color-background-gradientlight: var(--salt-color-background-titanium);
1151
2114
  }
1152
2115
 
1153
- /* css/deprecated/palette-next.css */
2116
+ /* css/next/deprecated/palette.css */
1154
2117
  .salt-theme[data-mode=light] {
1155
2118
  --salt-palette-foreground-active: var(--salt-color-blue-700);
1156
2119
  --salt-palette-foreground-hover: var(--salt-color-blue-600);
@@ -1158,6 +2121,23 @@
1158
2121
  --salt-palette-positive-weak: var(--salt-color-green-100);
1159
2122
  --salt-palette-info-weak: var(--salt-color-blue-100);
1160
2123
  --salt-palette-negative-weak: var(--salt-color-red-100);
2124
+ --salt-palette-warning-action-active: var(--salt-color-orange-800);
2125
+ --salt-palette-neutral-action-active: var(--salt-color-gray-800);
2126
+ --salt-palette-positive-action-active: var(--salt-color-green-800);
2127
+ --salt-palette-negative-action-active: var(--salt-color-red-800);
2128
+ --salt-palette-warning-action-hover: var(--salt-color-orange-600);
2129
+ --salt-palette-neutral-action-hover: var(--salt-color-gray-600);
2130
+ --salt-palette-positive-action-hover: var(--salt-color-green-600);
2131
+ --salt-palette-negative-action-hover: var(--salt-color-red-600);
2132
+ --salt-palette-negative-disabled: var(--salt-color-red-500-40a);
2133
+ --salt-palette-negative-strong-disabled: var(--salt-color-red-600-40a);
2134
+ --salt-palette-positive-disabled: var(--salt-color-green-500-40a);
2135
+ --salt-palette-positive-strong-disabled: var(--salt-color-green-600-40a);
2136
+ --salt-palette-warning-disabled: var(--salt-color-orange-500-40a);
2137
+ --salt-palette-warning-strong-disabled: var(--salt-color-orange-600-40a);
2138
+ --salt-palette-neutral-weaker-disabled: var(--salt-color-gray-300-40a);
2139
+ --salt-palette-neutral-weaker-readonly: var(--salt-color-gray-300-10a);
2140
+ --salt-palette-neutral-weak-disabled: var(--salt-color-gray-400-40a);
1161
2141
  }
1162
2142
  .salt-theme[data-mode=dark] {
1163
2143
  --salt-palette-foreground-active: var(--salt-color-blue-300);
@@ -1166,6 +2146,47 @@
1166
2146
  --salt-palette-positive-weak: var(--salt-color-green-900);
1167
2147
  --salt-palette-info-weak: var(--salt-color-blue-900);
1168
2148
  --salt-palette-negative-weak: var(--salt-color-red-900);
2149
+ --salt-palette-warning-action-active: var(--salt-color-orange-800);
2150
+ --salt-palette-neutral-action-active: var(--salt-color-gray-800);
2151
+ --salt-palette-positive-action-active: var(--salt-color-green-800);
2152
+ --salt-palette-negative-action-active: var(--salt-color-red-800);
2153
+ --salt-palette-warning-action-hover: var(--salt-color-orange-600);
2154
+ --salt-palette-neutral-action-hover: var(--salt-color-gray-600);
2155
+ --salt-palette-positive-action-hover: var(--salt-color-green-600);
2156
+ --salt-palette-negative-action-hover: var(--salt-color-red-600);
2157
+ --salt-palette-negative-disabled: var(--salt-color-red-500-40a);
2158
+ --salt-palette-negative-strong-disabled: var(--salt-color-red-400-40a);
2159
+ --salt-palette-positive-disabled: var(--salt-color-green-500-40a);
2160
+ --salt-palette-positive-strong-disabled: var(--salt-color-green-400-40a);
2161
+ --salt-palette-warning-disabled: var(--salt-color-orange-500-40a);
2162
+ --salt-palette-warning-strong-disabled: var(--salt-color-orange-400-40a);
2163
+ --salt-palette-neutral-weaker-disabled: var(--salt-color-gray-700-40a);
2164
+ --salt-palette-neutral-weaker-readonly: var(--salt-color-gray-700-10a);
2165
+ --salt-palette-neutral-weak-disabled: var(--salt-color-gray-600-40a);
2166
+ }
2167
+ .salt-theme.salt-theme-next[data-mode=light][data-accent=blue] {
2168
+ --salt-palette-accent-action-active: var(--salt-color-blue-800);
2169
+ --salt-palette-accent-action-hover: var(--salt-color-blue-600);
2170
+ --salt-palette-accent-strong-disabled: var(--salt-color-blue-600-40a);
2171
+ --salt-palette-accent-stronger-disabled: var(--salt-color-blue-700-40a);
2172
+ }
2173
+ .salt-theme.salt-theme-next[data-mode=dark][data-accent=blue] {
2174
+ --salt-palette-accent-action-active: var(--salt-color-blue-800);
2175
+ --salt-palette-accent-action-hover: var(--salt-color-blue-600);
2176
+ --salt-palette-accent-strong-disabled: var(--salt-color-blue-400-40a);
2177
+ --salt-palette-accent-stronger-disabled: var(--salt-color-blue-300-40a);
2178
+ }
2179
+ .salt-theme.salt-theme-next[data-mode=light][data-accent=teal] {
2180
+ --salt-palette-accent-action-active: var(--salt-color-teal-800);
2181
+ --salt-palette-accent-action-hover: var(--salt-color-teal-600);
2182
+ --salt-palette-accent-strong-disabled: var(--salt-color-teal-600-40a);
2183
+ --salt-palette-accent-stronger-disabled: var(--salt-color-teal-700-40a);
2184
+ }
2185
+ .salt-theme.salt-theme-next[data-mode=dark][data-accent=teal] {
2186
+ --salt-palette-accent-action-active: var(--salt-color-teal-800);
2187
+ --salt-palette-accent-action-hover: var(--salt-color-teal-600);
2188
+ --salt-palette-accent-strong-disabled: var(--salt-color-teal-400-40a);
2189
+ --salt-palette-accent-stronger-disabled: var(--salt-color-teal-300-40a);
1169
2190
  }
1170
2191
 
1171
2192
  /* css/theme-next.css */