@aurodesignsystem/design-tokens 5.2.0 → 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 +14 -0
- package/README.md +49 -25
- package/dist/CSSCustomProperties--bundled.css +211 -70
- 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/config/constants.js +14 -0
- package/src/config/themes.js +21 -0
- 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,19 @@
|
|
|
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
|
+
|
|
10
|
+
## [5.2.1](https://github.com/AlaskaAirlines/AuroDesignTokens/compare/v5.2.0...v5.2.1) (2025-03-06)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Performance Improvements
|
|
14
|
+
|
|
15
|
+
* updates to theme codes & docs ([df68c04](https://github.com/AlaskaAirlines/AuroDesignTokens/commit/df68c047af8793f4459692f8580bf4776a58fdef))
|
|
16
|
+
|
|
3
17
|
# [5.2.0](https://github.com/AlaskaAirlines/AuroDesignTokens/compare/v5.1.0...v5.2.0) (2025-03-06)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -95,16 +95,51 @@ 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 data-aag-theme
|
|
99
|
+
|
|
100
|
+
The Auro Design System supports multiple themes that can be applied using the `data-aag-theme` attribute.
|
|
101
|
+
|
|
102
|
+
### Implementation Example
|
|
103
|
+
|
|
104
|
+
```html
|
|
105
|
+
<!-- Alaska-themed section -->
|
|
106
|
+
<div data-aag-theme="aag-theme-as">
|
|
107
|
+
<h1>Alaska Airlines Content</h1>
|
|
108
|
+
<!-- Elements here will use Alaska theme tokens -->
|
|
109
|
+
</div>
|
|
110
|
+
|
|
111
|
+
<!-- Hawaiian-themed section -->
|
|
112
|
+
<div data-aag-theme="aag-theme-ha">
|
|
113
|
+
<h1>Hawaiian Airlines Content</h1>
|
|
114
|
+
<!-- Elements here will use Hawaiian theme tokens -->
|
|
115
|
+
</div>
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### Important Notes
|
|
119
|
+
|
|
120
|
+
- The bundled CSS file (`CSSCustomProperties--bundled.css`) contains all themes rescoped with their respective `data-aag-theme` selectors
|
|
121
|
+
- See the [Theme Data Attributes](#theme-data-attributes) table below for all available theme codes.
|
|
122
|
+
|
|
98
123
|
## Available Themes & Resources
|
|
99
124
|
|
|
100
|
-
###
|
|
125
|
+
### Theme Data Attributes
|
|
126
|
+
|
|
127
|
+
For theme scoping with CSS Custom Properties, use the following data attributes:
|
|
128
|
+
|
|
129
|
+
| Theme | Data Attribute | Theme Code |
|
|
130
|
+
|---------------|----------------------------------|------------|
|
|
131
|
+
| Alaska | `data-aag-theme="aag-theme-as"` | `as` |
|
|
132
|
+
| Alaska Classic| `data-aag-theme="aag-theme-asc"` | `asc` |
|
|
133
|
+
| Hawaiian | `data-aag-theme="aag-theme-ha"` | `ha` |
|
|
134
|
+
|
|
135
|
+
### Alaska
|
|
101
136
|
|
|
102
137
|
| File | Syntax | Type | Description |
|
|
103
138
|
|-----------------------------|--------|--------------------|-------------------------------------------------------|
|
|
104
139
|
| CSSCustomProperties--alaska | CSS | Custom properties | All v5.x semantic tokens |
|
|
105
140
|
| primitives--alaska | SCSS | Sass variables | All v5.x semantic token values |
|
|
106
141
|
|
|
107
|
-
### Alaska Classic
|
|
142
|
+
### Alaska Classic
|
|
108
143
|
|
|
109
144
|
The Alaska Classic theme uses the `v5.x` token names with the deprecated Auro Classic values.
|
|
110
145
|
|
|
@@ -118,14 +153,14 @@ It serves as a gateway to the `v5.x` tokens, facilitating a smooth transition fo
|
|
|
118
153
|
| SCSSVariables--alaskaClassic | SCSS | Sass variables | All v5.x semantic tokens |
|
|
119
154
|
| SCSSVariablesMapFlat--alaskaClassic | SCSS | Sass variable map | All v5.x semantic tokens as flat map |
|
|
120
155
|
|
|
121
|
-
### Hawaiian
|
|
156
|
+
### Hawaiian
|
|
122
157
|
|
|
123
158
|
| File | Syntax | Type | Description |
|
|
124
159
|
|-------------------------------|--------|--------------------|-------------------------------------------------------|
|
|
125
160
|
| CSSCustomProperties--hawaiian | CSS | Custom properties | All v5.x release tokens |
|
|
126
161
|
| primitives--hawaiian | SCSS | Sass variables | All v5.x semantic token values |
|
|
127
162
|
|
|
128
|
-
### Auro Classic
|
|
163
|
+
### Auro Classic (Deprecated)
|
|
129
164
|
|
|
130
165
|
| File | Syntax | Type | Filter Type / Description |
|
|
131
166
|
|--------------------------|-----------|--------------------|----------------------------------|
|
|
@@ -143,7 +178,7 @@ It serves as a gateway to the `v5.x` tokens, facilitating a smooth transition fo
|
|
|
143
178
|
| SassCustomProperties | SCSS | Custom properties | All v4.x release tokens |
|
|
144
179
|
| SassSizeCustomProperties | Sass | Custom properties | Filter v4.x: size, public |
|
|
145
180
|
|
|
146
|
-
### Transparent
|
|
181
|
+
### Transparent (Deprecated)
|
|
147
182
|
|
|
148
183
|
| File | Syntax | Type | Filter Type / Description |
|
|
149
184
|
|-------------------------------------|-----------|--------------------|---------------------------|
|
|
@@ -153,7 +188,7 @@ It serves as a gateway to the `v5.x` tokens, facilitating a smooth transition fo
|
|
|
153
188
|
|
|
154
189
|
| File | Syntax | Type | Description |
|
|
155
190
|
|---------------------------------|--------|-------------------|-----------------------------------------|
|
|
156
|
-
| CSSCustomProperties--bundled.css | CSS | Custom properties | Combined v5.x `semantic` CSS custom properties from all supported themes |
|
|
191
|
+
| CSSCustomProperties--bundled.css | CSS | Custom properties | Combined v5.x `semantic` CSS custom properties from all supported themes with their respective `data-aag-theme` selectors |
|
|
157
192
|
|
|
158
193
|
**NOTE: Bundled file is not intended for general use.**
|
|
159
194
|
|
|
@@ -225,7 +260,13 @@ The tokens in the `themes` directory (`src/themes/alaska/`, `src/themes/hawaiian
|
|
|
225
260
|
- Provide usage descriptions explaining their intended context
|
|
226
261
|
- Are marked as `"public": true` for use in components
|
|
227
262
|
|
|
228
|
-
#### 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
|
|
229
270
|
|
|
230
271
|
Semantic tokens can reference other semantic tokens, not just primitives:
|
|
231
272
|
- For example, `font.weight.heading.heading1` can reference `{font.weight.book.value}`
|
|
@@ -238,22 +279,6 @@ Semantic tokens can reference other semantic tokens, not just primitives:
|
|
|
238
279
|
|
|
239
280
|
UI components should never directly use primitives (either `base` or theme-specific).
|
|
240
281
|
|
|
241
|
-
Instead, always use semantic theme tokens:
|
|
242
|
-
|
|
243
|
-
```css
|
|
244
|
-
/* ❌ Incorrect: Using primitives directly */
|
|
245
|
-
.element {
|
|
246
|
-
color: var(--ds-color-atlas-600); /* Theme-specific primitive */
|
|
247
|
-
background-color: var(--ds-color-gray-100); /* Base primitive */
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
/* ✅ Correct: Using semantic theme tokens */
|
|
251
|
-
.element {
|
|
252
|
-
color: var(--ds-color-brand-primary);
|
|
253
|
-
background-color: var(--ds-color-surface-neutralSubtle);
|
|
254
|
-
}
|
|
255
|
-
```
|
|
256
|
-
|
|
257
282
|
### Benefits of This Architecture
|
|
258
283
|
|
|
259
284
|
This three-tiered approach provides several advantages:
|
|
@@ -264,8 +289,6 @@ This three-tiered approach provides several advantages:
|
|
|
264
289
|
4. **Design Consistency**: Related UI elements share the same semantic tokens across different contexts
|
|
265
290
|
5. **Clear Migration Path**: Supports multiple versions during transition periods
|
|
266
291
|
|
|
267
|
-
|
|
268
|
-
|
|
269
292
|
## Migration from v4.x to v5.x
|
|
270
293
|
|
|
271
294
|
With the release of Auro Design Tokens 5.x significant changes have occurred:
|
|
@@ -273,6 +296,7 @@ With the release of Auro Design Tokens 5.x significant changes have occurred:
|
|
|
273
296
|
- `./dist/` directory has been restructured. All file imports will need to have their paths updated.
|
|
274
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.
|
|
275
298
|
- **NEW** Alaska theme found in `./dist/alaska`.
|
|
299
|
+
- **NEW** Alaska Classic theme found in `./dist/alaska-classic`.
|
|
276
300
|
- **NEW** Hawaiian theme found in `./dist/hawaiian`.
|
|
277
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.
|
|
278
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,169 @@
|
|
|
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;
|
|
108
|
+
--ds-font-weight-body-default: Book;
|
|
109
|
+
--ds-font-weight-body-large: Book;
|
|
110
|
+
--ds-font-weight-body-small: Book;
|
|
111
|
+
--ds-font-weight-body-xsmall: Book;
|
|
112
|
+
--ds-font-weight-body-xxsmall: Book;
|
|
113
|
+
--ds-font-weight-display: Light;
|
|
114
|
+
--ds-font-weight-heading-heading1: Book;
|
|
115
|
+
--ds-font-weight-heading-heading2: Book;
|
|
116
|
+
--ds-font-weight-heading-heading3: Medium;
|
|
117
|
+
--ds-font-weight-heading-heading4: Medium;
|
|
118
|
+
--ds-font-weight-heading-heading5: Medium;
|
|
119
|
+
--ds-font-weight-heading-heading6: Medium;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
/* Properties from CSSCustomProperties--alaskaClassic.css */
|
|
123
|
+
[data-aag-theme="aag-theme-asc"] {
|
|
124
|
+
--ds-color-border-bold: #585e67;
|
|
125
|
+
--ds-color-border-brand: #01426a;
|
|
126
|
+
--ds-color-border-default: #959595;
|
|
127
|
+
--ds-color-border-divider: #00000026;
|
|
128
|
+
--ds-color-border-divider-inverse: #ffffff66;
|
|
129
|
+
--ds-color-border-inverse: #ffffff;
|
|
130
|
+
--ds-color-border-subtle: #dddddd;
|
|
131
|
+
--ds-color-brand-primary: #0074ca;
|
|
132
|
+
--ds-color-brand-primary-bold: #003761;
|
|
133
|
+
--ds-color-brand-primary-muted: #ebf7ff;
|
|
134
|
+
--ds-color-brand-primary-subtle: #289bee;
|
|
135
|
+
--ds-color-brand-secondary: #01426a;
|
|
136
|
+
--ds-color-brand-secondary-bold: #00274a;
|
|
137
|
+
--ds-color-brand-secondary-muted: #ebf3f9;
|
|
138
|
+
--ds-color-brand-secondary-subtle: #2875b5;
|
|
139
|
+
--ds-color-brand-tertiary: #5de3f7;
|
|
140
|
+
--ds-color-brand-tertiary-bold: #18c3dd;
|
|
141
|
+
--ds-color-brand-tertiary-muted: #ebfafd;
|
|
142
|
+
--ds-color-brand-tertiary-subtle: #b4eff9;
|
|
143
|
+
--ds-color-farebrand-basiceconomy: #97eaf8;
|
|
144
|
+
--ds-color-farebrand-business-first: #00274a;
|
|
145
|
+
--ds-color-farebrand-economy: #0074ca;
|
|
146
|
+
--ds-color-farebrand-premiumeconomy: #005154;
|
|
147
|
+
--ds-color-farebrand-oneworld-emerald: #139142;
|
|
148
|
+
--ds-color-farebrand-oneworld-sapphire: #015daa;
|
|
149
|
+
--ds-color-farebrand-oneworld-ruby: #a41d4a;
|
|
150
|
+
--ds-color-pagebackground-default: #ffffff;
|
|
151
|
+
--ds-color-pagebackground-utility: #f7f8fa;
|
|
152
|
+
--ds-color-status-default: #afb9c6;
|
|
153
|
+
--ds-color-status-error: #e53339;
|
|
154
|
+
--ds-color-status-error-subtle: #fddede;
|
|
155
|
+
--ds-color-status-info: #007db1;
|
|
156
|
+
--ds-color-status-info-subtle: #e8f2f8;
|
|
157
|
+
--ds-color-status-success: #529325;
|
|
158
|
+
--ds-color-status-success-subtle: #e4f1da;
|
|
159
|
+
--ds-color-status-warning: #fac200;
|
|
160
|
+
--ds-color-status-warning-subtle: #fff6d1;
|
|
161
|
+
--ds-color-surface-accent1: #0074ca;
|
|
162
|
+
--ds-color-surface-accent1-muted: #ebf7ff;
|
|
163
|
+
--ds-color-surface-accent1-subtle: #289bee;
|
|
164
|
+
--ds-color-surface-accent2: #959595;
|
|
165
|
+
--ds-color-surface-accent2-muted: #c5c5c5;
|
|
166
|
+
--ds-color-surface-default: #ffffff;
|
|
167
|
+
--ds-color-surface-inverse: #01426a;
|
|
168
|
+
--ds-color-surface-inverse-subtle: #2875b5;
|
|
169
|
+
--ds-color-surface-neutral-medium: #c5c5c5;
|
|
170
|
+
--ds-color-surface-neutral-subtle: #f2f2f2;
|
|
171
|
+
--ds-color-texticon-accent1: #01426a;
|
|
172
|
+
--ds-color-texticon-default: #2a2a2a;
|
|
173
|
+
--ds-color-texticon-disabled: #d0d0d0;
|
|
174
|
+
--ds-color-texticon-inverse: #ffffff;
|
|
175
|
+
--ds-color-texticon-inverse-disabled: #d0d0d0;
|
|
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;
|
|
61
224
|
--ds-font-weight-body-default: Book;
|
|
62
225
|
--ds-font-weight-body-large: Book;
|
|
63
226
|
--ds-font-weight-body-small: Book;
|
|
@@ -127,6 +290,53 @@
|
|
|
127
290
|
--ds-color-texticon-inverse: #ffffff;
|
|
128
291
|
--ds-color-texticon-inverse-disabled: #d0d0d0;
|
|
129
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;
|
|
130
340
|
--ds-font-weight-display: Semibold;
|
|
131
341
|
--ds-font-weight-body-default: Regular;
|
|
132
342
|
--ds-font-weight-body-large: Regular;
|
|
@@ -139,73 +349,4 @@
|
|
|
139
349
|
--ds-font-weight-heading-heading4: Medium;
|
|
140
350
|
--ds-font-weight-heading-heading5: Medium;
|
|
141
351
|
--ds-font-weight-heading-heading6: Medium;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
/* Properties from CSSCustomProperties--alaskaClassic.css */
|
|
145
|
-
[data-aag-theme="aag-theme-ac"] {
|
|
146
|
-
--ds-color-border-bold: #585e67;
|
|
147
|
-
--ds-color-border-brand: #01426a;
|
|
148
|
-
--ds-color-border-default: #959595;
|
|
149
|
-
--ds-color-border-divider: #00000026;
|
|
150
|
-
--ds-color-border-divider-inverse: #ffffff66;
|
|
151
|
-
--ds-color-border-inverse: #ffffff;
|
|
152
|
-
--ds-color-border-subtle: #dddddd;
|
|
153
|
-
--ds-color-brand-primary: #0074ca;
|
|
154
|
-
--ds-color-brand-primary-bold: #003761;
|
|
155
|
-
--ds-color-brand-primary-muted: #ebf7ff;
|
|
156
|
-
--ds-color-brand-primary-subtle: #289bee;
|
|
157
|
-
--ds-color-brand-secondary: #01426a;
|
|
158
|
-
--ds-color-brand-secondary-bold: #00274a;
|
|
159
|
-
--ds-color-brand-secondary-muted: #ebf3f9;
|
|
160
|
-
--ds-color-brand-secondary-subtle: #2875b5;
|
|
161
|
-
--ds-color-brand-tertiary: #5de3f7;
|
|
162
|
-
--ds-color-brand-tertiary-bold: #18c3dd;
|
|
163
|
-
--ds-color-brand-tertiary-muted: #ebfafd;
|
|
164
|
-
--ds-color-brand-tertiary-subtle: #b4eff9;
|
|
165
|
-
--ds-color-farebrand-basiceconomy: #97eaf8;
|
|
166
|
-
--ds-color-farebrand-business-first: #00274a;
|
|
167
|
-
--ds-color-farebrand-economy: #0074ca;
|
|
168
|
-
--ds-color-farebrand-premiumeconomy: #005154;
|
|
169
|
-
--ds-color-farebrand-oneworld-emerald: #139142;
|
|
170
|
-
--ds-color-farebrand-oneworld-sapphire: #015daa;
|
|
171
|
-
--ds-color-farebrand-oneworld-ruby: #a41d4a;
|
|
172
|
-
--ds-color-pagebackground-default: #ffffff;
|
|
173
|
-
--ds-color-pagebackground-utility: #f7f8fa;
|
|
174
|
-
--ds-color-status-default: #afb9c6;
|
|
175
|
-
--ds-color-status-error: #e53339;
|
|
176
|
-
--ds-color-status-error-subtle: #fddede;
|
|
177
|
-
--ds-color-status-info: #007db1;
|
|
178
|
-
--ds-color-status-info-subtle: #e8f2f8;
|
|
179
|
-
--ds-color-status-success: #529325;
|
|
180
|
-
--ds-color-status-success-subtle: #e4f1da;
|
|
181
|
-
--ds-color-status-warning: #fac200;
|
|
182
|
-
--ds-color-status-warning-subtle: #fff6d1;
|
|
183
|
-
--ds-color-surface-accent1: #0074ca;
|
|
184
|
-
--ds-color-surface-accent1-muted: #ebf7ff;
|
|
185
|
-
--ds-color-surface-accent1-subtle: #289bee;
|
|
186
|
-
--ds-color-surface-accent2: #959595;
|
|
187
|
-
--ds-color-surface-accent2-muted: #c5c5c5;
|
|
188
|
-
--ds-color-surface-default: #ffffff;
|
|
189
|
-
--ds-color-surface-inverse: #01426a;
|
|
190
|
-
--ds-color-surface-inverse-subtle: #2875b5;
|
|
191
|
-
--ds-color-surface-neutral-medium: #c5c5c5;
|
|
192
|
-
--ds-color-surface-neutral-subtle: #f2f2f2;
|
|
193
|
-
--ds-color-texticon-accent1: #01426a;
|
|
194
|
-
--ds-color-texticon-default: #2a2a2a;
|
|
195
|
-
--ds-color-texticon-disabled: #d0d0d0;
|
|
196
|
-
--ds-color-texticon-inverse: #ffffff;
|
|
197
|
-
--ds-color-texticon-inverse-disabled: #d0d0d0;
|
|
198
|
-
--ds-color-texticon-muted: #676767;
|
|
199
|
-
--ds-font-weight-body-default: Book;
|
|
200
|
-
--ds-font-weight-body-large: Book;
|
|
201
|
-
--ds-font-weight-body-small: Book;
|
|
202
|
-
--ds-font-weight-body-xsmall: Book;
|
|
203
|
-
--ds-font-weight-body-xxsmall: Book;
|
|
204
|
-
--ds-font-weight-display: Light;
|
|
205
|
-
--ds-font-weight-heading-heading1: Book;
|
|
206
|
-
--ds-font-weight-heading-heading2: Book;
|
|
207
|
-
--ds-font-weight-heading-heading3: Medium;
|
|
208
|
-
--ds-font-weight-heading-heading4: Medium;
|
|
209
|
-
--ds-font-weight-heading-heading5: Medium;
|
|
210
|
-
--ds-font-weight-heading-heading6: Medium;
|
|
211
352
|
}
|
|
@@ -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;
|