@navikt/ds-css 2.8.16 → 2.9.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/.gitignore +1 -0
- package/CHANGELOG.md +10 -0
- package/baseline/_inline-reset.css +52 -0
- package/baseline/{utility.css → _utilities.css} +21 -8
- package/baseline/baseline.css +2 -35
- package/baseline/index.css +5 -0
- package/baseline/reset.css +294 -0
- package/baseline/tokens.css +1 -0
- package/config/_mappings.d.ts +24 -0
- package/config/_mappings.js +149 -0
- package/dist/component/accordion.css +74 -0
- package/dist/component/accordion.min.css +1 -0
- package/dist/component/alert.css +76 -0
- package/dist/component/alert.min.css +1 -0
- package/dist/component/button.css +352 -0
- package/dist/component/button.min.css +1 -0
- package/dist/component/chat.css +98 -0
- package/dist/component/chat.min.css +1 -0
- package/dist/component/chips.css +138 -0
- package/dist/component/chips.min.css +1 -0
- package/dist/component/contentcontainer.css +17 -0
- package/dist/component/contentcontainer.min.css +1 -0
- package/dist/component/date.css +221 -0
- package/dist/component/date.min.css +1 -0
- package/dist/component/expansioncard.css +197 -0
- package/dist/component/expansioncard.min.css +3 -0
- package/dist/component/form.css +734 -0
- package/dist/component/form.min.css +1 -0
- package/dist/component/grid.css +217 -0
- package/dist/component/grid.min.css +1 -0
- package/dist/component/guidepanel.css +62 -0
- package/dist/component/guidepanel.min.css +1 -0
- package/dist/component/helptext.css +45 -0
- package/dist/component/helptext.min.css +1 -0
- package/dist/component/index.css +3988 -0
- package/dist/component/index.min.css +4 -0
- package/dist/component/link.css +37 -0
- package/dist/component/link.min.css +1 -0
- package/dist/component/linkpanel.css +38 -0
- package/dist/component/linkpanel.min.css +1 -0
- package/dist/component/list.css +66 -0
- package/dist/component/list.min.css +1 -0
- package/dist/component/loader.css +113 -0
- package/dist/component/loader.min.css +1 -0
- package/dist/component/modal.css +61 -0
- package/dist/component/modal.min.css +1 -0
- package/dist/component/pagination.css +60 -0
- package/dist/component/pagination.min.css +1 -0
- package/dist/component/panel.css +10 -0
- package/dist/component/panel.min.css +1 -0
- package/dist/component/popover.css +54 -0
- package/dist/component/popover.min.css +1 -0
- package/dist/component/readmore.css +63 -0
- package/dist/component/readmore.min.css +1 -0
- package/dist/component/stepper.css +225 -0
- package/dist/component/stepper.min.css +1 -0
- package/dist/component/table.css +227 -0
- package/dist/component/table.min.css +1 -0
- package/dist/component/tabs.css +114 -0
- package/dist/component/tabs.min.css +1 -0
- package/dist/component/tag.css +116 -0
- package/dist/component/tag.min.css +1 -0
- package/dist/component/togglegroup.css +100 -0
- package/dist/component/togglegroup.min.css +1 -0
- package/dist/component/tooltip.css +53 -0
- package/dist/component/tooltip.min.css +1 -0
- package/dist/component/typography.css +160 -0
- package/dist/component/typography.min.css +1 -0
- package/dist/components.css +3272 -0
- package/dist/components.min.css +3 -0
- package/dist/global/baseline.css +138 -0
- package/dist/global/baseline.min.css +1 -0
- package/dist/global/fonts.css +21 -0
- package/dist/global/fonts.min.css +1 -0
- package/dist/global/print.css +75 -0
- package/dist/global/print.min.css +1 -0
- package/dist/global/reset.css +294 -0
- package/dist/global/reset.min.css +1 -0
- package/dist/global/tokens.css +279 -0
- package/dist/global/tokens.min.css +1 -0
- package/dist/index.css +73 -85
- package/dist/index.min.css +4 -0
- package/form/fieldset.css +4 -0
- package/index.css +1 -1
- package/package.json +20 -5
- package/typography.css +5 -4
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
2
|
+
|
|
3
|
+
/* Document
|
|
4
|
+
========================================================================== */
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* 1. Correct the line height in all browsers.
|
|
8
|
+
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
html {
|
|
12
|
+
line-height: 1.15; /* 1 */
|
|
13
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/* Sections
|
|
17
|
+
========================================================================== */
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Remove the margin in all browsers.
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
body {
|
|
24
|
+
margin: 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Render the `main` element consistently in IE.
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
main {
|
|
32
|
+
display: block;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Correct the font size and margin on `h1` elements within `section` and
|
|
37
|
+
* `article` contexts in Chrome, Firefox, and Safari.
|
|
38
|
+
*/
|
|
39
|
+
|
|
40
|
+
h1 {
|
|
41
|
+
font-size: 2em;
|
|
42
|
+
margin: 0.67em 0;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/* Grouping content
|
|
46
|
+
========================================================================== */
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* 1. Add the correct box sizing in Firefox.
|
|
50
|
+
* 2. Show the overflow in Edge and IE.
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
hr {
|
|
54
|
+
box-sizing: content-box; /* 1 */
|
|
55
|
+
height: 0; /* 1 */
|
|
56
|
+
overflow: visible; /* 2 */
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
61
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
|
62
|
+
*/
|
|
63
|
+
|
|
64
|
+
pre {
|
|
65
|
+
font-family: monospace; /* 1 */
|
|
66
|
+
font-size: 1em; /* 2 */
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/* Text-level semantics
|
|
70
|
+
========================================================================== */
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* Remove the gray background on active links in IE 10.
|
|
74
|
+
*/
|
|
75
|
+
|
|
76
|
+
a {
|
|
77
|
+
background-color: transparent;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* 1. Remove the bottom border in Chrome 57-
|
|
82
|
+
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
83
|
+
*/
|
|
84
|
+
|
|
85
|
+
abbr[title] {
|
|
86
|
+
border-bottom: none; /* 1 */
|
|
87
|
+
text-decoration: underline; /* 2 */
|
|
88
|
+
text-decoration: underline dotted; /* 2 */
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
93
|
+
*/
|
|
94
|
+
|
|
95
|
+
b,
|
|
96
|
+
strong {
|
|
97
|
+
font-weight: bolder;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
102
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
|
103
|
+
*/
|
|
104
|
+
|
|
105
|
+
code,
|
|
106
|
+
kbd,
|
|
107
|
+
samp {
|
|
108
|
+
font-family: monospace; /* 1 */
|
|
109
|
+
font-size: 1em; /* 2 */
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Add the correct font size in all browsers.
|
|
114
|
+
*/
|
|
115
|
+
|
|
116
|
+
small {
|
|
117
|
+
font-size: 80%;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Prevent `sub` and `sup` elements from affecting the line height in
|
|
122
|
+
* all browsers.
|
|
123
|
+
*/
|
|
124
|
+
|
|
125
|
+
sub,
|
|
126
|
+
sup {
|
|
127
|
+
font-size: 75%;
|
|
128
|
+
line-height: 0;
|
|
129
|
+
position: relative;
|
|
130
|
+
vertical-align: baseline;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
sub {
|
|
134
|
+
bottom: -0.25em;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
sup {
|
|
138
|
+
top: -0.5em;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/* Embedded content
|
|
142
|
+
========================================================================== */
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* Remove the border on images inside links in IE 10.
|
|
146
|
+
*/
|
|
147
|
+
|
|
148
|
+
img {
|
|
149
|
+
border-style: none;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
/* Forms
|
|
153
|
+
========================================================================== */
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Remove the inner border and padding in Firefox.
|
|
157
|
+
*/
|
|
158
|
+
|
|
159
|
+
button::-moz-focus-inner,
|
|
160
|
+
[type="button"]::-moz-focus-inner,
|
|
161
|
+
[type="reset"]::-moz-focus-inner,
|
|
162
|
+
[type="submit"]::-moz-focus-inner {
|
|
163
|
+
border-style: none;
|
|
164
|
+
padding: 0;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* Restore the focus styles unset by the previous rule.
|
|
169
|
+
*/
|
|
170
|
+
|
|
171
|
+
button:-moz-focusring,
|
|
172
|
+
[type="button"]:-moz-focusring,
|
|
173
|
+
[type="reset"]:-moz-focusring,
|
|
174
|
+
[type="submit"]:-moz-focusring {
|
|
175
|
+
outline: 1px dotted ButtonText;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* Correct the padding in Firefox.
|
|
180
|
+
*/
|
|
181
|
+
|
|
182
|
+
fieldset {
|
|
183
|
+
padding: 0.35em 0.75em 0.625em;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* 1. Correct the text wrapping in Edge and IE.
|
|
188
|
+
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
|
189
|
+
* 3. Remove the padding so developers are not caught out when they zero out
|
|
190
|
+
* `fieldset` elements in all browsers.
|
|
191
|
+
*/
|
|
192
|
+
|
|
193
|
+
legend {
|
|
194
|
+
box-sizing: border-box; /* 1 */
|
|
195
|
+
color: inherit; /* 2 */
|
|
196
|
+
display: table; /* 1 */
|
|
197
|
+
max-width: 100%; /* 1 */
|
|
198
|
+
padding: 0; /* 3 */
|
|
199
|
+
white-space: normal; /* 1 */
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|
204
|
+
*/
|
|
205
|
+
|
|
206
|
+
progress {
|
|
207
|
+
vertical-align: baseline;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* Remove the default vertical scrollbar in IE 10+.
|
|
212
|
+
*/
|
|
213
|
+
|
|
214
|
+
textarea {
|
|
215
|
+
overflow: auto;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* 1. Add the correct box sizing in IE 10.
|
|
220
|
+
* 2. Remove the padding in IE 10.
|
|
221
|
+
*/
|
|
222
|
+
|
|
223
|
+
[type="checkbox"],
|
|
224
|
+
[type="radio"] {
|
|
225
|
+
box-sizing: border-box; /* 1 */
|
|
226
|
+
padding: 0; /* 2 */
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
* Correct the cursor style of increment and decrement buttons in Chrome.
|
|
231
|
+
*/
|
|
232
|
+
|
|
233
|
+
[type="number"]::-webkit-inner-spin-button,
|
|
234
|
+
[type="number"]::-webkit-outer-spin-button {
|
|
235
|
+
height: auto;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* 1. Correct the odd appearance in Chrome and Safari.
|
|
240
|
+
* 2. Correct the outline style in Safari.
|
|
241
|
+
*/
|
|
242
|
+
|
|
243
|
+
[type="search"] {
|
|
244
|
+
-webkit-appearance: textfield; /* 1 */
|
|
245
|
+
outline-offset: -2px; /* 2 */
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* Remove the inner padding in Chrome and Safari on macOS.
|
|
250
|
+
*/
|
|
251
|
+
|
|
252
|
+
[type="search"]::-webkit-search-decoration {
|
|
253
|
+
-webkit-appearance: none;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* 1. Correct the inability to style clickable types in iOS and Safari.
|
|
258
|
+
* 2. Change font properties to `inherit` in Safari.
|
|
259
|
+
*/
|
|
260
|
+
|
|
261
|
+
::-webkit-file-upload-button {
|
|
262
|
+
-webkit-appearance: button; /* 1 */
|
|
263
|
+
font: inherit; /* 2 */
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/* Interactive
|
|
267
|
+
========================================================================== */
|
|
268
|
+
|
|
269
|
+
/*
|
|
270
|
+
* Add the correct display in Edge, IE 10+, and Firefox.
|
|
271
|
+
*/
|
|
272
|
+
|
|
273
|
+
details {
|
|
274
|
+
display: block;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
/*
|
|
278
|
+
* Add the correct display in all browsers.
|
|
279
|
+
*/
|
|
280
|
+
|
|
281
|
+
summary {
|
|
282
|
+
display: list-item;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
/* Misc
|
|
286
|
+
========================================================================== */
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* Add the correct display in IE 10+.
|
|
290
|
+
*/
|
|
291
|
+
|
|
292
|
+
template {
|
|
293
|
+
display: none;
|
|
294
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{-webkit-text-size-adjust:100%;line-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly
|
|
3
|
+
* Generated on Wed, 26 Apr 2023 06:38:10 GMT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
:root, :host {
|
|
7
|
+
--a-spacing-05: 0.125rem;
|
|
8
|
+
--a-spacing-32: 8rem;
|
|
9
|
+
--a-spacing-24: 6rem;
|
|
10
|
+
--a-spacing-20: 5rem;
|
|
11
|
+
--a-spacing-18: 4.5rem;
|
|
12
|
+
--a-spacing-16: 4rem;
|
|
13
|
+
--a-spacing-14: 3.5rem;
|
|
14
|
+
--a-spacing-12: 3rem;
|
|
15
|
+
--a-spacing-11: 2.75rem;
|
|
16
|
+
--a-spacing-10: 2.5rem;
|
|
17
|
+
--a-spacing-9: 2.25rem;
|
|
18
|
+
--a-spacing-8: 2rem;
|
|
19
|
+
--a-spacing-7: 1.75rem;
|
|
20
|
+
--a-spacing-6: 1.5rem;
|
|
21
|
+
--a-spacing-5: 1.25rem;
|
|
22
|
+
--a-spacing-4: 1rem;
|
|
23
|
+
--a-spacing-3: 0.75rem;
|
|
24
|
+
--a-spacing-2: 0.5rem;
|
|
25
|
+
--a-spacing-1: 0.25rem;
|
|
26
|
+
--a-spacing-0: 0;
|
|
27
|
+
--a-shadow-xlarge: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 25px 50px -5px rgba(0, 0, 0, 0.1);
|
|
28
|
+
--a-shadow-large: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
|
29
|
+
--a-shadow-medium: 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
30
|
+
--a-shadow-small: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
|
|
31
|
+
--a-shadow-xsmall: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
|
|
32
|
+
--a-purple-900: rgba(31, 20, 47, 1);
|
|
33
|
+
--a-purple-800: rgba(48, 31, 70, 1);
|
|
34
|
+
--a-purple-700: rgba(65, 43, 93, 1);
|
|
35
|
+
--a-purple-600: rgba(82, 56, 116, 1);
|
|
36
|
+
--a-purple-500: rgba(99, 70, 137, 1);
|
|
37
|
+
--a-purple-400: rgba(130, 105, 162, 1);
|
|
38
|
+
--a-purple-300: rgba(161, 141, 187, 1);
|
|
39
|
+
--a-purple-200: rgba(192, 178, 210, 1);
|
|
40
|
+
--a-purple-100: rgba(224, 216, 233, 1);
|
|
41
|
+
--a-purple-50: rgba(239, 236, 244, 1);
|
|
42
|
+
--a-orange-900: rgba(82, 51, 0, 1);
|
|
43
|
+
--a-orange-800: rgba(125, 76, 0, 1);
|
|
44
|
+
--a-orange-700: rgba(168, 100, 0, 1);
|
|
45
|
+
--a-orange-600: rgba(199, 115, 0, 1);
|
|
46
|
+
--a-orange-500: rgba(255, 145, 0, 1);
|
|
47
|
+
--a-orange-400: rgba(255, 170, 51, 1);
|
|
48
|
+
--a-orange-300: rgba(255, 193, 102, 1);
|
|
49
|
+
--a-orange-200: rgba(255, 215, 153, 1);
|
|
50
|
+
--a-orange-100: rgba(255, 236, 204, 1);
|
|
51
|
+
--a-orange-50: rgba(255, 249, 240, 1);
|
|
52
|
+
--a-limegreen-900: rgba(71, 78, 0, 1);
|
|
53
|
+
--a-limegreen-800: rgba(102, 110, 0, 1);
|
|
54
|
+
--a-limegreen-700: rgba(127, 137, 0, 1);
|
|
55
|
+
--a-limegreen-600: rgba(147, 158, 0, 1);
|
|
56
|
+
--a-limegreen-500: rgba(162, 173, 0, 1);
|
|
57
|
+
--a-limegreen-400: rgba(193, 203, 51, 1);
|
|
58
|
+
--a-limegreen-300: rgba(217, 227, 102, 1);
|
|
59
|
+
--a-limegreen-200: rgba(236, 243, 153, 1);
|
|
60
|
+
--a-limegreen-100: rgba(249, 252, 204, 1);
|
|
61
|
+
--a-limegreen-50: rgba(253, 255, 230, 1);
|
|
62
|
+
--a-lightblue-900: rgba(19, 72, 82, 1);
|
|
63
|
+
--a-lightblue-800: rgba(35, 107, 125, 1);
|
|
64
|
+
--a-lightblue-700: rgba(54, 141, 168, 1);
|
|
65
|
+
--a-lightblue-600: rgba(76, 173, 205, 1);
|
|
66
|
+
--a-lightblue-500: rgba(102, 203, 236, 1);
|
|
67
|
+
--a-lightblue-400: rgba(124, 218, 248, 1);
|
|
68
|
+
--a-lightblue-300: rgba(151, 230, 255, 1);
|
|
69
|
+
--a-lightblue-200: rgba(181, 241, 255, 1);
|
|
70
|
+
--a-lightblue-100: rgba(216, 249, 255, 1);
|
|
71
|
+
--a-lightblue-50: rgba(235, 252, 255, 1);
|
|
72
|
+
--a-green-900: rgba(0, 59, 15, 1);
|
|
73
|
+
--a-green-800: rgba(0, 85, 25, 1);
|
|
74
|
+
--a-green-700: rgba(0, 106, 35, 1);
|
|
75
|
+
--a-green-600: rgba(0, 124, 46, 1);
|
|
76
|
+
--a-green-500: rgba(6, 137, 58, 1);
|
|
77
|
+
--a-green-400: rgba(51, 170, 95, 1);
|
|
78
|
+
--a-green-300: rgba(102, 199, 134, 1);
|
|
79
|
+
--a-green-200: rgba(153, 222, 173, 1);
|
|
80
|
+
--a-green-100: rgba(204, 241, 214, 1);
|
|
81
|
+
--a-green-50: rgba(243, 252, 245, 1);
|
|
82
|
+
--a-deepblue-900: rgba(0, 36, 58, 1);
|
|
83
|
+
--a-deepblue-800: rgba(0, 52, 83, 1);
|
|
84
|
+
--a-deepblue-700: rgba(0, 67, 103, 1);
|
|
85
|
+
--a-deepblue-600: rgba(0, 80, 119, 1);
|
|
86
|
+
--a-deepblue-500: rgba(0, 91, 130, 1);
|
|
87
|
+
--a-deepblue-400: rgba(51, 128, 165, 1);
|
|
88
|
+
--a-deepblue-300: rgba(102, 163, 196, 1);
|
|
89
|
+
--a-deepblue-200: rgba(153, 196, 221, 1);
|
|
90
|
+
--a-deepblue-100: rgba(204, 226, 240, 1);
|
|
91
|
+
--a-deepblue-50: rgba(230, 241, 248, 1);
|
|
92
|
+
--a-red-900: rgba(38, 0, 0, 1);
|
|
93
|
+
--a-red-800: rgba(92, 0, 0, 1);
|
|
94
|
+
--a-red-700: rgba(140, 0, 0, 1);
|
|
95
|
+
--a-red-600: rgba(173, 0, 0, 1);
|
|
96
|
+
--a-red-500: rgba(195, 0, 0, 1);
|
|
97
|
+
--a-red-400: rgba(222, 46, 46, 1);
|
|
98
|
+
--a-red-300: rgba(242, 92, 92, 1);
|
|
99
|
+
--a-red-200: rgba(246, 130, 130, 1);
|
|
100
|
+
--a-red-100: rgba(255, 194, 194, 1);
|
|
101
|
+
--a-red-50: rgba(255, 230, 230, 1);
|
|
102
|
+
--a-blue-900: rgba(0, 34, 82, 1);
|
|
103
|
+
--a-blue-800: rgba(0, 52, 125, 1);
|
|
104
|
+
--a-blue-700: rgba(0, 69, 156, 1);
|
|
105
|
+
--a-blue-600: rgba(0, 86, 180, 1);
|
|
106
|
+
--a-blue-500: rgba(0, 103, 197, 1);
|
|
107
|
+
--a-blue-400: rgba(51, 134, 224, 1);
|
|
108
|
+
--a-blue-300: rgba(102, 165, 244, 1);
|
|
109
|
+
--a-blue-200: rgba(153, 195, 255, 1);
|
|
110
|
+
--a-blue-100: rgba(204, 225, 255, 1);
|
|
111
|
+
--a-blue-50: rgba(230, 240, 255, 1);
|
|
112
|
+
--a-grayalpha-900: rgba(0, 0, 0, 0.85);
|
|
113
|
+
--a-grayalpha-800: rgba(0, 0, 0, 0.75);
|
|
114
|
+
--a-grayalpha-700: rgba(0, 0, 0, 0.65);
|
|
115
|
+
--a-grayalpha-600: rgba(0, 0, 0, 0.56);
|
|
116
|
+
--a-grayalpha-500: rgba(0, 0, 0, 0.44);
|
|
117
|
+
--a-grayalpha-400: rgba(0, 0, 0, 0.31);
|
|
118
|
+
--a-grayalpha-300: rgba(0, 0, 0, 0.19);
|
|
119
|
+
--a-grayalpha-200: rgba(0, 0, 0, 0.1);
|
|
120
|
+
--a-grayalpha-100: rgba(0, 0, 0, 0.05);
|
|
121
|
+
--a-grayalpha-50: rgba(0, 0, 0, 0.03);
|
|
122
|
+
--a-gray-900: rgba(38, 38, 38, 1);
|
|
123
|
+
--a-gray-800: rgba(64, 64, 64, 1);
|
|
124
|
+
--a-gray-700: rgba(89, 89, 89, 1);
|
|
125
|
+
--a-gray-600: rgba(112, 112, 112, 1);
|
|
126
|
+
--a-gray-500: rgba(143, 143, 143, 1);
|
|
127
|
+
--a-gray-400: rgba(176, 176, 176, 1);
|
|
128
|
+
--a-gray-300: rgba(207, 207, 207, 1);
|
|
129
|
+
--a-gray-200: rgba(229, 229, 229, 1);
|
|
130
|
+
--a-gray-100: rgba(241, 241, 241, 1);
|
|
131
|
+
--a-gray-50: rgba(247, 247, 247, 1);
|
|
132
|
+
--a-nav-red: rgba(195, 0, 0, 1);
|
|
133
|
+
--a-white: rgba(255, 255, 255, 1);
|
|
134
|
+
--a-transparent: rgba(255, 255, 255, 0);
|
|
135
|
+
--a-border-radius-full: 9999px;
|
|
136
|
+
--a-border-radius-xlarge: 12px;
|
|
137
|
+
--a-border-radius-large: 8px;
|
|
138
|
+
--a-border-radius-medium: 4px;
|
|
139
|
+
--a-border-radius-small: 2px;
|
|
140
|
+
--a-z-index-tooltip: 3000;
|
|
141
|
+
--a-z-index-focus: 10;
|
|
142
|
+
--a-z-index-popover: 1000;
|
|
143
|
+
--a-z-index-modal: 2000;
|
|
144
|
+
--a-font-weight-regular: 400;
|
|
145
|
+
--a-font-weight-bold: 600;
|
|
146
|
+
--a-font-size-small: 0.875rem;
|
|
147
|
+
--a-font-size-medium: 1rem;
|
|
148
|
+
--a-font-size-large: 1.125rem;
|
|
149
|
+
--a-font-size-xlarge: 1.25rem;
|
|
150
|
+
--a-font-size-heading-xsmall: 1.125rem;
|
|
151
|
+
--a-font-size-heading-small: 1.25rem;
|
|
152
|
+
--a-font-size-heading-medium: 1.5rem;
|
|
153
|
+
--a-font-size-heading-large: 1.75rem;
|
|
154
|
+
--a-font-size-heading-xlarge: 2rem;
|
|
155
|
+
--a-font-size-heading-2xlarge: 2.5rem;
|
|
156
|
+
--a-font-line-height-medium: 1.25rem;
|
|
157
|
+
--a-font-line-height-large: 1.5rem;
|
|
158
|
+
--a-font-line-height-xlarge: 1.75rem;
|
|
159
|
+
--a-font-line-height-heading-xsmall: 1.5rem;
|
|
160
|
+
--a-font-line-height-heading-small: 1.75rem;
|
|
161
|
+
--a-font-line-height-heading-medium: 2rem;
|
|
162
|
+
--a-font-line-height-heading-large: 2.25rem;
|
|
163
|
+
--a-font-line-height-heading-xlarge: 2.5rem;
|
|
164
|
+
--a-font-line-height-heading-2xlarge: 3.25rem;
|
|
165
|
+
--a-font-family: "Source Sans Pro", Arial, sans-serif;
|
|
166
|
+
--a-breakpoint-xl-down: 1279px;
|
|
167
|
+
--a-breakpoint-xl: 1280px;
|
|
168
|
+
--a-breakpoint-lg-down: 1023px;
|
|
169
|
+
--a-breakpoint-lg: 1024px;
|
|
170
|
+
--a-breakpoint-md-down: 767px;
|
|
171
|
+
--a-breakpoint-md: 768px;
|
|
172
|
+
--a-breakpoint-sm-down: 479px;
|
|
173
|
+
--a-breakpoint-sm: 480px;
|
|
174
|
+
--a-breakpoint-xs: 0;
|
|
175
|
+
--a-icon-on-info: var(--a-gray-900);
|
|
176
|
+
--a-icon-on-warning: var(--a-gray-900);
|
|
177
|
+
--a-icon-on-danger: var(--a-white);
|
|
178
|
+
--a-icon-on-success: var(--a-white);
|
|
179
|
+
--a-icon-on-action: var(--a-white);
|
|
180
|
+
--a-icon-on-inverted: var(--a-white);
|
|
181
|
+
--a-icon-on-neutral: var(--a-white);
|
|
182
|
+
--a-icon-alt-3: var(--a-deepblue-400);
|
|
183
|
+
--a-icon-alt-2: var(--a-limegreen-700);
|
|
184
|
+
--a-icon-alt-1: var(--a-purple-500);
|
|
185
|
+
--a-icon-info: var(--a-lightblue-800);
|
|
186
|
+
--a-icon-warning: var(--a-orange-600);
|
|
187
|
+
--a-icon-danger: var(--a-red-500);
|
|
188
|
+
--a-icon-success: var(--a-green-500);
|
|
189
|
+
--a-icon-action: var(--a-blue-500);
|
|
190
|
+
--a-icon-action-on-action-subtle: var(--a-blue-600);
|
|
191
|
+
--a-icon-action-selected: var(--a-deepblue-500);
|
|
192
|
+
--a-icon-subtle: var(--a-gray-600);
|
|
193
|
+
--a-icon-default: var(--a-gray-900);
|
|
194
|
+
--a-surface-alt-3: var(--a-deepblue-500);
|
|
195
|
+
--a-surface-alt-3-strong: var(--a-deepblue-800);
|
|
196
|
+
--a-surface-alt-3-subtle: var(--a-deepblue-100);
|
|
197
|
+
--a-surface-alt-2: var(--a-limegreen-400);
|
|
198
|
+
--a-surface-alt-2-subtle: var(--a-limegreen-100);
|
|
199
|
+
--a-surface-alt-1: var(--a-purple-400);
|
|
200
|
+
--a-surface-alt-1-subtle: var(--a-purple-100);
|
|
201
|
+
--a-surface-info: var(--a-lightblue-500);
|
|
202
|
+
--a-surface-info-subtle: var(--a-lightblue-100);
|
|
203
|
+
--a-surface-info-subtle-hover: var(--a-lightblue-200);
|
|
204
|
+
--a-surface-warning: var(--a-orange-500);
|
|
205
|
+
--a-surface-warning-subtle: var(--a-orange-100);
|
|
206
|
+
--a-surface-warning-subtle-hover: var(--a-orange-200);
|
|
207
|
+
--a-surface-danger: var(--a-red-500);
|
|
208
|
+
--a-surface-danger-active: var(--a-red-700);
|
|
209
|
+
--a-surface-danger-hover: var(--a-red-600);
|
|
210
|
+
--a-surface-danger-subtle: var(--a-red-100);
|
|
211
|
+
--a-surface-danger-subtle-hover: var(--a-red-200);
|
|
212
|
+
--a-surface-success-hover: var(--a-green-600);
|
|
213
|
+
--a-surface-success: var(--a-green-500);
|
|
214
|
+
--a-surface-success-subtle: var(--a-green-100);
|
|
215
|
+
--a-surface-success-subtle-hover: var(--a-green-200);
|
|
216
|
+
--a-surface-neutral: var(--a-gray-700);
|
|
217
|
+
--a-surface-neutral-active: var(--a-gray-900);
|
|
218
|
+
--a-surface-neutral-selected: var(--a-gray-900);
|
|
219
|
+
--a-surface-neutral-hover: var(--a-gray-800);
|
|
220
|
+
--a-surface-neutral-subtle: var(--a-grayalpha-100);
|
|
221
|
+
--a-surface-neutral-subtle-hover: var(--a-grayalpha-200);
|
|
222
|
+
--a-surface-action: var(--a-blue-500);
|
|
223
|
+
--a-surface-action-selected: var(--a-deepblue-500);
|
|
224
|
+
--a-surface-action-selected-hover: var(--a-deepblue-600);
|
|
225
|
+
--a-surface-action-active: var(--a-deepblue-500);
|
|
226
|
+
--a-surface-action-hover: var(--a-blue-600);
|
|
227
|
+
--a-surface-action-subtle: var(--a-blue-50);
|
|
228
|
+
--a-surface-action-subtle-hover: var(--a-blue-100);
|
|
229
|
+
--a-surface-inverted: var(--a-gray-900);
|
|
230
|
+
--a-surface-inverted-active: var(--a-gray-700);
|
|
231
|
+
--a-surface-inverted-hover: var(--a-gray-800);
|
|
232
|
+
--a-surface-backdrop: var(--a-grayalpha-700);
|
|
233
|
+
--a-surface-transparent: var(--a-transparent);
|
|
234
|
+
--a-surface-subtle: var(--a-gray-50);
|
|
235
|
+
--a-surface-selected: var(--a-blue-50);
|
|
236
|
+
--a-surface-active: var(--a-grayalpha-200);
|
|
237
|
+
--a-surface-hover: var(--a-grayalpha-100);
|
|
238
|
+
--a-surface-default: var(--a-white);
|
|
239
|
+
--a-bg-subtle: var(--a-gray-100);
|
|
240
|
+
--a-bg-default: var(--a-white);
|
|
241
|
+
--a-text-on-alt-3: var(--a-white);
|
|
242
|
+
--a-text-on-alt-2: var(--a-gray-900);
|
|
243
|
+
--a-text-on-alt-1: var(--a-white);
|
|
244
|
+
--a-text-on-info: var(--a-gray-900);
|
|
245
|
+
--a-text-on-warning: var(--a-gray-900);
|
|
246
|
+
--a-text-on-danger: var(--a-white);
|
|
247
|
+
--a-text-on-success: var(--a-white);
|
|
248
|
+
--a-text-on-action: var(--a-white);
|
|
249
|
+
--a-text-on-neutral: var(--a-white);
|
|
250
|
+
--a-text-on-inverted: var(--a-white);
|
|
251
|
+
--a-text-action: var(--a-blue-500);
|
|
252
|
+
--a-text-action-on-action-subtle: var(--a-blue-600);
|
|
253
|
+
--a-text-action-selected: var(--a-deepblue-500);
|
|
254
|
+
--a-text-danger: var(--a-red-500);
|
|
255
|
+
--a-text-visited: var(--a-purple-500);
|
|
256
|
+
--a-text-subtle: var(--a-grayalpha-600);
|
|
257
|
+
--a-text-default: var(--a-gray-900);
|
|
258
|
+
--a-border-alt-3: var(--a-deepblue-500);
|
|
259
|
+
--a-border-alt-2: var(--a-limegreen-700);
|
|
260
|
+
--a-border-alt-1: var(--a-purple-400);
|
|
261
|
+
--a-border-on-inverted-subtle: var(--a-gray-700);
|
|
262
|
+
--a-border-on-inverted: var(--a-gray-200);
|
|
263
|
+
--a-border-focus: var(--a-blue-800);
|
|
264
|
+
--a-border-focus-on-inverted: var(--a-blue-200);
|
|
265
|
+
--a-border-info: var(--a-lightblue-700);
|
|
266
|
+
--a-border-warning: var(--a-orange-600);
|
|
267
|
+
--a-border-danger: var(--a-red-500);
|
|
268
|
+
--a-border-success: var(--a-green-500);
|
|
269
|
+
--a-border-selected: var(--a-blue-500);
|
|
270
|
+
--a-border-action: var(--a-blue-500);
|
|
271
|
+
--a-border-action-selected: var(--a-deepblue-500);
|
|
272
|
+
--a-border-subtle: var(--a-grayalpha-200);
|
|
273
|
+
--a-border-subtle-hover: var(--a-grayalpha-300);
|
|
274
|
+
--a-border-divider: var(--a-grayalpha-300);
|
|
275
|
+
--a-border-strong: var(--a-grayalpha-700);
|
|
276
|
+
--a-border-default: var(--a-grayalpha-500);
|
|
277
|
+
--a-shadow-focus: 0 0 0 3px var(--a-border-focus);
|
|
278
|
+
--a-shadow-focus-inverted: 0 0 0 3px var(--a-border-focus-on-inverted);
|
|
279
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:host,:root{--a-spacing-05:0.125rem;--a-spacing-32:8rem;--a-spacing-24:6rem;--a-spacing-20:5rem;--a-spacing-18:4.5rem;--a-spacing-16:4rem;--a-spacing-14:3.5rem;--a-spacing-12:3rem;--a-spacing-11:2.75rem;--a-spacing-10:2.5rem;--a-spacing-9:2.25rem;--a-spacing-8:2rem;--a-spacing-7:1.75rem;--a-spacing-6:1.5rem;--a-spacing-5:1.25rem;--a-spacing-4:1rem;--a-spacing-3:0.75rem;--a-spacing-2:0.5rem;--a-spacing-1:0.25rem;--a-spacing-0:0;--a-shadow-xlarge:0 8px 10px -6px rgba(0,0,0,.1),0 25px 50px -5px rgba(0,0,0,.1);--a-shadow-large:0 4px 6px -4px rgba(0,0,0,.1),0 10px 15px -3px rgba(0,0,0,.1);--a-shadow-medium:0 2px 4px -2px rgba(0,0,0,.1),0 4px 6px -1px rgba(0,0,0,.1);--a-shadow-small:0 1px 2px -1px rgba(0,0,0,.1),0 1px 3px 0 rgba(0,0,0,.1);--a-shadow-xsmall:0 1px 2px 0 rgba(0,0,0,.12);--a-purple-900:#1f142f;--a-purple-800:#301f46;--a-purple-700:#412b5d;--a-purple-600:#523874;--a-purple-500:#634689;--a-purple-400:#8269a2;--a-purple-300:#a18dbb;--a-purple-200:#c0b2d2;--a-purple-100:#e0d8e9;--a-purple-50:#efecf4;--a-orange-900:#523300;--a-orange-800:#7d4c00;--a-orange-700:#a86400;--a-orange-600:#c77300;--a-orange-500:#ff9100;--a-orange-400:#fa3;--a-orange-300:#ffc166;--a-orange-200:#ffd799;--a-orange-100:#ffeccc;--a-orange-50:#fff9f0;--a-limegreen-900:#474e00;--a-limegreen-800:#666e00;--a-limegreen-700:#7f8900;--a-limegreen-600:#939e00;--a-limegreen-500:#a2ad00;--a-limegreen-400:#c1cb33;--a-limegreen-300:#d9e366;--a-limegreen-200:#ecf399;--a-limegreen-100:#f9fccc;--a-limegreen-50:#fdffe6;--a-lightblue-900:#134852;--a-lightblue-800:#236b7d;--a-lightblue-700:#368da8;--a-lightblue-600:#4cadcd;--a-lightblue-500:#66cbec;--a-lightblue-400:#7cdaf8;--a-lightblue-300:#97e6ff;--a-lightblue-200:#b5f1ff;--a-lightblue-100:#d8f9ff;--a-lightblue-50:#ebfcff;--a-green-900:#003b0f;--a-green-800:#005519;--a-green-700:#006a23;--a-green-600:#007c2e;--a-green-500:#06893a;--a-green-400:#33aa5f;--a-green-300:#66c786;--a-green-200:#99dead;--a-green-100:#ccf1d6;--a-green-50:#f3fcf5;--a-deepblue-900:#00243a;--a-deepblue-800:#003453;--a-deepblue-700:#004367;--a-deepblue-600:#005077;--a-deepblue-500:#005b82;--a-deepblue-400:#3380a5;--a-deepblue-300:#66a3c4;--a-deepblue-200:#99c4dd;--a-deepblue-100:#cce2f0;--a-deepblue-50:#e6f1f8;--a-red-900:#260000;--a-red-800:#5c0000;--a-red-700:#8c0000;--a-red-600:#ad0000;--a-red-500:#c30000;--a-red-400:#de2e2e;--a-red-300:#f25c5c;--a-red-200:#f68282;--a-red-100:#ffc2c2;--a-red-50:#ffe6e6;--a-blue-900:#002252;--a-blue-800:#00347d;--a-blue-700:#00459c;--a-blue-600:#0056b4;--a-blue-500:#0067c5;--a-blue-400:#3386e0;--a-blue-300:#66a5f4;--a-blue-200:#99c3ff;--a-blue-100:#cce1ff;--a-blue-50:#e6f0ff;--a-grayalpha-900:rgba(0,0,0,.85);--a-grayalpha-800:rgba(0,0,0,.75);--a-grayalpha-700:rgba(0,0,0,.65);--a-grayalpha-600:rgba(0,0,0,.56);--a-grayalpha-500:rgba(0,0,0,.44);--a-grayalpha-400:rgba(0,0,0,.31);--a-grayalpha-300:rgba(0,0,0,.19);--a-grayalpha-200:rgba(0,0,0,.1);--a-grayalpha-100:rgba(0,0,0,.05);--a-grayalpha-50:rgba(0,0,0,.03);--a-gray-900:#262626;--a-gray-800:#404040;--a-gray-700:#595959;--a-gray-600:#707070;--a-gray-500:#8f8f8f;--a-gray-400:#b0b0b0;--a-gray-300:#cfcfcf;--a-gray-200:#e5e5e5;--a-gray-100:#f1f1f1;--a-gray-50:#f7f7f7;--a-nav-red:#c30000;--a-white:#fff;--a-transparent:hsla(0,0%,100%,0);--a-border-radius-full:9999px;--a-border-radius-xlarge:12px;--a-border-radius-large:8px;--a-border-radius-medium:4px;--a-border-radius-small:2px;--a-z-index-tooltip:3000;--a-z-index-focus:10;--a-z-index-popover:1000;--a-z-index-modal:2000;--a-font-weight-regular:400;--a-font-weight-bold:600;--a-font-size-small:0.875rem;--a-font-size-medium:1rem;--a-font-size-large:1.125rem;--a-font-size-xlarge:1.25rem;--a-font-size-heading-xsmall:1.125rem;--a-font-size-heading-small:1.25rem;--a-font-size-heading-medium:1.5rem;--a-font-size-heading-large:1.75rem;--a-font-size-heading-xlarge:2rem;--a-font-size-heading-2xlarge:2.5rem;--a-font-line-height-medium:1.25rem;--a-font-line-height-large:1.5rem;--a-font-line-height-xlarge:1.75rem;--a-font-line-height-heading-xsmall:1.5rem;--a-font-line-height-heading-small:1.75rem;--a-font-line-height-heading-medium:2rem;--a-font-line-height-heading-large:2.25rem;--a-font-line-height-heading-xlarge:2.5rem;--a-font-line-height-heading-2xlarge:3.25rem;--a-font-family:"Source Sans Pro",Arial,sans-serif;--a-breakpoint-xl-down:1279px;--a-breakpoint-xl:1280px;--a-breakpoint-lg-down:1023px;--a-breakpoint-lg:1024px;--a-breakpoint-md-down:767px;--a-breakpoint-md:768px;--a-breakpoint-sm-down:479px;--a-breakpoint-sm:480px;--a-breakpoint-xs:0;--a-icon-on-info:var(--a-gray-900);--a-icon-on-warning:var(--a-gray-900);--a-icon-on-danger:var(--a-white);--a-icon-on-success:var(--a-white);--a-icon-on-action:var(--a-white);--a-icon-on-inverted:var(--a-white);--a-icon-on-neutral:var(--a-white);--a-icon-alt-3:var(--a-deepblue-400);--a-icon-alt-2:var(--a-limegreen-700);--a-icon-alt-1:var(--a-purple-500);--a-icon-info:var(--a-lightblue-800);--a-icon-warning:var(--a-orange-600);--a-icon-danger:var(--a-red-500);--a-icon-success:var(--a-green-500);--a-icon-action:var(--a-blue-500);--a-icon-action-on-action-subtle:var(--a-blue-600);--a-icon-action-selected:var(--a-deepblue-500);--a-icon-subtle:var(--a-gray-600);--a-icon-default:var(--a-gray-900);--a-surface-alt-3:var(--a-deepblue-500);--a-surface-alt-3-strong:var(--a-deepblue-800);--a-surface-alt-3-subtle:var(--a-deepblue-100);--a-surface-alt-2:var(--a-limegreen-400);--a-surface-alt-2-subtle:var(--a-limegreen-100);--a-surface-alt-1:var(--a-purple-400);--a-surface-alt-1-subtle:var(--a-purple-100);--a-surface-info:var(--a-lightblue-500);--a-surface-info-subtle:var(--a-lightblue-100);--a-surface-info-subtle-hover:var(--a-lightblue-200);--a-surface-warning:var(--a-orange-500);--a-surface-warning-subtle:var(--a-orange-100);--a-surface-warning-subtle-hover:var(--a-orange-200);--a-surface-danger:var(--a-red-500);--a-surface-danger-active:var(--a-red-700);--a-surface-danger-hover:var(--a-red-600);--a-surface-danger-subtle:var(--a-red-100);--a-surface-danger-subtle-hover:var(--a-red-200);--a-surface-success-hover:var(--a-green-600);--a-surface-success:var(--a-green-500);--a-surface-success-subtle:var(--a-green-100);--a-surface-success-subtle-hover:var(--a-green-200);--a-surface-neutral:var(--a-gray-700);--a-surface-neutral-active:var(--a-gray-900);--a-surface-neutral-selected:var(--a-gray-900);--a-surface-neutral-hover:var(--a-gray-800);--a-surface-neutral-subtle:var(--a-grayalpha-100);--a-surface-neutral-subtle-hover:var(--a-grayalpha-200);--a-surface-action:var(--a-blue-500);--a-surface-action-selected:var(--a-deepblue-500);--a-surface-action-selected-hover:var(--a-deepblue-600);--a-surface-action-active:var(--a-deepblue-500);--a-surface-action-hover:var(--a-blue-600);--a-surface-action-subtle:var(--a-blue-50);--a-surface-action-subtle-hover:var(--a-blue-100);--a-surface-inverted:var(--a-gray-900);--a-surface-inverted-active:var(--a-gray-700);--a-surface-inverted-hover:var(--a-gray-800);--a-surface-backdrop:var(--a-grayalpha-700);--a-surface-transparent:var(--a-transparent);--a-surface-subtle:var(--a-gray-50);--a-surface-selected:var(--a-blue-50);--a-surface-active:var(--a-grayalpha-200);--a-surface-hover:var(--a-grayalpha-100);--a-surface-default:var(--a-white);--a-bg-subtle:var(--a-gray-100);--a-bg-default:var(--a-white);--a-text-on-alt-3:var(--a-white);--a-text-on-alt-2:var(--a-gray-900);--a-text-on-alt-1:var(--a-white);--a-text-on-info:var(--a-gray-900);--a-text-on-warning:var(--a-gray-900);--a-text-on-danger:var(--a-white);--a-text-on-success:var(--a-white);--a-text-on-action:var(--a-white);--a-text-on-neutral:var(--a-white);--a-text-on-inverted:var(--a-white);--a-text-action:var(--a-blue-500);--a-text-action-on-action-subtle:var(--a-blue-600);--a-text-action-selected:var(--a-deepblue-500);--a-text-danger:var(--a-red-500);--a-text-visited:var(--a-purple-500);--a-text-subtle:var(--a-grayalpha-600);--a-text-default:var(--a-gray-900);--a-border-alt-3:var(--a-deepblue-500);--a-border-alt-2:var(--a-limegreen-700);--a-border-alt-1:var(--a-purple-400);--a-border-on-inverted-subtle:var(--a-gray-700);--a-border-on-inverted:var(--a-gray-200);--a-border-focus:var(--a-blue-800);--a-border-focus-on-inverted:var(--a-blue-200);--a-border-info:var(--a-lightblue-700);--a-border-warning:var(--a-orange-600);--a-border-danger:var(--a-red-500);--a-border-success:var(--a-green-500);--a-border-selected:var(--a-blue-500);--a-border-action:var(--a-blue-500);--a-border-action-selected:var(--a-deepblue-500);--a-border-subtle:var(--a-grayalpha-200);--a-border-subtle-hover:var(--a-grayalpha-300);--a-border-divider:var(--a-grayalpha-300);--a-border-strong:var(--a-grayalpha-700);--a-border-default:var(--a-grayalpha-500);--a-shadow-focus:0 0 0 3px var(--a-border-focus);--a-shadow-focus-inverted:0 0 0 3px var(--a-border-focus-on-inverted)}
|