@aurodesignsystem/design-tokens 5.2.1 → 5.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +9 -20
- package/dist/CSSCustomProperties--bundled.css +142 -1
- package/dist/alaska/CSSCustomProperties--alaska.css +48 -1
- package/dist/alaska/JSObject--allTokens.js +1426 -1
- package/dist/alaska/SCSSVariables--alaska.scss +48 -1
- package/dist/alaska/SCSSVariablesMapFlat--alaska.scss +48 -1
- package/dist/alaska/primitives--alaska.scss +1 -1
- package/dist/alaska-classic/CSSCustomProperties--alaskaClassic.css +48 -1
- package/dist/alaska-classic/JSObject--allTokens.js +1426 -1
- package/dist/alaska-classic/SCSSVariables--alaskaClassic.scss +48 -1
- package/dist/alaska-classic/SCSSVariablesMapFlat--alaskaClassic.scss +48 -1
- package/dist/alaska-classic/primitives--alaskaClassic.scss +1 -1
- package/dist/auro-classic/CSSCustomProperties.css +1 -1
- package/dist/auro-classic/CSSSizeCustomProperties.css +1 -1
- package/dist/auro-classic/JSData--color.js +1 -1
- package/dist/auro-classic/JSObject--allTokens.js +1 -1
- package/dist/auro-classic/JSObject--deprecated.js +1 -1
- package/dist/auro-classic/JSVariables--color.js +1 -1
- package/dist/auro-classic/SCSSVariableMap.scss +1 -1
- package/dist/auro-classic/SCSSVariables.scss +1 -1
- package/dist/auro-classic/SCSSVariablesMapFlat.scss +1 -1
- package/dist/auro-classic/SassCustomProperties.scss +1 -1
- package/dist/auro-classic/SassSizeCustomProperties.scss +1 -1
- package/dist/hawaiian/CSSCustomProperties--hawaiian.css +48 -1
- package/dist/hawaiian/JSObject--allTokens.js +1426 -1
- package/dist/hawaiian/SCSSVariables--hawaiian.scss +48 -1
- package/dist/hawaiian/SCSSVariablesMapFlat--hawaiian.scss +48 -1
- package/dist/hawaiian/primitives--hawaiian.scss +1 -1
- package/dist/transparent/CSSCustomProperties--transparent.css +1 -1
- package/package.json +3 -2
- package/src/themes/alaska/component.json +392 -0
- package/src/themes/alaska-classic/component.json +392 -0
- package/src/themes/hawaiian/component.json +392 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Semantic Release Automated Changelog
|
|
2
2
|
|
|
3
|
+
# [5.3.0](https://github.com/AlaskaAirlines/AuroDesignTokens/compare/v5.2.1...v5.3.0) (2025-03-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add initial component tokens ([b1752ec](https://github.com/AlaskaAirlines/AuroDesignTokens/commit/b1752ec674c6cddda86a9ba2c826af7b43a20d53))
|
|
9
|
+
|
|
3
10
|
## [5.2.1](https://github.com/AlaskaAirlines/AuroDesignTokens/compare/v5.2.0...v5.2.1) (2025-03-06)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -95,7 +95,7 @@ Using the `https://cdn.jsdelivr.net/npm/` CDN:
|
|
|
95
95
|
|
|
96
96
|
**Note:** Exercise caution when using this CDN solution. The Auro team is NOT responsible for the maintenance of the CDN `https://cdn.jsdelivr.net/` [uptime](https://www.isitupdown.com/jsdelivr) and are unable to effectively troubleshoot response issues. It is recommended to use the installed version of Auro Design Tokens for critical UIs.
|
|
97
97
|
|
|
98
|
-
## Theme Scoping with
|
|
98
|
+
## Theme Scoping with data-aag-theme
|
|
99
99
|
|
|
100
100
|
The Auro Design System supports multiple themes that can be applied using the `data-aag-theme` attribute.
|
|
101
101
|
|
|
@@ -260,7 +260,13 @@ The tokens in the `themes` directory (`src/themes/alaska/`, `src/themes/hawaiian
|
|
|
260
260
|
- Provide usage descriptions explaining their intended context
|
|
261
261
|
- Are marked as `"public": true` for use in components
|
|
262
262
|
|
|
263
|
-
#### 4.
|
|
263
|
+
#### 4. Component Tokens: UI Element Styling
|
|
264
|
+
|
|
265
|
+
Component tokens, prefixed with `--ds-component-` in the CSS custom properties files and found in `component.json` for each theme, define the visual characteristics of UI components.
|
|
266
|
+
|
|
267
|
+
These component tokens reference semantic tokens and create a higher-level abstraction specifically for UI components.
|
|
268
|
+
|
|
269
|
+
#### 5. Multi-level Semantic References
|
|
264
270
|
|
|
265
271
|
Semantic tokens can reference other semantic tokens, not just primitives:
|
|
266
272
|
- For example, `font.weight.heading.heading1` can reference `{font.weight.book.value}`
|
|
@@ -273,22 +279,6 @@ Semantic tokens can reference other semantic tokens, not just primitives:
|
|
|
273
279
|
|
|
274
280
|
UI components should never directly use primitives (either `base` or theme-specific).
|
|
275
281
|
|
|
276
|
-
Instead, always use semantic theme tokens:
|
|
277
|
-
|
|
278
|
-
```css
|
|
279
|
-
/* ❌ Incorrect: Using primitives directly */
|
|
280
|
-
.element {
|
|
281
|
-
color: var(--ds-color-atlas-600); /* Theme-specific primitive */
|
|
282
|
-
background-color: var(--ds-color-gray-100); /* Base primitive */
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
/* ✅ Correct: Using semantic theme tokens */
|
|
286
|
-
.element {
|
|
287
|
-
color: var(--ds-color-brand-primary);
|
|
288
|
-
background-color: var(--ds-color-surface-neutralSubtle);
|
|
289
|
-
}
|
|
290
|
-
```
|
|
291
|
-
|
|
292
282
|
### Benefits of This Architecture
|
|
293
283
|
|
|
294
284
|
This three-tiered approach provides several advantages:
|
|
@@ -299,8 +289,6 @@ This three-tiered approach provides several advantages:
|
|
|
299
289
|
4. **Design Consistency**: Related UI elements share the same semantic tokens across different contexts
|
|
300
290
|
5. **Clear Migration Path**: Supports multiple versions during transition periods
|
|
301
291
|
|
|
302
|
-
|
|
303
|
-
|
|
304
292
|
## Migration from v4.x to v5.x
|
|
305
293
|
|
|
306
294
|
With the release of Auro Design Tokens 5.x significant changes have occurred:
|
|
@@ -308,6 +296,7 @@ With the release of Auro Design Tokens 5.x significant changes have occurred:
|
|
|
308
296
|
- `./dist/` directory has been restructured. All file imports will need to have their paths updated.
|
|
309
297
|
- The v4.x default theme is now called `Auro Classic`. The files for this theme may be found in `./dist/auro-classic`. This theme is now deprecated.
|
|
310
298
|
- **NEW** Alaska theme found in `./dist/alaska`.
|
|
299
|
+
- **NEW** Alaska Classic theme found in `./dist/alaska-classic`.
|
|
311
300
|
- **NEW** Hawaiian theme found in `./dist/hawaiian`.
|
|
312
301
|
- The Alaska theme and Hawaiian theme are intended to be used one at a time within a given DOM `scope`. It is not supported to load both themes into the same `scope` of the document.
|
|
313
302
|
- v4.x and v5.x token names are unique to each version. As such, the `./dist/auro-classic` theme can be loaded with any of the other themes to support old Auro component versions that do not yet run on the v5.x tokens.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
Do not edit directly
|
|
3
|
-
Generated on
|
|
3
|
+
Generated on Tue, 11 Mar 2025 19:16:34 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
/* Properties from CSSCustomProperties--alaska.css */
|
|
@@ -58,6 +58,53 @@
|
|
|
58
58
|
--ds-color-texticon-inverse: #ffffff;
|
|
59
59
|
--ds-color-texticon-inverse-disabled: #d0d0d0;
|
|
60
60
|
--ds-color-texticon-muted: #676767;
|
|
61
|
+
--ds-component-selected-hover: #00274a;
|
|
62
|
+
--ds-component-focused: #01426a;
|
|
63
|
+
--ds-component-inverse-focused: #ffffff;
|
|
64
|
+
--ds-component-background: #ffffff;
|
|
65
|
+
--ds-component-background-hover: #f2f2f2;
|
|
66
|
+
--ds-component-background-disabled: #dddddd;
|
|
67
|
+
--ds-component-background-muted: #f7f7f7;
|
|
68
|
+
--ds-component-background-strong: #7e7e7e;
|
|
69
|
+
--ds-component-button-primary-text: #ffffff;
|
|
70
|
+
--ds-component-button-primary-border: #01426a;
|
|
71
|
+
--ds-component-button-primary-border-hover: #00274a;
|
|
72
|
+
--ds-component-button-primary-background: #01426a;
|
|
73
|
+
--ds-component-button-primary-background-hover: #00274a;
|
|
74
|
+
--ds-component-button-primary-background-active: #00274a;
|
|
75
|
+
--ds-component-button-primary-text-inverse: #01426a;
|
|
76
|
+
--ds-component-button-primary-border-inverse: #ffffff;
|
|
77
|
+
--ds-component-button-primary-background-inverse: #ffffff;
|
|
78
|
+
--ds-component-button-primary-border-inverse-hover: #ebf3f9;
|
|
79
|
+
--ds-component-button-primary-background-inverse-hover: #ebf3f9;
|
|
80
|
+
--ds-component-button-secondary-text: #01426a;
|
|
81
|
+
--ds-component-button-secondary-text-hover: #00274a;
|
|
82
|
+
--ds-component-button-secondary-border: #01426a;
|
|
83
|
+
--ds-component-button-secondary-border-hover: #00274a;
|
|
84
|
+
--ds-component-button-secondary-background: #ffffffcc;
|
|
85
|
+
--ds-component-button-secondary-background-hover: #ffffff80;
|
|
86
|
+
--ds-component-button-secondary-text-inverse: #ffffff;
|
|
87
|
+
--ds-component-button-secondary-border-inverse: #ffffff;
|
|
88
|
+
--ds-component-button-secondary-background-inverse-hover: #ffffffcc;
|
|
89
|
+
--ds-component-button-tertiary-text: #01426a;
|
|
90
|
+
--ds-component-button-tertiary-text-hover: #00274a;
|
|
91
|
+
--ds-component-button-tertiary-background: #0000000d;
|
|
92
|
+
--ds-component-button-tertiary-background-hover: #0000001a;
|
|
93
|
+
--ds-component-button-tertiary-border: #0000000d;
|
|
94
|
+
--ds-component-button-tertiary-border-hover: #0000001a;
|
|
95
|
+
--ds-component-button-tertiary-text-inverse: #ffffff;
|
|
96
|
+
--ds-component-button-tertiary-background-inverse: #ffffff0d;
|
|
97
|
+
--ds-component-button-tertiary-background-inverse-hover: #ffffff1a;
|
|
98
|
+
--ds-component-button-tertiary-border-inverse: #ffffff0d;
|
|
99
|
+
--ds-component-button-tertiary-border-inverse-hover: #ffffff1a;
|
|
100
|
+
--ds-component-boolean-indicator: #ffffff;
|
|
101
|
+
--ds-component-boolean-is-false: #ffffff;
|
|
102
|
+
--ds-component-boolean-is-false-hover: #f2f2f2;
|
|
103
|
+
--ds-component-boolean-is-false-border: #585e67;
|
|
104
|
+
--ds-component-boolean-is-true: #01426a;
|
|
105
|
+
--ds-component-boolean-is-true-hover: #00274a;
|
|
106
|
+
--ds-component-boolean-error: #e53339;
|
|
107
|
+
--ds-component-boolean-error-hover: #b1161c;
|
|
61
108
|
--ds-font-weight-body-default: Book;
|
|
62
109
|
--ds-font-weight-body-large: Book;
|
|
63
110
|
--ds-font-weight-body-small: Book;
|
|
@@ -127,6 +174,53 @@
|
|
|
127
174
|
--ds-color-texticon-inverse: #ffffff;
|
|
128
175
|
--ds-color-texticon-inverse-disabled: #d0d0d0;
|
|
129
176
|
--ds-color-texticon-muted: #676767;
|
|
177
|
+
--ds-component-selected-hover: #003761;
|
|
178
|
+
--ds-component-focused: #0074ca;
|
|
179
|
+
--ds-component-inverse-focused: #5de3f7;
|
|
180
|
+
--ds-component-background: #ffffff;
|
|
181
|
+
--ds-component-background-hover: #f2f2f2;
|
|
182
|
+
--ds-component-background-disabled: #dddddd;
|
|
183
|
+
--ds-component-background-muted: #f7f7f7;
|
|
184
|
+
--ds-component-background-strong: #7e7e7e;
|
|
185
|
+
--ds-component-button-primary-text: #ffffff;
|
|
186
|
+
--ds-component-button-primary-border: #0074ca;
|
|
187
|
+
--ds-component-button-primary-border-hover: #003761;
|
|
188
|
+
--ds-component-button-primary-background: #0074ca;
|
|
189
|
+
--ds-component-button-primary-background-hover: #003761;
|
|
190
|
+
--ds-component-button-primary-background-active: #003761;
|
|
191
|
+
--ds-component-button-primary-text-inverse: #2a2a2a;
|
|
192
|
+
--ds-component-button-primary-border-inverse: #5de3f7;
|
|
193
|
+
--ds-component-button-primary-background-inverse: #5de3f7;
|
|
194
|
+
--ds-component-button-primary-border-inverse-hover: #b4eff9;
|
|
195
|
+
--ds-component-button-primary-background-inverse-hover: #b4eff9;
|
|
196
|
+
--ds-component-button-secondary-text: #0074ca;
|
|
197
|
+
--ds-component-button-secondary-text-hover: #01426a;
|
|
198
|
+
--ds-component-button-secondary-border: #0074ca;
|
|
199
|
+
--ds-component-button-secondary-border-hover: #003761;
|
|
200
|
+
--ds-component-button-secondary-background: #ffffff;
|
|
201
|
+
--ds-component-button-secondary-background-hover: #f2f2f2;
|
|
202
|
+
--ds-component-button-secondary-text-inverse: #5de3f7;
|
|
203
|
+
--ds-component-button-secondary-border-inverse: #5de3f7;
|
|
204
|
+
--ds-component-button-secondary-background-inverse-hover: #ebfafd;
|
|
205
|
+
--ds-component-button-tertiary-text: #0074ca;
|
|
206
|
+
--ds-component-button-tertiary-text-hover: #003761;
|
|
207
|
+
--ds-component-button-tertiary-background: #0000000d;
|
|
208
|
+
--ds-component-button-tertiary-background-hover: #0000001a;
|
|
209
|
+
--ds-component-button-tertiary-border: #0000000d;
|
|
210
|
+
--ds-component-button-tertiary-border-hover: #0000001a;
|
|
211
|
+
--ds-component-button-tertiary-text-inverse: #5de3f7;
|
|
212
|
+
--ds-component-button-tertiary-background-inverse: #ffffff0d;
|
|
213
|
+
--ds-component-button-tertiary-background-inverse-hover: #ffffff1a;
|
|
214
|
+
--ds-component-button-tertiary-border-inverse: #ffffff0d;
|
|
215
|
+
--ds-component-button-tertiary-border-inverse-hover: #ffffff1a;
|
|
216
|
+
--ds-component-boolean-indicator: #ffffff;
|
|
217
|
+
--ds-component-boolean-is-false: #ffffff;
|
|
218
|
+
--ds-component-boolean-is-false-hover: #f2f2f2;
|
|
219
|
+
--ds-component-boolean-is-false-border: #585e67;
|
|
220
|
+
--ds-component-boolean-is-true: #0074ca;
|
|
221
|
+
--ds-component-boolean-is-true-hover: #003761;
|
|
222
|
+
--ds-component-boolean-error: #e53339;
|
|
223
|
+
--ds-component-boolean-error-hover: #b1161c;
|
|
130
224
|
--ds-font-weight-body-default: Book;
|
|
131
225
|
--ds-font-weight-body-large: Book;
|
|
132
226
|
--ds-font-weight-body-small: Book;
|
|
@@ -196,6 +290,53 @@
|
|
|
196
290
|
--ds-color-texticon-inverse: #ffffff;
|
|
197
291
|
--ds-color-texticon-inverse-disabled: #d0d0d0;
|
|
198
292
|
--ds-color-texticon-muted: #3d3d3d;
|
|
293
|
+
--ds-component-selected-hover: #31295c;
|
|
294
|
+
--ds-component-focused: #463c8f;
|
|
295
|
+
--ds-component-inverse-focused: #ffffff;
|
|
296
|
+
--ds-component-background: #ffffff;
|
|
297
|
+
--ds-component-background-hover: #f2f2f2;
|
|
298
|
+
--ds-component-background-disabled: #dddddd;
|
|
299
|
+
--ds-component-background-muted: #f7f7f7;
|
|
300
|
+
--ds-component-background-strong: #7e7e7e;
|
|
301
|
+
--ds-component-button-primary-text: #ffffff;
|
|
302
|
+
--ds-component-button-primary-border: #ce0c88;
|
|
303
|
+
--ds-component-button-primary-border-hover: #831a57;
|
|
304
|
+
--ds-component-button-primary-background: #ce0c88;
|
|
305
|
+
--ds-component-button-primary-background-hover: #831a57;
|
|
306
|
+
--ds-component-button-primary-background-active: #831a57;
|
|
307
|
+
--ds-component-button-primary-text-inverse: #ce0c88;
|
|
308
|
+
--ds-component-button-primary-border-inverse: #ffffff;
|
|
309
|
+
--ds-component-button-primary-background-inverse: #ffffff;
|
|
310
|
+
--ds-component-button-primary-border-inverse-hover: #fdf1f8;
|
|
311
|
+
--ds-component-button-primary-background-inverse-hover: #fdf1f8;
|
|
312
|
+
--ds-component-button-secondary-text: #ce0c88;
|
|
313
|
+
--ds-component-button-secondary-text-hover: #463c8f;
|
|
314
|
+
--ds-component-button-secondary-border: #d0d0d0;
|
|
315
|
+
--ds-component-button-secondary-border-hover: #d0d0d0;
|
|
316
|
+
--ds-component-button-secondary-background: #ffffff;
|
|
317
|
+
--ds-component-button-secondary-background-hover: #f2f2f2;
|
|
318
|
+
--ds-component-button-secondary-text-inverse: #ffffff;
|
|
319
|
+
--ds-component-button-secondary-border-inverse: #ffffff;
|
|
320
|
+
--ds-component-button-secondary-background-inverse-hover: #0000000d;
|
|
321
|
+
--ds-component-button-tertiary-text: #ce0c88;
|
|
322
|
+
--ds-component-button-tertiary-text-hover: #831a57;
|
|
323
|
+
--ds-component-button-tertiary-background: #0000000d;
|
|
324
|
+
--ds-component-button-tertiary-background-hover: #0000001a;
|
|
325
|
+
--ds-component-button-tertiary-border: #0000000d;
|
|
326
|
+
--ds-component-button-tertiary-border-hover: #0000001a;
|
|
327
|
+
--ds-component-button-tertiary-text-inverse: #ffffff;
|
|
328
|
+
--ds-component-button-tertiary-background-inverse: #ffffff0d;
|
|
329
|
+
--ds-component-button-tertiary-background-inverse-hover: #ffffff1a;
|
|
330
|
+
--ds-component-button-tertiary-border-inverse: #ffffff0d;
|
|
331
|
+
--ds-component-button-tertiary-border-inverse-hover: #ffffff1a;
|
|
332
|
+
--ds-component-boolean-indicator: #ffffff;
|
|
333
|
+
--ds-component-boolean-is-false: #ffffff;
|
|
334
|
+
--ds-component-boolean-is-false-hover: #f2f2f2;
|
|
335
|
+
--ds-component-boolean-is-false-border: #adadad;
|
|
336
|
+
--ds-component-boolean-is-true: #ce0c88;
|
|
337
|
+
--ds-component-boolean-is-true-hover: #831a57;
|
|
338
|
+
--ds-component-boolean-error: #e53339;
|
|
339
|
+
--ds-component-boolean-error-hover: #b1161c;
|
|
199
340
|
--ds-font-weight-display: Semibold;
|
|
200
341
|
--ds-font-weight-body-default: Regular;
|
|
201
342
|
--ds-font-weight-body-large: Regular;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 11 Mar 2025 19:16:46 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -57,6 +57,53 @@
|
|
|
57
57
|
--ds-color-texticon-inverse: #ffffff;
|
|
58
58
|
--ds-color-texticon-inverse-disabled: #d0d0d0;
|
|
59
59
|
--ds-color-texticon-muted: #676767;
|
|
60
|
+
--ds-component-selected-hover: #00274a;
|
|
61
|
+
--ds-component-focused: #01426a;
|
|
62
|
+
--ds-component-inverse-focused: #ffffff;
|
|
63
|
+
--ds-component-background: #ffffff;
|
|
64
|
+
--ds-component-background-hover: #f2f2f2;
|
|
65
|
+
--ds-component-background-disabled: #dddddd;
|
|
66
|
+
--ds-component-background-muted: #f7f7f7;
|
|
67
|
+
--ds-component-background-strong: #7e7e7e;
|
|
68
|
+
--ds-component-button-primary-text: #ffffff;
|
|
69
|
+
--ds-component-button-primary-border: #01426a;
|
|
70
|
+
--ds-component-button-primary-border-hover: #00274a;
|
|
71
|
+
--ds-component-button-primary-background: #01426a;
|
|
72
|
+
--ds-component-button-primary-background-hover: #00274a;
|
|
73
|
+
--ds-component-button-primary-background-active: #00274a;
|
|
74
|
+
--ds-component-button-primary-text-inverse: #01426a;
|
|
75
|
+
--ds-component-button-primary-border-inverse: #ffffff;
|
|
76
|
+
--ds-component-button-primary-background-inverse: #ffffff;
|
|
77
|
+
--ds-component-button-primary-border-inverse-hover: #ebf3f9;
|
|
78
|
+
--ds-component-button-primary-background-inverse-hover: #ebf3f9;
|
|
79
|
+
--ds-component-button-secondary-text: #01426a;
|
|
80
|
+
--ds-component-button-secondary-text-hover: #00274a;
|
|
81
|
+
--ds-component-button-secondary-border: #01426a;
|
|
82
|
+
--ds-component-button-secondary-border-hover: #00274a;
|
|
83
|
+
--ds-component-button-secondary-background: #ffffffcc;
|
|
84
|
+
--ds-component-button-secondary-background-hover: #ffffff80;
|
|
85
|
+
--ds-component-button-secondary-text-inverse: #ffffff;
|
|
86
|
+
--ds-component-button-secondary-border-inverse: #ffffff;
|
|
87
|
+
--ds-component-button-secondary-background-inverse-hover: #ffffffcc;
|
|
88
|
+
--ds-component-button-tertiary-text: #01426a;
|
|
89
|
+
--ds-component-button-tertiary-text-hover: #00274a;
|
|
90
|
+
--ds-component-button-tertiary-background: #0000000d;
|
|
91
|
+
--ds-component-button-tertiary-background-hover: #0000001a;
|
|
92
|
+
--ds-component-button-tertiary-border: #0000000d;
|
|
93
|
+
--ds-component-button-tertiary-border-hover: #0000001a;
|
|
94
|
+
--ds-component-button-tertiary-text-inverse: #ffffff;
|
|
95
|
+
--ds-component-button-tertiary-background-inverse: #ffffff0d;
|
|
96
|
+
--ds-component-button-tertiary-background-inverse-hover: #ffffff1a;
|
|
97
|
+
--ds-component-button-tertiary-border-inverse: #ffffff0d;
|
|
98
|
+
--ds-component-button-tertiary-border-inverse-hover: #ffffff1a;
|
|
99
|
+
--ds-component-boolean-indicator: #ffffff;
|
|
100
|
+
--ds-component-boolean-is-false: #ffffff;
|
|
101
|
+
--ds-component-boolean-is-false-hover: #f2f2f2;
|
|
102
|
+
--ds-component-boolean-is-false-border: #585e67;
|
|
103
|
+
--ds-component-boolean-is-true: #01426a;
|
|
104
|
+
--ds-component-boolean-is-true-hover: #00274a;
|
|
105
|
+
--ds-component-boolean-error: #e53339;
|
|
106
|
+
--ds-component-boolean-error-hover: #b1161c;
|
|
60
107
|
--ds-font-weight-body-default: Book;
|
|
61
108
|
--ds-font-weight-body-large: Book;
|
|
62
109
|
--ds-font-weight-body-small: Book;
|