@aurodesignsystem/design-tokens 5.0.6 → 5.1.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 +8 -0
- package/README.md +187 -75
- package/dist/CSSCustomProperties--bundled.css +61 -49
- package/dist/alaska/CSSCustomProperties--alaska.css +38 -32
- package/dist/alaska/JSObject--allTokens.js +364 -182
- package/dist/alaska/SCSSVariables--alaska.scss +38 -32
- package/dist/alaska/SCSSVariablesMapFlat--alaska.scss +38 -32
- package/dist/alaska/primitives--alaska.scss +37 -37
- package/dist/alaska-classic/CSSCustomProperties--alaskaClassic.css +72 -0
- package/dist/alaska-classic/JSObject--allTokens.js +2306 -0
- package/dist/alaska-classic/SCSSVariables--alaskaClassic.scss +69 -0
- package/dist/alaska-classic/SCSSVariablesMapFlat--alaskaClassic.scss +73 -0
- package/dist/alaska-classic/primitives--alaskaClassic.scss +215 -0
- 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 +24 -18
- package/dist/hawaiian/JSObject--allTokens.js +336 -154
- package/dist/hawaiian/SCSSVariables--hawaiian.scss +24 -18
- package/dist/hawaiian/SCSSVariablesMapFlat--hawaiian.scss +24 -18
- package/dist/hawaiian/primitives--hawaiian.scss +6 -6
- package/dist/transparent/CSSCustomProperties--transparent.css +1 -1
- package/package.json +1 -1
- package/src/primitives/alaska/color.json +84 -84
- package/src/primitives/alaska-classic/color.json +796 -0
- package/src/primitives/alaska-classic/typography.json +27 -0
- package/src/primitives/base/color.json +3 -3
- package/src/themes/alaska/color.json +112 -62
- package/src/themes/alaska-classic/color.json +444 -0
- package/src/themes/alaska-classic/typography.json +132 -0
- package/src/themes/hawaiian/color.json +97 -47
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Semantic Release Automated Changelog
|
|
2
2
|
|
|
3
|
+
# [5.1.0](https://github.com/AlaskaAirlines/AuroDesignTokens/compare/v5.0.6...v5.1.0) (2025-03-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* edit existing and add new primitive color tokens [#220](https://github.com/AlaskaAirlines/AuroDesignTokens/issues/220) ([2a2e438](https://github.com/AlaskaAirlines/AuroDesignTokens/commit/2a2e43823fd0468a542a28000082d3a2eba7d98f))
|
|
9
|
+
* edit existing and add new theme color tokens [#221](https://github.com/AlaskaAirlines/AuroDesignTokens/issues/221) ([1e3018d](https://github.com/AlaskaAirlines/AuroDesignTokens/commit/1e3018d24d389c3b85fbd3b0261472abb1420775))
|
|
10
|
+
|
|
3
11
|
## [5.0.6](https://github.com/AlaskaAirlines/AuroDesignTokens/compare/v5.0.5...v5.0.6) (2025-03-04)
|
|
4
12
|
|
|
5
13
|
|
package/README.md
CHANGED
|
@@ -1,18 +1,24 @@
|
|
|
1
1
|
# Auro Design Tokens
|
|
2
2
|
|
|
3
|
-
## Installation
|
|
4
|
-
|
|
5
3
|
[](https://github.com/AlaskaAirlines/AuroDesignTokens/actions/workflows/testPublish.yml)
|
|
6
4
|
[](https://www.npmjs.com/package/@aurodesignsystem/design-tokens)
|
|
7
5
|
[](https://www.apache.org/licenses/LICENSE-2.0)
|
|
8
6
|
|
|
7
|
+
## Introduction
|
|
8
|
+
|
|
9
|
+
Auro Design Tokens are the foundation of the Auro Design System, providing consistent design values across different platforms and implementations.
|
|
10
|
+
|
|
11
|
+
These tokens define colors, typography, spacing, and other visual attributes for Alaska Airlines and Hawaiian Airlines brands.
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
9
15
|
```
|
|
10
16
|
$ npm i @aurodesignsystem/design-tokens
|
|
11
17
|
```
|
|
12
18
|
|
|
13
|
-
|
|
19
|
+
### Package Structure
|
|
14
20
|
|
|
15
|
-
|
|
21
|
+
The npm package provides pre-processed resources in the `./dist/` directory:
|
|
16
22
|
|
|
17
23
|
```
|
|
18
24
|
└── dist
|
|
@@ -23,6 +29,7 @@ Pre-processed resources are available in the `./dist/` directory of the [npm pac
|
|
|
23
29
|
│ ├── CSSCustomProperties.css
|
|
24
30
|
│ ├── CSSSizeCustomProperties.css
|
|
25
31
|
│ ├── JSData--color.js
|
|
32
|
+
│ ├── JSObject--allTokens.js
|
|
26
33
|
│ ├── JSObject--deprecated.js
|
|
27
34
|
│ ├── JSONVariablesFlat.json
|
|
28
35
|
│ ├── JSONVariablesNested.json
|
|
@@ -40,110 +47,215 @@ Pre-processed resources are available in the `./dist/` directory of the [npm pac
|
|
|
40
47
|
└── CSSCustomProperties--bundled.css
|
|
41
48
|
```
|
|
42
49
|
|
|
43
|
-
|
|
50
|
+
## Usage Guide
|
|
44
51
|
|
|
45
|
-
###
|
|
52
|
+
### Install with Sass
|
|
46
53
|
|
|
47
|
-
|
|
48
|
-
|-----------------------------|--------|--------------------|---------|------------------------------------------------------|
|
|
49
|
-
| CSSCustomProperties--alaska | CSS | Custom properties | Current | All v5.x semantic tokens for the Alaska theme |
|
|
50
|
-
| primitives--alaska | SCSS | Sass variables | Current | All v5.x semantic token values for the Alaska theme |
|
|
54
|
+
When working with Sass, import the SCSS file for your theme:
|
|
51
55
|
|
|
52
|
-
|
|
56
|
+
```scss
|
|
57
|
+
@import "~@aurodesignsystem/design-tokens/dist/alaska/primitives--alaska.scss";
|
|
58
|
+
```
|
|
53
59
|
|
|
54
|
-
|
|
55
|
-
|-------------------------------|--------|--------------------|---------|--------------------------------------------------------|
|
|
56
|
-
| CSSCustomProperties--hawaiian | CSS | Custom properties | Current | All v5.x release tokens for the Hawaiian theme |
|
|
57
|
-
| primitives--hawaiian | SCSS | Sass variables | Current | All v5.x semantic token values for the Hawaiian theme |
|
|
60
|
+
**NOTE:** When developing new UI code in Sass, it's still advisable to leverage CSS custom properties over Sass variables.
|
|
58
61
|
|
|
59
|
-
###
|
|
62
|
+
### Install with CSS
|
|
60
63
|
|
|
61
|
-
|
|
62
|
-
|--------------------------|-----------|--------------------|------------|---------------------------------|
|
|
63
|
-
| CSSCustomProperties | CSS | Custom properties | Deprecated | All v4.x release tokens |
|
|
64
|
-
| CSSSizeCustomProperties | CSS | Custom properties | Deprecated | Filter v4.x: size, public |
|
|
65
|
-
| JSData--color | JS module | Color data | Deprecated | Filter v4.x: color, Deprecated |
|
|
66
|
-
| JSONVariablesFlat | JSON Data | All data | Deprecated | All v4.x release tokens |
|
|
67
|
-
| JSONVariablesNested | JSON Data | All data | Deprecated | All v4.x release tokens |
|
|
68
|
-
| JSObject--deprecated | JS module | Deprecated tokens | Deprecated | Filter v4.x: deprecated, public |
|
|
69
|
-
| JSObject--allTokens.js | JS module | All data | Deprecated | All v4.x release tokens |
|
|
70
|
-
| JSVariables--color | JS ES6 | Color data | Deprecated | Filter v4.x: color |
|
|
71
|
-
| SCSSVariableMap | Sass | Sass variable map | Deprecated | Filter v4.x: size, public |
|
|
72
|
-
| SCSSVariables | SCSS | Sass variables | Deprecated | All v4.x release tokens |
|
|
73
|
-
| SCSSVariablesMapFlat | SCSS | Sass variable map | Deprecated | All v4.x release tokens |
|
|
74
|
-
| SassCustomProperties | SCSS | Custom properties | Deprecated | All v4.x release tokens |
|
|
75
|
-
| SassSizeCustomProperties | Sass | Custom properties | Deprecated | Filter v4.x: size, public |
|
|
64
|
+
For React or similar frameworks, import the CSS file directly:
|
|
76
65
|
|
|
77
|
-
|
|
66
|
+
```js
|
|
67
|
+
import "@aurodesignsystem/design-tokens/dist/alaska/CSSCustomProperties--alaska.css"
|
|
68
|
+
```
|
|
78
69
|
|
|
79
|
-
|
|
80
|
-
|-------------------------------------|-----------|--------------------|------------|---------------------------|
|
|
81
|
-
| CSSCustomProperties--transparent | CSS | Custom properties | Deprecated | All v4.0x release tokens |
|
|
70
|
+
For other frameworks, you'll need to copy the CSS file from the npm resource into your project using a build scenario.
|
|
82
71
|
|
|
83
|
-
###
|
|
72
|
+
### Install ESModules
|
|
84
73
|
|
|
85
|
-
|
|
86
|
-
|-------------|--------|-------------------|---------|------------------------------------------------------|
|
|
87
|
-
| CSSCustomProperties--bundled.css | CSS | Custom properties | Current | Combined v5.x `semantic` CSS custom properties from all supported themes.
|
|
74
|
+
_Note: ESModules are not yet available for the v5.x tokens._
|
|
88
75
|
|
|
89
|
-
|
|
76
|
+
In a webpack-supported application or a `type="module"` script:
|
|
90
77
|
|
|
91
|
-
|
|
78
|
+
```js
|
|
79
|
+
import { AuroColorAlertNotificationOnLight, AuroColorBorderErrorOnLight } from '@aurodesignsystem/design-tokens/dist/auro-classic/JSVariables--color.js';
|
|
80
|
+
```
|
|
92
81
|
|
|
93
|
-
###
|
|
82
|
+
### Install from CDN
|
|
94
83
|
|
|
95
|
-
|
|
84
|
+
Using the `https://cdn.jsdelivr.net/npm/` CDN:
|
|
96
85
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
- **NEW** Hawaiian theme found in `./dist/hawaiian`.
|
|
101
|
-
- 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.
|
|
102
|
-
- 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.
|
|
103
|
-
- Review the [Deprecated tokens list](https://auro.alaskaair.com/getting-started/developers/design-tokens/deprecated) for a matrix of changes. Some tokens have been removed from the project and need to be updated.
|
|
86
|
+
```html
|
|
87
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm//@aurodesignsystem/design-tokens@latest/dist/alaska/CSSCustomProperties--alaska.css">
|
|
88
|
+
```
|
|
104
89
|
|
|
105
|
-
|
|
90
|
+
**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.
|
|
106
91
|
|
|
107
|
-
|
|
92
|
+
## Available Themes & Resources
|
|
108
93
|
|
|
109
|
-
|
|
94
|
+
### Alaska Theme
|
|
110
95
|
|
|
111
|
-
|
|
96
|
+
| File | Syntax | Type | Description |
|
|
97
|
+
|-----------------------------|--------|--------------------|-------------------------------------------------------|
|
|
98
|
+
| CSSCustomProperties--alaska | CSS | Custom properties | All v5.x semantic tokens for the Alaska theme |
|
|
99
|
+
| primitives--alaska | SCSS | Sass variables | All v5.x semantic token values for the Alaska theme |
|
|
112
100
|
|
|
113
|
-
|
|
114
|
-
@import "~@aurodesignsystem/design-tokens/dist/alaska/primitives--alaska.scss";
|
|
115
|
-
```
|
|
101
|
+
### Hawaiian Theme
|
|
116
102
|
|
|
117
|
-
|
|
103
|
+
| File | Syntax | Type | Description |
|
|
104
|
+
|-------------------------------|--------|--------------------|-------------------------------------------------------|
|
|
105
|
+
| CSSCustomProperties--hawaiian | CSS | Custom properties | All v5.x release tokens for the Hawaiian theme |
|
|
106
|
+
| primitives--hawaiian | SCSS | Sass variables | All v5.x semantic token values for the Hawaiian theme |
|
|
118
107
|
|
|
119
|
-
###
|
|
108
|
+
### Auro Classic Theme (Deprecated)
|
|
120
109
|
|
|
121
|
-
|
|
110
|
+
| File | Syntax | Type | Filter Type / Description |
|
|
111
|
+
|--------------------------|-----------|--------------------|----------------------------------|
|
|
112
|
+
| CSSCustomProperties | CSS | Custom properties | All v4.x release tokens |
|
|
113
|
+
| CSSSizeCustomProperties | CSS | Custom properties | Filter v4.x: size, public |
|
|
114
|
+
| JSData--color | JS module | Color data | Filter v4.x: color, Deprecated |
|
|
115
|
+
| JSONVariablesFlat | JSON Data | All data | All v4.x release tokens |
|
|
116
|
+
| JSONVariablesNested | JSON Data | All data | All v4.x release tokens |
|
|
117
|
+
| JSObject--deprecated | JS module | Deprecated tokens | Filter v4.x: deprecated, public |
|
|
118
|
+
| JSObject--allTokens.js | JS module | All data | All v4.x release tokens |
|
|
119
|
+
| JSVariables--color | JS ES6 | Color data | Filter v4.x: color |
|
|
120
|
+
| SCSSVariableMap | Sass | Sass variable map | Filter v4.x: size, public |
|
|
121
|
+
| SCSSVariables | SCSS | Sass variables | All v4.x release tokens |
|
|
122
|
+
| SCSSVariablesMapFlat | SCSS | Sass variable map | All v4.x release tokens |
|
|
123
|
+
| SassCustomProperties | SCSS | Custom properties | All v4.x release tokens |
|
|
124
|
+
| SassSizeCustomProperties | Sass | Custom properties | Filter v4.x: size, public |
|
|
122
125
|
|
|
123
|
-
|
|
126
|
+
### Transparent Theme (Deprecated)
|
|
124
127
|
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
+
| File | Syntax | Type | Filter Type / Description |
|
|
129
|
+
|-------------------------------------|-----------|--------------------|---------------------------|
|
|
130
|
+
| CSSCustomProperties--transparent | CSS | Custom properties | All v4.0x release tokens |
|
|
128
131
|
|
|
129
|
-
|
|
132
|
+
### Bundled File
|
|
130
133
|
|
|
131
|
-
|
|
134
|
+
| File | Syntax | Type | Description |
|
|
135
|
+
|---------------------------------|--------|-------------------|-----------------------------------------|
|
|
136
|
+
| CSSCustomProperties--bundled.css | CSS | Custom properties | Combined v5.x `semantic` CSS custom properties from all supported themes |
|
|
132
137
|
|
|
133
|
-
|
|
138
|
+
**NOTE: Bundled file is not intended for general use.**
|
|
134
139
|
|
|
135
|
-
|
|
140
|
+
## Understanding the Architecture
|
|
141
|
+
|
|
142
|
+
### Key Concepts
|
|
143
|
+
|
|
144
|
+
The Auro Design System is built on a structured hierarchy of design tokens organized around two key concepts:
|
|
145
|
+
|
|
146
|
+
- **Primitives**: Low-level, foundational values (colors, sizes, etc.)
|
|
147
|
+
- **Themes**: Semantic tokens that reference primitives with meaningful, usage-based names
|
|
148
|
+
|
|
149
|
+
### Source Directory Structure
|
|
136
150
|
|
|
137
|
-
```
|
|
138
|
-
|
|
151
|
+
```
|
|
152
|
+
src/
|
|
153
|
+
├── primitives/
|
|
154
|
+
│ ├── alaska/
|
|
155
|
+
│ │ ├── color.json
|
|
156
|
+
│ │ ├── typography.json
|
|
157
|
+
│ │ └── ...
|
|
158
|
+
│ ├── base/
|
|
159
|
+
│ │ ├── color.json
|
|
160
|
+
│ │ ├── transparency.json
|
|
161
|
+
│ │ └── ...
|
|
162
|
+
│ ├── hawaiian/
|
|
163
|
+
│ │ ├── color.json
|
|
164
|
+
│ │ ├── typography.json
|
|
165
|
+
│ │ └── ...
|
|
166
|
+
│ └── ...
|
|
167
|
+
└── themes/
|
|
168
|
+
├── alaska/
|
|
169
|
+
│ ├── color.json
|
|
170
|
+
│ ├── typography.json
|
|
171
|
+
│ └── ...
|
|
172
|
+
├── hawaiian/
|
|
173
|
+
│ ├── color.json
|
|
174
|
+
│ ├── typography.json
|
|
175
|
+
│ └── ...
|
|
176
|
+
└── ...
|
|
139
177
|
```
|
|
140
178
|
|
|
141
|
-
###
|
|
179
|
+
### Multi-Level Token Architecture
|
|
142
180
|
|
|
143
|
-
|
|
181
|
+
#### 1. Base Primitives: Shared Foundation
|
|
144
182
|
|
|
145
|
-
|
|
146
|
-
|
|
183
|
+
Base primitives (`src/primitives/base/`) define foundational values shared across the system:
|
|
184
|
+
- Common color scales (gray, neutral, status colors)
|
|
185
|
+
- Basic visual elements (black, white)
|
|
186
|
+
- Transparency values
|
|
187
|
+
- And more...
|
|
188
|
+
|
|
189
|
+
These base primitives are shared resources that theme-specific primitives can reference, providing consistency across the entire design system.
|
|
190
|
+
|
|
191
|
+
#### 2. Theme-Specific Primitives: Brand Identity
|
|
192
|
+
|
|
193
|
+
Each supported theme (Alaska, Hawaiian, etc.) has its own primitives folder (`src/primitives/alaska/`, `src/primitives/hawaiian/`) containing:
|
|
194
|
+
- Brand-specific color palettes
|
|
195
|
+
- Typography definitions unique to each brand
|
|
196
|
+
- And more...
|
|
197
|
+
|
|
198
|
+
These theme-specific primitives work alongside the shared `base` primitives to create a complete palette for each brand.
|
|
199
|
+
|
|
200
|
+
#### 3. Semantic Theme Tokens: Usage-Based References
|
|
201
|
+
|
|
202
|
+
The tokens in the `themes` directory (`src/themes/alaska/`, `src/themes/hawaiian/`) are semantic tokens that:
|
|
203
|
+
- Reference primitive values using paths like `{color.atlas.600.value}`
|
|
204
|
+
- Have meaningful names based on their function (e.g., `color.brand.primary`)
|
|
205
|
+
- Provide usage descriptions explaining their intended context
|
|
206
|
+
- Are marked as `"public": true` for use in components
|
|
207
|
+
|
|
208
|
+
#### 4. Multi-level Semantic References
|
|
209
|
+
|
|
210
|
+
Semantic tokens can reference other semantic tokens, not just primitives:
|
|
211
|
+
- For example, `font.weight.heading.heading1` can reference `{font.weight.book.value}`
|
|
212
|
+
- This creates multiple layers of abstraction and flexibility
|
|
213
|
+
- These reference chains ultimately resolve to primitive values
|
|
214
|
+
|
|
215
|
+
### Best Practices
|
|
216
|
+
|
|
217
|
+
**Never Use Primitives Directly in UI**
|
|
218
|
+
|
|
219
|
+
UI components should never directly use primitives (either `base` or theme-specific).
|
|
220
|
+
|
|
221
|
+
Instead, always use semantic theme tokens:
|
|
222
|
+
|
|
223
|
+
```css
|
|
224
|
+
/* ❌ Incorrect: Using primitives directly */
|
|
225
|
+
.element {
|
|
226
|
+
color: var(--ds-color-atlas-600); /* Theme-specific primitive */
|
|
227
|
+
background-color: var(--ds-color-gray-100); /* Base primitive */
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
/* ✅ Correct: Using semantic theme tokens */
|
|
231
|
+
.element {
|
|
232
|
+
color: var(--ds-color-brand-primary);
|
|
233
|
+
background-color: var(--ds-color-surface-neutralSubtle);
|
|
234
|
+
}
|
|
147
235
|
```
|
|
148
236
|
|
|
149
|
-
|
|
237
|
+
### Benefits of This Architecture
|
|
238
|
+
|
|
239
|
+
This three-tiered approach provides several advantages:
|
|
240
|
+
|
|
241
|
+
1. **Theme Flexibility**: Components can seamlessly switch between themes without code changes
|
|
242
|
+
2. **Abstraction of Intent**: Semantic naming communicates the purpose of each token
|
|
243
|
+
3. **Centralized Updates**: Changes to primitive values automatically propagate to all semantic tokens
|
|
244
|
+
4. **Design Consistency**: Related UI elements share the same semantic tokens across different contexts
|
|
245
|
+
5. **Clear Migration Path**: Supports multiple versions during transition periods
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
## Migration from v4.x to v5.x
|
|
250
|
+
|
|
251
|
+
With the release of Auro Design Tokens 5.x significant changes have occurred:
|
|
252
|
+
|
|
253
|
+
- `./dist/` directory has been restructured. All file imports will need to have their paths updated.
|
|
254
|
+
- 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.
|
|
255
|
+
- **NEW** Alaska theme found in `./dist/alaska`.
|
|
256
|
+
- **NEW** Hawaiian theme found in `./dist/hawaiian`.
|
|
257
|
+
- 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.
|
|
258
|
+
- 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.
|
|
259
|
+
- Review the [Deprecated tokens list](https://auro.alaskaair.com/getting-started/developers/design-tokens/deprecated) for a matrix of changes. Some tokens have been removed from the project and need to be updated.
|
|
260
|
+
|
|
261
|
+
By supporting both the legacy and new Auro design tokens in your project, you ensure a smooth transition until all Auro components have been updated and your project has also updated local SCSS/CSS files with the new references.
|
|
@@ -1,56 +1,62 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 06 Mar 2025 17:27:43 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
/* Properties from CSSCustomProperties--alaska.css */
|
|
7
7
|
[aag-theme="aag-theme-as"] {
|
|
8
8
|
--ds-color-border-bold: #585e67;
|
|
9
|
-
--ds-color-border-brand: #
|
|
9
|
+
--ds-color-border-brand: #01426a;
|
|
10
10
|
--ds-color-border-default: #959595;
|
|
11
11
|
--ds-color-border-divider: #00000026;
|
|
12
12
|
--ds-color-border-divider-inverse: #ffffff66;
|
|
13
13
|
--ds-color-border-inverse: #ffffff;
|
|
14
14
|
--ds-color-border-subtle: #dddddd;
|
|
15
|
-
--ds-color-brand-
|
|
16
|
-
--ds-color-brand-primary: #
|
|
17
|
-
--ds-color-brand-primary-
|
|
18
|
-
--ds-color-brand-primary-subtle: #
|
|
19
|
-
--ds-color-brand-secondary: #
|
|
20
|
-
--ds-color-brand-secondary-bold: #
|
|
21
|
-
--ds-color-brand-secondary-
|
|
22
|
-
--ds-color-brand-
|
|
23
|
-
--ds-color-brand-tertiary
|
|
24
|
-
--ds-color-brand-tertiary-
|
|
25
|
-
--ds-color-
|
|
26
|
-
--ds-color-
|
|
27
|
-
--ds-color-
|
|
28
|
-
--ds-color-
|
|
29
|
-
--ds-color-
|
|
30
|
-
--ds-color-
|
|
31
|
-
--ds-color-
|
|
32
|
-
--ds-color-
|
|
33
|
-
--ds-color-
|
|
15
|
+
--ds-color-brand-primary: #01426a;
|
|
16
|
+
--ds-color-brand-primary-bold: #00274a;
|
|
17
|
+
--ds-color-brand-primary-muted: #ebf3f9;
|
|
18
|
+
--ds-color-brand-primary-subtle: #2875b5;
|
|
19
|
+
--ds-color-brand-secondary: #5de3f7;
|
|
20
|
+
--ds-color-brand-secondary-bold: #18c3dd;
|
|
21
|
+
--ds-color-brand-secondary-muted: #ebfafd;
|
|
22
|
+
--ds-color-brand-secondary-subtle: #b4eff9;
|
|
23
|
+
--ds-color-brand-tertiary: #a3cd6a;
|
|
24
|
+
--ds-color-brand-tertiary-bold: #7daf3b;
|
|
25
|
+
--ds-color-brand-tertiary-muted: #eaf3dd;
|
|
26
|
+
--ds-color-brand-tertiary-subtle: #c9e1a7;
|
|
27
|
+
--ds-color-farebrand-basiceconomy: #97eaf8;
|
|
28
|
+
--ds-color-farebrand-business-first: #00274a;
|
|
29
|
+
--ds-color-farebrand-economy: #0074ca;
|
|
30
|
+
--ds-color-farebrand-premiumeconomy: #005154;
|
|
31
|
+
--ds-color-farebrand-oneworld-emerald: #139142;
|
|
32
|
+
--ds-color-farebrand-oneworld-sapphire: #015daa;
|
|
33
|
+
--ds-color-farebrand-oneworld-ruby: #a41d4a;
|
|
34
|
+
--ds-color-pagebackground-default: #ebfafd;
|
|
35
|
+
--ds-color-pagebackground-utility: #ffffff;
|
|
34
36
|
--ds-color-status-default: #afb9c6;
|
|
35
|
-
--ds-color-status-error: #
|
|
37
|
+
--ds-color-status-error: #e53339;
|
|
36
38
|
--ds-color-status-error-subtle: #fddede;
|
|
37
|
-
--ds-color-status-info: #
|
|
38
|
-
--ds-color-status-info-subtle: #
|
|
39
|
-
--ds-color-status-success: #
|
|
39
|
+
--ds-color-status-info: #01426a;
|
|
40
|
+
--ds-color-status-info-subtle: #e8f2f8;
|
|
41
|
+
--ds-color-status-success: #529325;
|
|
40
42
|
--ds-color-status-success-subtle: #e4f1da;
|
|
41
43
|
--ds-color-status-warning: #fac200;
|
|
42
44
|
--ds-color-status-warning-subtle: #fff6d1;
|
|
43
|
-
--ds-color-surface-accent1: #
|
|
44
|
-
--ds-color-surface-accent1-muted: #
|
|
45
|
+
--ds-color-surface-accent1: #5de3f7;
|
|
46
|
+
--ds-color-surface-accent1-muted: #ebfafd;
|
|
47
|
+
--ds-color-surface-accent1-subtle: #b4eff9;
|
|
48
|
+
--ds-color-surface-accent2: #a3cd6a;
|
|
49
|
+
--ds-color-surface-accent2-muted: #eaf3dd;
|
|
45
50
|
--ds-color-surface-default: #ffffff;
|
|
46
|
-
--ds-color-surface-inverse: #
|
|
47
|
-
--ds-color-surface-inverse-subtle: #
|
|
51
|
+
--ds-color-surface-inverse: #00274a;
|
|
52
|
+
--ds-color-surface-inverse-subtle: #2875b5;
|
|
48
53
|
--ds-color-surface-neutral-medium: #c5c5c5;
|
|
49
|
-
--ds-color-surface-neutral-subtle: #
|
|
50
|
-
--ds-color-texticon-accent1: #
|
|
54
|
+
--ds-color-surface-neutral-subtle: #f2f2f2;
|
|
55
|
+
--ds-color-texticon-accent1: #00274a;
|
|
51
56
|
--ds-color-texticon-default: #2a2a2a;
|
|
52
|
-
--ds-color-texticon-disabled: #
|
|
57
|
+
--ds-color-texticon-disabled: #d0d0d0;
|
|
53
58
|
--ds-color-texticon-inverse: #ffffff;
|
|
59
|
+
--ds-color-texticon-inverse-disabled: #d0d0d0;
|
|
54
60
|
--ds-color-texticon-muted: #676767;
|
|
55
61
|
--ds-font-weight-body-default: Book;
|
|
56
62
|
--ds-font-weight-body-large: Book;
|
|
@@ -75,25 +81,27 @@
|
|
|
75
81
|
--ds-color-border-divider-inverse: #ffffff66;
|
|
76
82
|
--ds-color-border-inverse: #ffffff;
|
|
77
83
|
--ds-color-border-subtle: #dddddd;
|
|
78
|
-
--ds-color-brand-accent1: #00a5ba;
|
|
79
84
|
--ds-color-brand-primary: #ce0c88;
|
|
80
85
|
--ds-color-brand-primary-bold: #831a57;
|
|
86
|
+
--ds-color-brand-primary-muted: #fdf1f8;
|
|
81
87
|
--ds-color-brand-primary-subtle: #f0a5d2;
|
|
82
88
|
--ds-color-brand-secondary: #463c8f;
|
|
83
89
|
--ds-color-brand-secondary-bold: #31295c;
|
|
84
|
-
--ds-color-brand-secondary-
|
|
90
|
+
--ds-color-brand-secondary-muted: #edeaf4;
|
|
91
|
+
--ds-color-brand-secondary-subtle: #6b5da4;
|
|
85
92
|
--ds-color-brand-tertiary: #ee453d;
|
|
86
93
|
--ds-color-brand-tertiary-bold: #97322a;
|
|
94
|
+
--ds-color-brand-tertiary-muted: #ffeeea;
|
|
87
95
|
--ds-color-brand-tertiary-subtle: #ff9080;
|
|
88
|
-
--ds-color-
|
|
89
|
-
--ds-color-
|
|
90
|
-
--ds-color-
|
|
91
|
-
--ds-color-
|
|
92
|
-
--ds-color-
|
|
93
|
-
--ds-color-
|
|
94
|
-
--ds-color-
|
|
95
|
-
--ds-color-
|
|
96
|
-
--ds-color-
|
|
96
|
+
--ds-color-farebrand-basiceconomy: #d0d0d0;
|
|
97
|
+
--ds-color-farebrand-business-first: #463c8f;
|
|
98
|
+
--ds-color-farebrand-economy: #ce0c88;
|
|
99
|
+
--ds-color-farebrand-premiumeconomy: #00a5ba;
|
|
100
|
+
--ds-color-farebrand-oneworld-emerald: #139142;
|
|
101
|
+
--ds-color-farebrand-oneworld-sapphire: #015daa;
|
|
102
|
+
--ds-color-farebrand-oneworld-ruby: #a41d4a;
|
|
103
|
+
--ds-color-pagebackground-default: #ffffff;
|
|
104
|
+
--ds-color-pagebackground-utility: #f2f2f2;
|
|
97
105
|
--ds-color-status-default: #463c8f;
|
|
98
106
|
--ds-color-status-error: #e53339;
|
|
99
107
|
--ds-color-status-error-subtle: #fddede;
|
|
@@ -101,19 +109,23 @@
|
|
|
101
109
|
--ds-color-status-info-subtle: #e8f2f8;
|
|
102
110
|
--ds-color-status-success: #529325;
|
|
103
111
|
--ds-color-status-success-subtle: #e4f1da;
|
|
104
|
-
--ds-color-status-warning: #
|
|
112
|
+
--ds-color-status-warning: #fac200;
|
|
105
113
|
--ds-color-status-warning-subtle: #fff6d1;
|
|
106
|
-
--ds-color-surface-accent1: #
|
|
107
|
-
--ds-color-surface-accent1-muted: #
|
|
114
|
+
--ds-color-surface-accent1: #dddddd;
|
|
115
|
+
--ds-color-surface-accent1-muted: #f7f7f7;
|
|
116
|
+
--ds-color-surface-accent1-subtle: #f2f2f2;
|
|
117
|
+
--ds-color-surface-accent2: #dddddd;
|
|
118
|
+
--ds-color-surface-accent2-muted: #f7f7f7;
|
|
108
119
|
--ds-color-surface-default: #ffffff;
|
|
109
120
|
--ds-color-surface-inverse: #463c8f;
|
|
110
|
-
--ds-color-surface-inverse-subtle: #
|
|
121
|
+
--ds-color-surface-inverse-subtle: #6b5da4;
|
|
111
122
|
--ds-color-surface-neutral-medium: #dddddd;
|
|
112
|
-
--ds-color-surface-neutral-subtle: #
|
|
123
|
+
--ds-color-surface-neutral-subtle: #f7f7f7;
|
|
113
124
|
--ds-color-texticon-accent1: #000000;
|
|
114
125
|
--ds-color-texticon-default: #000000;
|
|
115
|
-
--ds-color-texticon-disabled: #
|
|
126
|
+
--ds-color-texticon-disabled: #d0d0d0;
|
|
116
127
|
--ds-color-texticon-inverse: #ffffff;
|
|
128
|
+
--ds-color-texticon-inverse-disabled: #d0d0d0;
|
|
117
129
|
--ds-color-texticon-muted: #3d3d3d;
|
|
118
130
|
--ds-font-weight-display: Semibold;
|
|
119
131
|
--ds-font-weight-body-default: Regular;
|
|
@@ -1,55 +1,61 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 06 Mar 2025 17:27:56 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
7
|
--ds-color-border-bold: #585e67;
|
|
8
|
-
--ds-color-border-brand: #
|
|
8
|
+
--ds-color-border-brand: #01426a;
|
|
9
9
|
--ds-color-border-default: #959595;
|
|
10
10
|
--ds-color-border-divider: #00000026;
|
|
11
11
|
--ds-color-border-divider-inverse: #ffffff66;
|
|
12
12
|
--ds-color-border-inverse: #ffffff;
|
|
13
13
|
--ds-color-border-subtle: #dddddd;
|
|
14
|
-
--ds-color-brand-
|
|
15
|
-
--ds-color-brand-primary: #
|
|
16
|
-
--ds-color-brand-primary-
|
|
17
|
-
--ds-color-brand-primary-subtle: #
|
|
18
|
-
--ds-color-brand-secondary: #
|
|
19
|
-
--ds-color-brand-secondary-bold: #
|
|
20
|
-
--ds-color-brand-secondary-
|
|
21
|
-
--ds-color-brand-
|
|
22
|
-
--ds-color-brand-tertiary
|
|
23
|
-
--ds-color-brand-tertiary-
|
|
24
|
-
--ds-color-
|
|
25
|
-
--ds-color-
|
|
26
|
-
--ds-color-
|
|
27
|
-
--ds-color-
|
|
28
|
-
--ds-color-
|
|
29
|
-
--ds-color-
|
|
30
|
-
--ds-color-
|
|
31
|
-
--ds-color-
|
|
32
|
-
--ds-color-
|
|
14
|
+
--ds-color-brand-primary: #01426a;
|
|
15
|
+
--ds-color-brand-primary-bold: #00274a;
|
|
16
|
+
--ds-color-brand-primary-muted: #ebf3f9;
|
|
17
|
+
--ds-color-brand-primary-subtle: #2875b5;
|
|
18
|
+
--ds-color-brand-secondary: #5de3f7;
|
|
19
|
+
--ds-color-brand-secondary-bold: #18c3dd;
|
|
20
|
+
--ds-color-brand-secondary-muted: #ebfafd;
|
|
21
|
+
--ds-color-brand-secondary-subtle: #b4eff9;
|
|
22
|
+
--ds-color-brand-tertiary: #a3cd6a;
|
|
23
|
+
--ds-color-brand-tertiary-bold: #7daf3b;
|
|
24
|
+
--ds-color-brand-tertiary-muted: #eaf3dd;
|
|
25
|
+
--ds-color-brand-tertiary-subtle: #c9e1a7;
|
|
26
|
+
--ds-color-farebrand-basiceconomy: #97eaf8;
|
|
27
|
+
--ds-color-farebrand-business-first: #00274a;
|
|
28
|
+
--ds-color-farebrand-economy: #0074ca;
|
|
29
|
+
--ds-color-farebrand-premiumeconomy: #005154;
|
|
30
|
+
--ds-color-farebrand-oneworld-emerald: #139142;
|
|
31
|
+
--ds-color-farebrand-oneworld-sapphire: #015daa;
|
|
32
|
+
--ds-color-farebrand-oneworld-ruby: #a41d4a;
|
|
33
|
+
--ds-color-pagebackground-default: #ebfafd;
|
|
34
|
+
--ds-color-pagebackground-utility: #ffffff;
|
|
33
35
|
--ds-color-status-default: #afb9c6;
|
|
34
|
-
--ds-color-status-error: #
|
|
36
|
+
--ds-color-status-error: #e53339;
|
|
35
37
|
--ds-color-status-error-subtle: #fddede;
|
|
36
|
-
--ds-color-status-info: #
|
|
37
|
-
--ds-color-status-info-subtle: #
|
|
38
|
-
--ds-color-status-success: #
|
|
38
|
+
--ds-color-status-info: #01426a;
|
|
39
|
+
--ds-color-status-info-subtle: #e8f2f8;
|
|
40
|
+
--ds-color-status-success: #529325;
|
|
39
41
|
--ds-color-status-success-subtle: #e4f1da;
|
|
40
42
|
--ds-color-status-warning: #fac200;
|
|
41
43
|
--ds-color-status-warning-subtle: #fff6d1;
|
|
42
|
-
--ds-color-surface-accent1: #
|
|
43
|
-
--ds-color-surface-accent1-muted: #
|
|
44
|
+
--ds-color-surface-accent1: #5de3f7;
|
|
45
|
+
--ds-color-surface-accent1-muted: #ebfafd;
|
|
46
|
+
--ds-color-surface-accent1-subtle: #b4eff9;
|
|
47
|
+
--ds-color-surface-accent2: #a3cd6a;
|
|
48
|
+
--ds-color-surface-accent2-muted: #eaf3dd;
|
|
44
49
|
--ds-color-surface-default: #ffffff;
|
|
45
|
-
--ds-color-surface-inverse: #
|
|
46
|
-
--ds-color-surface-inverse-subtle: #
|
|
50
|
+
--ds-color-surface-inverse: #00274a;
|
|
51
|
+
--ds-color-surface-inverse-subtle: #2875b5;
|
|
47
52
|
--ds-color-surface-neutral-medium: #c5c5c5;
|
|
48
|
-
--ds-color-surface-neutral-subtle: #
|
|
49
|
-
--ds-color-texticon-accent1: #
|
|
53
|
+
--ds-color-surface-neutral-subtle: #f2f2f2;
|
|
54
|
+
--ds-color-texticon-accent1: #00274a;
|
|
50
55
|
--ds-color-texticon-default: #2a2a2a;
|
|
51
|
-
--ds-color-texticon-disabled: #
|
|
56
|
+
--ds-color-texticon-disabled: #d0d0d0;
|
|
52
57
|
--ds-color-texticon-inverse: #ffffff;
|
|
58
|
+
--ds-color-texticon-inverse-disabled: #d0d0d0;
|
|
53
59
|
--ds-color-texticon-muted: #676767;
|
|
54
60
|
--ds-font-weight-body-default: Book;
|
|
55
61
|
--ds-font-weight-body-large: Book;
|