@atlaskit/tokens 11.1.1 → 11.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/codemods/hypermod.config.tsx +3 -0
- package/codemods/remove-fallbacks/transform.tsx +24 -0
- package/dist/cjs/artifacts/palettes-raw/motion-palette.js +414 -63
- package/dist/cjs/artifacts/replacement-mapping.js +51 -3
- package/dist/cjs/artifacts/themes/atlassian-motion.js +2 -2
- package/dist/cjs/artifacts/token-default-values.js +25 -9
- package/dist/cjs/artifacts/token-names.js +19 -3
- package/dist/cjs/artifacts/tokens-raw/atlassian-motion.js +527 -47
- package/dist/cjs/entry-points/token-metadata.codegen.js +2342 -470
- package/dist/cjs/utils/token-usage-guidelines.js +117 -0
- package/dist/es2019/artifacts/palettes-raw/motion-palette.js +414 -63
- package/dist/es2019/artifacts/replacement-mapping.js +51 -3
- package/dist/es2019/artifacts/themes/atlassian-motion.js +119 -15
- package/dist/es2019/artifacts/token-default-values.js +25 -9
- package/dist/es2019/artifacts/token-names.js +19 -3
- package/dist/es2019/artifacts/tokens-raw/atlassian-motion.js +527 -47
- package/dist/es2019/entry-points/token-metadata.codegen.js +2342 -470
- package/dist/es2019/utils/token-usage-guidelines.js +109 -0
- package/dist/esm/artifacts/palettes-raw/motion-palette.js +414 -63
- package/dist/esm/artifacts/replacement-mapping.js +51 -3
- package/dist/esm/artifacts/themes/atlassian-motion.js +2 -2
- package/dist/esm/artifacts/token-default-values.js +25 -9
- package/dist/esm/artifacts/token-names.js +19 -3
- package/dist/esm/artifacts/tokens-raw/atlassian-motion.js +527 -47
- package/dist/esm/entry-points/token-metadata.codegen.js +2342 -470
- package/dist/esm/utils/token-usage-guidelines.js +111 -0
- package/dist/types/artifacts/palettes-raw/motion-palette.d.ts +5 -3
- package/dist/types/artifacts/replacement-mapping.d.ts +1 -1
- package/dist/types/artifacts/themes/atlassian-motion.d.ts +2 -2
- package/dist/types/artifacts/token-default-values.d.ts +25 -9
- package/dist/types/artifacts/token-names.d.ts +37 -5
- package/dist/types/artifacts/tokens-raw/atlassian-motion.d.ts +5 -3
- package/dist/types/entry-points/css-type-schema.codegen.d.ts +2 -2
- package/dist/types/entry-points/token-metadata.codegen.d.ts +6 -2
- package/dist/types/types.d.ts +31 -2
- package/dist/types/utils/token-usage-guidelines.d.ts +8 -0
- package/dist/types-ts4.5/artifacts/palettes-raw/motion-palette.d.ts +5 -3
- package/dist/types-ts4.5/artifacts/replacement-mapping.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/themes/atlassian-motion.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/token-default-values.d.ts +25 -9
- package/dist/types-ts4.5/artifacts/token-names.d.ts +37 -5
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-motion.d.ts +5 -3
- package/dist/types-ts4.5/entry-points/css-type-schema.codegen.d.ts +2 -2
- package/dist/types-ts4.5/entry-points/token-metadata.codegen.d.ts +6 -2
- package/dist/types-ts4.5/types.d.ts +31 -2
- package/dist/types-ts4.5/utils/token-usage-guidelines.d.ts +8 -0
- package/package.json +9 -8
- package/tokens.docs.tsx +52 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
3
|
*
|
|
4
|
-
* Metadata for generation of
|
|
4
|
+
* Metadata for generation of `@atlaskit/ads-mcp` and https://atlassian.design/llms-tokens.txt.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::c219f53298a002dc5340fcc003a56953>>
|
|
7
7
|
* @codegenCommand yarn build tokens
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -11,2340 +11,4212 @@ export var tokens = [{
|
|
|
11
11
|
name: 'color.text',
|
|
12
12
|
path: ['color', 'text', '[default]'],
|
|
13
13
|
description: 'Use for primary text, such as body copy, sentence case headers, and buttons.',
|
|
14
|
-
exampleValue: '#292A2E'
|
|
14
|
+
exampleValue: '#292A2E',
|
|
15
|
+
usageGuidelines: {
|
|
16
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
17
|
+
cssProperties: ['color']
|
|
18
|
+
}
|
|
15
19
|
}, {
|
|
16
20
|
name: 'color.text.accent.lime',
|
|
17
21
|
path: ['color', 'text', 'accent', 'lime', '[default]'],
|
|
18
22
|
description: 'Use for lime text on subtlest and subtler lime accent backgrounds when there is no meaning tied to the color.',
|
|
19
|
-
exampleValue: '#4C6B1F'
|
|
23
|
+
exampleValue: '#4C6B1F',
|
|
24
|
+
usageGuidelines: {
|
|
25
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
26
|
+
cssProperties: ['color']
|
|
27
|
+
}
|
|
20
28
|
}, {
|
|
21
29
|
name: 'color.text.accent.lime.bolder',
|
|
22
30
|
path: ['color', 'text', 'accent', 'lime', 'bolder'],
|
|
23
31
|
description: 'Use for lime text on subtle lime accent backgrounds when there is no meaning tied to the color.',
|
|
24
|
-
exampleValue: '#37471F'
|
|
32
|
+
exampleValue: '#37471F',
|
|
33
|
+
usageGuidelines: {
|
|
34
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
35
|
+
cssProperties: ['color']
|
|
36
|
+
}
|
|
25
37
|
}, {
|
|
26
38
|
name: 'color.text.accent.red',
|
|
27
39
|
path: ['color', 'text', 'accent', 'red', '[default]'],
|
|
28
40
|
description: 'Use for red text on subtlest and subtler red accent backgrounds when there is no meaning tied to the color.',
|
|
29
|
-
exampleValue: '#AE2E24'
|
|
41
|
+
exampleValue: '#AE2E24',
|
|
42
|
+
usageGuidelines: {
|
|
43
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
44
|
+
cssProperties: ['color']
|
|
45
|
+
}
|
|
30
46
|
}, {
|
|
31
47
|
name: 'color.text.accent.red.bolder',
|
|
32
48
|
path: ['color', 'text', 'accent', 'red', 'bolder'],
|
|
33
49
|
description: 'Use for red text on subtle red accent backgrounds when there is no meaning tied to the color.',
|
|
34
|
-
exampleValue: '#5D1F1A'
|
|
50
|
+
exampleValue: '#5D1F1A',
|
|
51
|
+
usageGuidelines: {
|
|
52
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
53
|
+
cssProperties: ['color']
|
|
54
|
+
}
|
|
35
55
|
}, {
|
|
36
56
|
name: 'color.text.accent.orange',
|
|
37
57
|
path: ['color', 'text', 'accent', 'orange', '[default]'],
|
|
38
58
|
description: 'Use for orange text on subtlest and subtler orange accent backgrounds when there is no meaning tied to the color.',
|
|
39
|
-
exampleValue: '#9E4C00'
|
|
59
|
+
exampleValue: '#9E4C00',
|
|
60
|
+
usageGuidelines: {
|
|
61
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
62
|
+
cssProperties: ['color']
|
|
63
|
+
}
|
|
40
64
|
}, {
|
|
41
65
|
name: 'color.text.accent.orange.bolder',
|
|
42
66
|
path: ['color', 'text', 'accent', 'orange', 'bolder'],
|
|
43
67
|
description: 'Use for orange text on subtle orange accent backgrounds when there is no meaning tied to the color.',
|
|
44
|
-
exampleValue: '#693200'
|
|
68
|
+
exampleValue: '#693200',
|
|
69
|
+
usageGuidelines: {
|
|
70
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
71
|
+
cssProperties: ['color']
|
|
72
|
+
}
|
|
45
73
|
}, {
|
|
46
74
|
name: 'color.text.accent.yellow',
|
|
47
75
|
path: ['color', 'text', 'accent', 'yellow', '[default]'],
|
|
48
76
|
description: 'Use for yellow text on subtlest and subtler yellow accent backgrounds when there is no meaning tied to the color.',
|
|
49
|
-
exampleValue: '#7F5F01'
|
|
77
|
+
exampleValue: '#7F5F01',
|
|
78
|
+
usageGuidelines: {
|
|
79
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
80
|
+
cssProperties: ['color']
|
|
81
|
+
}
|
|
50
82
|
}, {
|
|
51
83
|
name: 'color.text.accent.yellow.bolder',
|
|
52
84
|
path: ['color', 'text', 'accent', 'yellow', 'bolder'],
|
|
53
85
|
description: 'Use for yellow text on subtle yellow accent backgrounds when there is no meaning tied to the color.',
|
|
54
|
-
exampleValue: '#533F04'
|
|
86
|
+
exampleValue: '#533F04',
|
|
87
|
+
usageGuidelines: {
|
|
88
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
89
|
+
cssProperties: ['color']
|
|
90
|
+
}
|
|
55
91
|
}, {
|
|
56
92
|
name: 'color.text.accent.green',
|
|
57
93
|
path: ['color', 'text', 'accent', 'green', '[default]'],
|
|
58
94
|
description: 'Use for green text on subtlest and subtler green accent backgrounds when there is no meaning tied to the color.',
|
|
59
|
-
exampleValue: '#216E4E'
|
|
95
|
+
exampleValue: '#216E4E',
|
|
96
|
+
usageGuidelines: {
|
|
97
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
98
|
+
cssProperties: ['color']
|
|
99
|
+
}
|
|
60
100
|
}, {
|
|
61
101
|
name: 'color.text.accent.green.bolder',
|
|
62
102
|
path: ['color', 'text', 'accent', 'green', 'bolder'],
|
|
63
103
|
description: 'Use for green text on subtle green accent backgrounds when there is no meaning tied to the color.',
|
|
64
|
-
exampleValue: '#164B35'
|
|
104
|
+
exampleValue: '#164B35',
|
|
105
|
+
usageGuidelines: {
|
|
106
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
107
|
+
cssProperties: ['color']
|
|
108
|
+
}
|
|
65
109
|
}, {
|
|
66
110
|
name: 'color.text.accent.teal',
|
|
67
111
|
path: ['color', 'text', 'accent', 'teal', '[default]'],
|
|
68
112
|
description: 'Use for teal text on subtlest and subtler teal accent backgrounds when there is no meaning tied to the color.',
|
|
69
|
-
exampleValue: '#206A83'
|
|
113
|
+
exampleValue: '#206A83',
|
|
114
|
+
usageGuidelines: {
|
|
115
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
116
|
+
cssProperties: ['color']
|
|
117
|
+
}
|
|
70
118
|
}, {
|
|
71
119
|
name: 'color.text.accent.teal.bolder',
|
|
72
120
|
path: ['color', 'text', 'accent', 'teal', 'bolder'],
|
|
73
121
|
description: 'Use for teal text on subtle teal accent backgrounds when there is no meaning tied to the color.',
|
|
74
|
-
exampleValue: '#164555'
|
|
122
|
+
exampleValue: '#164555',
|
|
123
|
+
usageGuidelines: {
|
|
124
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
125
|
+
cssProperties: ['color']
|
|
126
|
+
}
|
|
75
127
|
}, {
|
|
76
128
|
name: 'color.text.accent.blue',
|
|
77
129
|
path: ['color', 'text', 'accent', 'blue', '[default]'],
|
|
78
130
|
description: 'Use for blue text on subtlest and subtler blue accent backgrounds when there is no meaning tied to the color.',
|
|
79
|
-
exampleValue: '#1558BC'
|
|
131
|
+
exampleValue: '#1558BC',
|
|
132
|
+
usageGuidelines: {
|
|
133
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
134
|
+
cssProperties: ['color']
|
|
135
|
+
}
|
|
80
136
|
}, {
|
|
81
137
|
name: 'color.text.accent.blue.bolder',
|
|
82
138
|
path: ['color', 'text', 'accent', 'blue', 'bolder'],
|
|
83
139
|
description: 'Use for blue text on subtle blue accent backgrounds when there is no meaning tied to the color.',
|
|
84
|
-
exampleValue: '#123263'
|
|
140
|
+
exampleValue: '#123263',
|
|
141
|
+
usageGuidelines: {
|
|
142
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
143
|
+
cssProperties: ['color']
|
|
144
|
+
}
|
|
85
145
|
}, {
|
|
86
146
|
name: 'color.text.accent.purple',
|
|
87
147
|
path: ['color', 'text', 'accent', 'purple', '[default]'],
|
|
88
148
|
description: 'Use for purple text on subtlest and subtler purple accent backgrounds when there is no meaning tied to the color.',
|
|
89
|
-
exampleValue: '#803FA5'
|
|
149
|
+
exampleValue: '#803FA5',
|
|
150
|
+
usageGuidelines: {
|
|
151
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
152
|
+
cssProperties: ['color']
|
|
153
|
+
}
|
|
90
154
|
}, {
|
|
91
155
|
name: 'color.text.accent.purple.bolder',
|
|
92
156
|
path: ['color', 'text', 'accent', 'purple', 'bolder'],
|
|
93
157
|
description: 'Use for purple text on subtle purple accent backgrounds when there is no meaning tied to the color.',
|
|
94
|
-
exampleValue: '#48245D'
|
|
158
|
+
exampleValue: '#48245D',
|
|
159
|
+
usageGuidelines: {
|
|
160
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
161
|
+
cssProperties: ['color']
|
|
162
|
+
}
|
|
95
163
|
}, {
|
|
96
164
|
name: 'color.text.accent.magenta',
|
|
97
165
|
path: ['color', 'text', 'accent', 'magenta', '[default]'],
|
|
98
166
|
description: 'Use for magenta text on subtlest and subtler magenta accent backgrounds when there is no meaning tied to the color.',
|
|
99
|
-
exampleValue: '#943D73'
|
|
167
|
+
exampleValue: '#943D73',
|
|
168
|
+
usageGuidelines: {
|
|
169
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
170
|
+
cssProperties: ['color']
|
|
171
|
+
}
|
|
100
172
|
}, {
|
|
101
173
|
name: 'color.text.accent.magenta.bolder',
|
|
102
174
|
path: ['color', 'text', 'accent', 'magenta', 'bolder'],
|
|
103
175
|
description: 'Use for magenta text on subtle magenta accent backgrounds when there is no meaning tied to the color.',
|
|
104
|
-
exampleValue: '#50253F'
|
|
176
|
+
exampleValue: '#50253F',
|
|
177
|
+
usageGuidelines: {
|
|
178
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
179
|
+
cssProperties: ['color']
|
|
180
|
+
}
|
|
105
181
|
}, {
|
|
106
182
|
name: 'color.text.accent.gray',
|
|
107
183
|
path: ['color', 'text', 'accent', 'gray', '[default]'],
|
|
108
184
|
description: 'Use for text on non-bold gray accent backgrounds, such as colored tags.',
|
|
109
|
-
exampleValue: '#505258'
|
|
185
|
+
exampleValue: '#505258',
|
|
186
|
+
usageGuidelines: {
|
|
187
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
188
|
+
cssProperties: ['color']
|
|
189
|
+
}
|
|
110
190
|
}, {
|
|
111
191
|
name: 'color.text.accent.gray.bolder',
|
|
112
192
|
path: ['color', 'text', 'accent', 'gray', 'bolder'],
|
|
113
193
|
description: 'Use for text and icons on gray subtle accent backgrounds.',
|
|
114
|
-
exampleValue: '#1E1F21'
|
|
194
|
+
exampleValue: '#1E1F21',
|
|
195
|
+
usageGuidelines: {
|
|
196
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
197
|
+
cssProperties: ['color']
|
|
198
|
+
}
|
|
115
199
|
}, {
|
|
116
200
|
name: 'color.text.disabled',
|
|
117
201
|
path: ['color', 'text', 'disabled'],
|
|
118
202
|
description: 'Use for text in a disabled state.',
|
|
119
|
-
exampleValue: '#080F214A'
|
|
203
|
+
exampleValue: '#080F214A',
|
|
204
|
+
usageGuidelines: {
|
|
205
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
206
|
+
cssProperties: ['color']
|
|
207
|
+
}
|
|
120
208
|
}, {
|
|
121
209
|
name: 'color.text.inverse',
|
|
122
210
|
path: ['color', 'text', 'inverse'],
|
|
123
211
|
description: 'Use for text on bold backgrounds.',
|
|
124
|
-
exampleValue: '#FFFFFF'
|
|
212
|
+
exampleValue: '#FFFFFF',
|
|
213
|
+
usageGuidelines: {
|
|
214
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
215
|
+
cssProperties: ['color']
|
|
216
|
+
}
|
|
125
217
|
}, {
|
|
126
218
|
name: 'color.text.selected',
|
|
127
219
|
path: ['color', 'text', 'selected'],
|
|
128
220
|
description: 'Use for text in selected or opened states, such as tabs and dropdown buttons.',
|
|
129
|
-
exampleValue: '#1868DB'
|
|
221
|
+
exampleValue: '#1868DB',
|
|
222
|
+
usageGuidelines: {
|
|
223
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
224
|
+
cssProperties: ['color']
|
|
225
|
+
}
|
|
130
226
|
}, {
|
|
131
227
|
name: 'color.text.brand',
|
|
132
228
|
path: ['color', 'text', 'brand'],
|
|
133
229
|
description: 'Use for text that reinforces our brand.',
|
|
134
|
-
exampleValue: '#1868DB'
|
|
230
|
+
exampleValue: '#1868DB',
|
|
231
|
+
usageGuidelines: {
|
|
232
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
233
|
+
cssProperties: ['color']
|
|
234
|
+
}
|
|
135
235
|
}, {
|
|
136
236
|
name: 'color.text.danger',
|
|
137
237
|
path: ['color', 'text', 'danger', '[default]'],
|
|
138
238
|
description: 'Use for critical text, such as input field error messaging.',
|
|
139
|
-
exampleValue: '#AE2E24'
|
|
239
|
+
exampleValue: '#AE2E24',
|
|
240
|
+
usageGuidelines: {
|
|
241
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
242
|
+
cssProperties: ['color']
|
|
243
|
+
}
|
|
140
244
|
}, {
|
|
141
245
|
name: 'color.text.danger.bolder',
|
|
142
246
|
path: ['color', 'text', 'danger', 'bolder'],
|
|
143
247
|
description: 'Use for text on top of danger semantic labels to ensure accessibility and desired visual appearance.',
|
|
144
|
-
exampleValue: '#5D1F1A'
|
|
248
|
+
exampleValue: '#5D1F1A',
|
|
249
|
+
usageGuidelines: {
|
|
250
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
251
|
+
cssProperties: ['color']
|
|
252
|
+
}
|
|
145
253
|
}, {
|
|
146
254
|
name: 'color.text.warning',
|
|
147
255
|
path: ['color', 'text', 'warning', '[default]'],
|
|
148
256
|
description: 'Use for text to emphasize caution, such as in moved lozenges.',
|
|
149
|
-
exampleValue: '#9E4C00'
|
|
257
|
+
exampleValue: '#9E4C00',
|
|
258
|
+
usageGuidelines: {
|
|
259
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
260
|
+
cssProperties: ['color']
|
|
261
|
+
}
|
|
150
262
|
}, {
|
|
151
263
|
name: 'color.text.warning.inverse',
|
|
152
264
|
path: ['color', 'text', 'warning', 'inverse'],
|
|
153
265
|
description: 'Use for text when on bold warning backgrounds.',
|
|
154
|
-
exampleValue: '#292A2E'
|
|
266
|
+
exampleValue: '#292A2E',
|
|
267
|
+
usageGuidelines: {
|
|
268
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
269
|
+
cssProperties: ['color']
|
|
270
|
+
}
|
|
155
271
|
}, {
|
|
156
272
|
name: 'color.text.warning.bolder',
|
|
157
273
|
path: ['color', 'text', 'warning', 'bolder'],
|
|
158
274
|
description: 'Use for text on top of warning semantic labels to ensure accessibility and desired visual appearance.',
|
|
159
|
-
exampleValue: '#693200'
|
|
275
|
+
exampleValue: '#693200',
|
|
276
|
+
usageGuidelines: {
|
|
277
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
278
|
+
cssProperties: ['color']
|
|
279
|
+
}
|
|
160
280
|
}, {
|
|
161
281
|
name: 'color.text.success',
|
|
162
282
|
path: ['color', 'text', 'success', '[default]'],
|
|
163
283
|
description: 'Use for text to communicate a favorable outcome, such as input field success messaging.',
|
|
164
|
-
exampleValue: '#4C6B1F'
|
|
284
|
+
exampleValue: '#4C6B1F',
|
|
285
|
+
usageGuidelines: {
|
|
286
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
287
|
+
cssProperties: ['color']
|
|
288
|
+
}
|
|
165
289
|
}, {
|
|
166
290
|
name: 'color.text.success.bolder',
|
|
167
291
|
path: ['color', 'text', 'success', 'bolder'],
|
|
168
292
|
description: 'Use for text on top of success semantic labels to ensure accessibility and desired visual appearance.',
|
|
169
|
-
exampleValue: '#37471F'
|
|
293
|
+
exampleValue: '#37471F',
|
|
294
|
+
usageGuidelines: {
|
|
295
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
296
|
+
cssProperties: ['color']
|
|
297
|
+
}
|
|
170
298
|
}, {
|
|
171
299
|
name: 'color.text.discovery',
|
|
172
300
|
path: ['color', 'text', 'discovery', '[default]'],
|
|
173
301
|
description: 'Use for text to emphasize change or something new, such as in new lozenges.',
|
|
174
|
-
exampleValue: '#803FA5'
|
|
302
|
+
exampleValue: '#803FA5',
|
|
303
|
+
usageGuidelines: {
|
|
304
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
305
|
+
cssProperties: ['color']
|
|
306
|
+
}
|
|
175
307
|
}, {
|
|
176
308
|
name: 'color.text.discovery.bolder',
|
|
177
309
|
path: ['color', 'text', 'discovery', 'bolder'],
|
|
178
310
|
description: 'Use for text on top of discovery semantic labels to ensure accessibility and desired visual appearance.',
|
|
179
|
-
exampleValue: '#48245D'
|
|
311
|
+
exampleValue: '#48245D',
|
|
312
|
+
usageGuidelines: {
|
|
313
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
314
|
+
cssProperties: ['color']
|
|
315
|
+
}
|
|
180
316
|
}, {
|
|
181
317
|
name: 'color.text.information',
|
|
182
318
|
path: ['color', 'text', 'information', '[default]'],
|
|
183
319
|
description: 'Use for informative text or to communicate something is in progress, such as in-progress lozenges.',
|
|
184
|
-
exampleValue: '#1558BC'
|
|
320
|
+
exampleValue: '#1558BC',
|
|
321
|
+
usageGuidelines: {
|
|
322
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
323
|
+
cssProperties: ['color']
|
|
324
|
+
}
|
|
185
325
|
}, {
|
|
186
326
|
name: 'color.text.information.bolder',
|
|
187
327
|
path: ['color', 'text', 'information', 'bolder'],
|
|
188
328
|
description: 'Use for text on top of information semantic labels to ensure accessibility and desired visual appearance.',
|
|
189
|
-
exampleValue: '#123263'
|
|
329
|
+
exampleValue: '#123263',
|
|
330
|
+
usageGuidelines: {
|
|
331
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
332
|
+
cssProperties: ['color']
|
|
333
|
+
}
|
|
190
334
|
}, {
|
|
191
335
|
name: 'color.text.subtlest',
|
|
192
336
|
path: ['color', 'text', 'subtlest'],
|
|
193
337
|
description: 'Use for tertiary text, such as meta-data, breadcrumbs, input field placeholder and helper text.',
|
|
194
|
-
exampleValue: '#6B6E76'
|
|
338
|
+
exampleValue: '#6B6E76',
|
|
339
|
+
usageGuidelines: {
|
|
340
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
341
|
+
cssProperties: ['color']
|
|
342
|
+
}
|
|
195
343
|
}, {
|
|
196
344
|
name: 'color.text.subtle',
|
|
197
345
|
path: ['color', 'text', 'subtle'],
|
|
198
346
|
description: 'Use for secondary text, such as navigation, subtle button links, input field labels, and all caps subheadings.',
|
|
199
|
-
exampleValue: '#505258'
|
|
347
|
+
exampleValue: '#505258',
|
|
348
|
+
usageGuidelines: {
|
|
349
|
+
usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
|
|
350
|
+
cssProperties: ['color']
|
|
351
|
+
}
|
|
200
352
|
}, {
|
|
201
353
|
name: 'color.link',
|
|
202
354
|
path: ['color', 'link', '[default]'],
|
|
203
355
|
description: 'Use for links in a default or hovered state. Add an underline for hovered states.',
|
|
204
|
-
exampleValue: '#1868DB'
|
|
356
|
+
exampleValue: '#1868DB',
|
|
357
|
+
usageGuidelines: {
|
|
358
|
+
usage: 'The color for hyperlinks. Use for elements that are links to external resources or navigation (e.g. color.link)',
|
|
359
|
+
cssProperties: ['color']
|
|
360
|
+
}
|
|
205
361
|
}, {
|
|
206
362
|
name: 'color.link.pressed',
|
|
207
363
|
path: ['color', 'link', 'pressed'],
|
|
208
364
|
description: 'Use for links in a pressed state.',
|
|
209
|
-
exampleValue: '#1558BC'
|
|
365
|
+
exampleValue: '#1558BC',
|
|
366
|
+
usageGuidelines: {
|
|
367
|
+
usage: 'The color for hyperlinks. Use for elements that are links to external resources or navigation (e.g. color.link)',
|
|
368
|
+
cssProperties: ['color']
|
|
369
|
+
}
|
|
210
370
|
}, {
|
|
211
371
|
name: 'color.link.visited',
|
|
212
372
|
path: ['color', 'link', 'visited', '[default]'],
|
|
213
373
|
description: 'Use for visited links.',
|
|
214
|
-
exampleValue: '#803FA5'
|
|
374
|
+
exampleValue: '#803FA5',
|
|
375
|
+
usageGuidelines: {
|
|
376
|
+
usage: 'The color for hyperlinks. Use for elements that are links to external resources or navigation (e.g. color.link)',
|
|
377
|
+
cssProperties: ['color']
|
|
378
|
+
}
|
|
215
379
|
}, {
|
|
216
380
|
name: 'color.link.visited.pressed',
|
|
217
381
|
path: ['color', 'link', 'visited', 'pressed'],
|
|
218
382
|
description: 'Use for visited links in a pressed state.',
|
|
219
|
-
exampleValue: '#48245D'
|
|
383
|
+
exampleValue: '#48245D',
|
|
384
|
+
usageGuidelines: {
|
|
385
|
+
usage: 'The color for hyperlinks. Use for elements that are links to external resources or navigation (e.g. color.link)',
|
|
386
|
+
cssProperties: ['color']
|
|
387
|
+
}
|
|
220
388
|
}, {
|
|
221
389
|
name: 'color.icon',
|
|
222
390
|
path: ['color', 'icon', '[default]'],
|
|
223
391
|
description: 'Use for icon-only buttons, or icons paired with color.text',
|
|
224
|
-
exampleValue: '#292A2E'
|
|
392
|
+
exampleValue: '#292A2E',
|
|
393
|
+
usageGuidelines: {
|
|
394
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
395
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
396
|
+
}
|
|
225
397
|
}, {
|
|
226
398
|
name: 'color.icon.accent.lime',
|
|
227
399
|
path: ['color', 'icon', 'accent', 'lime'],
|
|
228
400
|
description: 'Use for lime icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
|
|
229
|
-
exampleValue: '#6A9A23'
|
|
401
|
+
exampleValue: '#6A9A23',
|
|
402
|
+
usageGuidelines: {
|
|
403
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
404
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
405
|
+
}
|
|
230
406
|
}, {
|
|
231
407
|
name: 'color.icon.accent.red',
|
|
232
408
|
path: ['color', 'icon', 'accent', 'red'],
|
|
233
409
|
description: 'Use for red icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
|
|
234
|
-
exampleValue: '#C9372C'
|
|
410
|
+
exampleValue: '#C9372C',
|
|
411
|
+
usageGuidelines: {
|
|
412
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
413
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
414
|
+
}
|
|
235
415
|
}, {
|
|
236
416
|
name: 'color.icon.accent.orange',
|
|
237
417
|
path: ['color', 'icon', 'accent', 'orange'],
|
|
238
418
|
description: 'Use for orange icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
|
|
239
|
-
exampleValue: '#E06C00'
|
|
419
|
+
exampleValue: '#E06C00',
|
|
420
|
+
usageGuidelines: {
|
|
421
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
422
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
423
|
+
}
|
|
240
424
|
}, {
|
|
241
425
|
name: 'color.icon.accent.yellow',
|
|
242
426
|
path: ['color', 'icon', 'accent', 'yellow'],
|
|
243
427
|
description: 'Use for yellow icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
|
|
244
|
-
exampleValue: '#B38600'
|
|
428
|
+
exampleValue: '#B38600',
|
|
429
|
+
usageGuidelines: {
|
|
430
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
431
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
432
|
+
}
|
|
245
433
|
}, {
|
|
246
434
|
name: 'color.icon.accent.green',
|
|
247
435
|
path: ['color', 'icon', 'accent', 'green'],
|
|
248
436
|
description: 'Use for green icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
|
|
249
|
-
exampleValue: '#22A06B'
|
|
437
|
+
exampleValue: '#22A06B',
|
|
438
|
+
usageGuidelines: {
|
|
439
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
440
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
441
|
+
}
|
|
250
442
|
}, {
|
|
251
443
|
name: 'color.icon.accent.teal',
|
|
252
444
|
path: ['color', 'icon', 'accent', 'teal'],
|
|
253
445
|
description: 'Use for teal icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
|
|
254
|
-
exampleValue: '#2898BD'
|
|
446
|
+
exampleValue: '#2898BD',
|
|
447
|
+
usageGuidelines: {
|
|
448
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
449
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
450
|
+
}
|
|
255
451
|
}, {
|
|
256
452
|
name: 'color.icon.accent.blue',
|
|
257
453
|
path: ['color', 'icon', 'accent', 'blue'],
|
|
258
454
|
description: 'Use for blue icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
|
|
259
|
-
exampleValue: '#357DE8'
|
|
455
|
+
exampleValue: '#357DE8',
|
|
456
|
+
usageGuidelines: {
|
|
457
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
458
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
459
|
+
}
|
|
260
460
|
}, {
|
|
261
461
|
name: 'color.icon.accent.purple',
|
|
262
462
|
path: ['color', 'icon', 'accent', 'purple'],
|
|
263
463
|
description: 'Use for purple icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
|
|
264
|
-
exampleValue: '#AF59E1'
|
|
464
|
+
exampleValue: '#AF59E1',
|
|
465
|
+
usageGuidelines: {
|
|
466
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
467
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
468
|
+
}
|
|
265
469
|
}, {
|
|
266
470
|
name: 'color.icon.accent.magenta',
|
|
267
471
|
path: ['color', 'icon', 'accent', 'magenta'],
|
|
268
472
|
description: 'Use for magenta icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
|
|
269
|
-
exampleValue: '#CD519D'
|
|
473
|
+
exampleValue: '#CD519D',
|
|
474
|
+
usageGuidelines: {
|
|
475
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
476
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
477
|
+
}
|
|
270
478
|
}, {
|
|
271
479
|
name: 'color.icon.accent.gray',
|
|
272
480
|
path: ['color', 'icon', 'accent', 'gray'],
|
|
273
481
|
description: 'Use for icons on non-bold gray accent backgrounds, such as file type icons.',
|
|
274
|
-
exampleValue: '#7D818A'
|
|
482
|
+
exampleValue: '#7D818A',
|
|
483
|
+
usageGuidelines: {
|
|
484
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
485
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
486
|
+
}
|
|
275
487
|
}, {
|
|
276
488
|
name: 'color.icon.disabled',
|
|
277
489
|
path: ['color', 'icon', 'disabled'],
|
|
278
490
|
description: 'Use for icons in a disabled state.',
|
|
279
|
-
exampleValue: '#080F214A'
|
|
491
|
+
exampleValue: '#080F214A',
|
|
492
|
+
usageGuidelines: {
|
|
493
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
494
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
495
|
+
}
|
|
280
496
|
}, {
|
|
281
497
|
name: 'color.icon.inverse',
|
|
282
498
|
path: ['color', 'icon', 'inverse'],
|
|
283
499
|
description: 'Use for icons on bold backgrounds.',
|
|
284
|
-
exampleValue: '#FFFFFF'
|
|
500
|
+
exampleValue: '#FFFFFF',
|
|
501
|
+
usageGuidelines: {
|
|
502
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
503
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
504
|
+
}
|
|
285
505
|
}, {
|
|
286
506
|
name: 'color.icon.selected',
|
|
287
507
|
path: ['color', 'icon', 'selected'],
|
|
288
508
|
description: 'Use for icons in selected or opened states, such as those used in dropdown buttons.',
|
|
289
|
-
exampleValue: '#1868DB'
|
|
509
|
+
exampleValue: '#1868DB',
|
|
510
|
+
usageGuidelines: {
|
|
511
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
512
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
513
|
+
}
|
|
290
514
|
}, {
|
|
291
515
|
name: 'color.icon.brand',
|
|
292
516
|
path: ['color', 'icon', 'brand'],
|
|
293
517
|
description: 'Use for icons that reinforce our brand.',
|
|
294
|
-
exampleValue: '#1868DB'
|
|
518
|
+
exampleValue: '#1868DB',
|
|
519
|
+
usageGuidelines: {
|
|
520
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
521
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
522
|
+
}
|
|
295
523
|
}, {
|
|
296
524
|
name: 'color.icon.danger',
|
|
297
525
|
path: ['color', 'icon', 'danger'],
|
|
298
526
|
description: 'Use for icons communicating critical information, such as those used in error handing.',
|
|
299
|
-
exampleValue: '#C9372C'
|
|
527
|
+
exampleValue: '#C9372C',
|
|
528
|
+
usageGuidelines: {
|
|
529
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
530
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
531
|
+
}
|
|
300
532
|
}, {
|
|
301
533
|
name: 'color.icon.warning',
|
|
302
534
|
path: ['color', 'icon', 'warning', '[default]'],
|
|
303
535
|
description: 'Use for icons communicating caution, such as those used in warning section messages.',
|
|
304
|
-
exampleValue: '#E06C00'
|
|
536
|
+
exampleValue: '#E06C00',
|
|
537
|
+
usageGuidelines: {
|
|
538
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
539
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
540
|
+
}
|
|
305
541
|
}, {
|
|
306
542
|
name: 'color.icon.warning.inverse',
|
|
307
543
|
path: ['color', 'icon', 'warning', 'inverse'],
|
|
308
544
|
description: 'Use for icons when on bold warning backgrounds.',
|
|
309
|
-
exampleValue: '#292A2E'
|
|
545
|
+
exampleValue: '#292A2E',
|
|
546
|
+
usageGuidelines: {
|
|
547
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
548
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
549
|
+
}
|
|
310
550
|
}, {
|
|
311
551
|
name: 'color.icon.success',
|
|
312
552
|
path: ['color', 'icon', 'success'],
|
|
313
553
|
description: 'Use for icons communicating a favorable outcome, such as those used in success section messaged.',
|
|
314
|
-
exampleValue: '#6A9A23'
|
|
554
|
+
exampleValue: '#6A9A23',
|
|
555
|
+
usageGuidelines: {
|
|
556
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
557
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
558
|
+
}
|
|
315
559
|
}, {
|
|
316
560
|
name: 'color.icon.discovery',
|
|
317
561
|
path: ['color', 'icon', 'discovery'],
|
|
318
562
|
description: 'Use for icons communicating change or something new, such as discovery section messages.',
|
|
319
|
-
exampleValue: '#AF59E1'
|
|
563
|
+
exampleValue: '#AF59E1',
|
|
564
|
+
usageGuidelines: {
|
|
565
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
566
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
567
|
+
}
|
|
320
568
|
}, {
|
|
321
569
|
name: 'color.icon.information',
|
|
322
570
|
path: ['color', 'icon', 'information'],
|
|
323
571
|
description: 'Use for icons communicating information or something in-progress, such as information section messages.',
|
|
324
|
-
exampleValue: '#357DE8'
|
|
572
|
+
exampleValue: '#357DE8',
|
|
573
|
+
usageGuidelines: {
|
|
574
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
575
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
576
|
+
}
|
|
325
577
|
}, {
|
|
326
578
|
name: 'color.icon.subtlest',
|
|
327
579
|
path: ['color', 'icon', 'subtlest'],
|
|
328
580
|
description: 'Use for icons paired with color.text.subtlest',
|
|
329
|
-
exampleValue: '#6B6E76'
|
|
581
|
+
exampleValue: '#6B6E76',
|
|
582
|
+
usageGuidelines: {
|
|
583
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
584
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
585
|
+
}
|
|
330
586
|
}, {
|
|
331
587
|
name: 'color.icon.subtle',
|
|
332
588
|
path: ['color', 'icon', 'subtle'],
|
|
333
589
|
description: 'Use for icons paired with color.text.subtle',
|
|
334
|
-
exampleValue: '#505258'
|
|
590
|
+
exampleValue: '#505258',
|
|
591
|
+
usageGuidelines: {
|
|
592
|
+
usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
|
|
593
|
+
cssProperties: ['color', 'fill', 'stroke']
|
|
594
|
+
}
|
|
335
595
|
}, {
|
|
336
596
|
name: 'color.border',
|
|
337
597
|
path: ['color', 'border', '[default]'],
|
|
338
598
|
description: 'Use to visually group or separate UI elements, such as flat cards or side panel dividers.',
|
|
339
|
-
exampleValue: '#0B120E24'
|
|
599
|
+
exampleValue: '#0B120E24',
|
|
600
|
+
usageGuidelines: {
|
|
601
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
602
|
+
cssProperties: ['border-color', 'outline-color']
|
|
603
|
+
}
|
|
340
604
|
}, {
|
|
341
605
|
name: 'color.border.accent.lime',
|
|
342
606
|
path: ['color', 'border', 'accent', 'lime'],
|
|
343
607
|
description: 'Use for lime borders on non-bold backgrounds when there is no meaning tied to the color.',
|
|
344
|
-
exampleValue: '#6A9A23'
|
|
608
|
+
exampleValue: '#6A9A23',
|
|
609
|
+
usageGuidelines: {
|
|
610
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
611
|
+
cssProperties: ['border-color', 'outline-color']
|
|
612
|
+
}
|
|
345
613
|
}, {
|
|
346
614
|
name: 'color.border.accent.red',
|
|
347
615
|
path: ['color', 'border', 'accent', 'red'],
|
|
348
616
|
description: 'Use for red borders on non-bold backgrounds when there is no meaning tied to the color.',
|
|
349
|
-
exampleValue: '#E2483D'
|
|
617
|
+
exampleValue: '#E2483D',
|
|
618
|
+
usageGuidelines: {
|
|
619
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
620
|
+
cssProperties: ['border-color', 'outline-color']
|
|
621
|
+
}
|
|
350
622
|
}, {
|
|
351
623
|
name: 'color.border.accent.orange',
|
|
352
624
|
path: ['color', 'border', 'accent', 'orange'],
|
|
353
625
|
description: 'Use for orange borders on non-bold backgrounds when there is no meaning tied to the color.',
|
|
354
|
-
exampleValue: '#E06C00'
|
|
626
|
+
exampleValue: '#E06C00',
|
|
627
|
+
usageGuidelines: {
|
|
628
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
629
|
+
cssProperties: ['border-color', 'outline-color']
|
|
630
|
+
}
|
|
355
631
|
}, {
|
|
356
632
|
name: 'color.border.accent.yellow',
|
|
357
633
|
path: ['color', 'border', 'accent', 'yellow'],
|
|
358
634
|
description: 'Use for yellow borders on non-bold backgrounds when there is no meaning tied to the color.',
|
|
359
|
-
exampleValue: '#B38600'
|
|
635
|
+
exampleValue: '#B38600',
|
|
636
|
+
usageGuidelines: {
|
|
637
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
638
|
+
cssProperties: ['border-color', 'outline-color']
|
|
639
|
+
}
|
|
360
640
|
}, {
|
|
361
641
|
name: 'color.border.accent.green',
|
|
362
642
|
path: ['color', 'border', 'accent', 'green'],
|
|
363
643
|
description: 'Use for green borders on non-bold backgrounds when there is no meaning tied to the color.',
|
|
364
|
-
exampleValue: '#22A06B'
|
|
644
|
+
exampleValue: '#22A06B',
|
|
645
|
+
usageGuidelines: {
|
|
646
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
647
|
+
cssProperties: ['border-color', 'outline-color']
|
|
648
|
+
}
|
|
365
649
|
}, {
|
|
366
650
|
name: 'color.border.accent.teal',
|
|
367
651
|
path: ['color', 'border', 'accent', 'teal'],
|
|
368
652
|
description: 'Use for teal borders on non-bold backgrounds when there is no meaning tied to the color.',
|
|
369
|
-
exampleValue: '#2898BD'
|
|
653
|
+
exampleValue: '#2898BD',
|
|
654
|
+
usageGuidelines: {
|
|
655
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
656
|
+
cssProperties: ['border-color', 'outline-color']
|
|
657
|
+
}
|
|
370
658
|
}, {
|
|
371
659
|
name: 'color.border.accent.blue',
|
|
372
660
|
path: ['color', 'border', 'accent', 'blue'],
|
|
373
661
|
description: 'Use for blue borders on non-bold backgrounds when there is no meaning tied to the color.',
|
|
374
|
-
exampleValue: '#357DE8'
|
|
662
|
+
exampleValue: '#357DE8',
|
|
663
|
+
usageGuidelines: {
|
|
664
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
665
|
+
cssProperties: ['border-color', 'outline-color']
|
|
666
|
+
}
|
|
375
667
|
}, {
|
|
376
668
|
name: 'color.border.accent.purple',
|
|
377
669
|
path: ['color', 'border', 'accent', 'purple'],
|
|
378
670
|
description: 'Use for purple borders on non-bold backgrounds when there is no meaning tied to the color.',
|
|
379
|
-
exampleValue: '#AF59E1'
|
|
671
|
+
exampleValue: '#AF59E1',
|
|
672
|
+
usageGuidelines: {
|
|
673
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
674
|
+
cssProperties: ['border-color', 'outline-color']
|
|
675
|
+
}
|
|
380
676
|
}, {
|
|
381
677
|
name: 'color.border.accent.magenta',
|
|
382
678
|
path: ['color', 'border', 'accent', 'magenta'],
|
|
383
679
|
description: 'Use for magenta borders on non-bold backgrounds when there is no meaning tied to the color.',
|
|
384
|
-
exampleValue: '#CD519D'
|
|
680
|
+
exampleValue: '#CD519D',
|
|
681
|
+
usageGuidelines: {
|
|
682
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
683
|
+
cssProperties: ['border-color', 'outline-color']
|
|
684
|
+
}
|
|
385
685
|
}, {
|
|
386
686
|
name: 'color.border.accent.gray',
|
|
387
687
|
path: ['color', 'border', 'accent', 'gray'],
|
|
388
688
|
description: 'Use for borders on non-bold gray accent backgrounds.',
|
|
389
|
-
exampleValue: '#7D818A'
|
|
689
|
+
exampleValue: '#7D818A',
|
|
690
|
+
usageGuidelines: {
|
|
691
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
692
|
+
cssProperties: ['border-color', 'outline-color']
|
|
693
|
+
}
|
|
390
694
|
}, {
|
|
391
695
|
name: 'color.border.disabled',
|
|
392
696
|
path: ['color', 'border', 'disabled'],
|
|
393
697
|
description: 'Use for borders of elements in a disabled state.',
|
|
394
|
-
exampleValue: '#0515240F'
|
|
698
|
+
exampleValue: '#0515240F',
|
|
699
|
+
usageGuidelines: {
|
|
700
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
701
|
+
cssProperties: ['border-color', 'outline-color']
|
|
702
|
+
}
|
|
395
703
|
}, {
|
|
396
704
|
name: 'color.border.focused',
|
|
397
705
|
path: ['color', 'border', 'focused'],
|
|
398
706
|
description: 'Use for focus rings of elements in a focus state.',
|
|
399
|
-
exampleValue: '#4688EC'
|
|
707
|
+
exampleValue: '#4688EC',
|
|
708
|
+
usageGuidelines: {
|
|
709
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
710
|
+
cssProperties: ['border-color', 'outline-color']
|
|
711
|
+
}
|
|
400
712
|
}, {
|
|
401
713
|
name: 'color.border.input',
|
|
402
714
|
path: ['color', 'border', 'input'],
|
|
403
715
|
description: 'Use for borders of form UI elements, such as text fields, checkboxes, and radio buttons.',
|
|
404
|
-
exampleValue: '#8C8F97'
|
|
716
|
+
exampleValue: '#8C8F97',
|
|
717
|
+
usageGuidelines: {
|
|
718
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
719
|
+
cssProperties: ['border-color', 'outline-color']
|
|
720
|
+
}
|
|
405
721
|
}, {
|
|
406
722
|
name: 'color.border.inverse',
|
|
407
723
|
path: ['color', 'border', 'inverse'],
|
|
408
724
|
description: 'Use for borders on bold backgrounds.',
|
|
409
|
-
exampleValue: '#FFFFFF'
|
|
725
|
+
exampleValue: '#FFFFFF',
|
|
726
|
+
usageGuidelines: {
|
|
727
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
728
|
+
cssProperties: ['border-color', 'outline-color']
|
|
729
|
+
}
|
|
410
730
|
}, {
|
|
411
731
|
name: 'color.border.selected',
|
|
412
732
|
path: ['color', 'border', 'selected'],
|
|
413
733
|
description: 'Use for borders or visual indicators of elements in a selected or opened state, such as in tabs or menu items.',
|
|
414
|
-
exampleValue: '#1868DB'
|
|
734
|
+
exampleValue: '#1868DB',
|
|
735
|
+
usageGuidelines: {
|
|
736
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
737
|
+
cssProperties: ['border-color', 'outline-color']
|
|
738
|
+
}
|
|
415
739
|
}, {
|
|
416
740
|
name: 'color.border.brand',
|
|
417
741
|
path: ['color', 'border', 'brand'],
|
|
418
742
|
description: 'Use for borders or visual indicators of elements that reinforce our brand, such as logos or primary buttons.',
|
|
419
|
-
exampleValue: '#1868DB'
|
|
743
|
+
exampleValue: '#1868DB',
|
|
744
|
+
usageGuidelines: {
|
|
745
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
746
|
+
cssProperties: ['border-color', 'outline-color']
|
|
747
|
+
}
|
|
420
748
|
}, {
|
|
421
749
|
name: 'color.border.danger',
|
|
422
750
|
path: ['color', 'border', 'danger'],
|
|
423
751
|
description: 'Use for borders communicating critical information, such as the borders on invalid text fields.',
|
|
424
|
-
exampleValue: '#E2483D'
|
|
752
|
+
exampleValue: '#E2483D',
|
|
753
|
+
usageGuidelines: {
|
|
754
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
755
|
+
cssProperties: ['border-color', 'outline-color']
|
|
756
|
+
}
|
|
425
757
|
}, {
|
|
426
758
|
name: 'color.border.warning',
|
|
427
759
|
path: ['color', 'border', 'warning'],
|
|
428
760
|
description: 'Use for borders communicating caution.',
|
|
429
|
-
exampleValue: '#E06C00'
|
|
761
|
+
exampleValue: '#E06C00',
|
|
762
|
+
usageGuidelines: {
|
|
763
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
764
|
+
cssProperties: ['border-color', 'outline-color']
|
|
765
|
+
}
|
|
430
766
|
}, {
|
|
431
767
|
name: 'color.border.success',
|
|
432
768
|
path: ['color', 'border', 'success'],
|
|
433
769
|
description: 'Use for borders communicating a favorable outcome, such as the borders on validated text fields.',
|
|
434
|
-
exampleValue: '#6A9A23'
|
|
770
|
+
exampleValue: '#6A9A23',
|
|
771
|
+
usageGuidelines: {
|
|
772
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
773
|
+
cssProperties: ['border-color', 'outline-color']
|
|
774
|
+
}
|
|
435
775
|
}, {
|
|
436
776
|
name: 'color.border.discovery',
|
|
437
777
|
path: ['color', 'border', 'discovery'],
|
|
438
778
|
description: 'Use for borders communicating change or something new, such as the borders in onboarding spotlights.',
|
|
439
|
-
exampleValue: '#AF59E1'
|
|
779
|
+
exampleValue: '#AF59E1',
|
|
780
|
+
usageGuidelines: {
|
|
781
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
782
|
+
cssProperties: ['border-color', 'outline-color']
|
|
783
|
+
}
|
|
440
784
|
}, {
|
|
441
785
|
name: 'color.border.information',
|
|
442
786
|
path: ['color', 'border', 'information'],
|
|
443
787
|
description: 'Use for borders communicating information or something in-progress.',
|
|
444
|
-
exampleValue: '#357DE8'
|
|
788
|
+
exampleValue: '#357DE8',
|
|
789
|
+
usageGuidelines: {
|
|
790
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
791
|
+
cssProperties: ['border-color', 'outline-color']
|
|
792
|
+
}
|
|
445
793
|
}, {
|
|
446
794
|
name: 'color.border.bold',
|
|
447
795
|
path: ['color', 'border', 'bold'],
|
|
448
796
|
description: 'A neutral border option that passes min 3:1 contrast ratios.',
|
|
449
|
-
exampleValue: '#7D818A'
|
|
797
|
+
exampleValue: '#7D818A',
|
|
798
|
+
usageGuidelines: {
|
|
799
|
+
usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
|
|
800
|
+
cssProperties: ['border-color', 'outline-color']
|
|
801
|
+
}
|
|
450
802
|
}, {
|
|
451
803
|
name: 'color.background.accent.lime.subtlest',
|
|
452
804
|
path: ['color', 'background', 'accent', 'lime', 'subtlest', '[default]'],
|
|
453
805
|
description: 'Use for for backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
|
|
454
|
-
exampleValue: '#EFFFD6'
|
|
806
|
+
exampleValue: '#EFFFD6',
|
|
807
|
+
usageGuidelines: {
|
|
808
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
809
|
+
cssProperties: ['background-color']
|
|
810
|
+
}
|
|
455
811
|
}, {
|
|
456
812
|
name: 'color.background.accent.lime.subtlest.hovered',
|
|
457
813
|
path: ['color', 'background', 'accent', 'lime', 'subtlest', 'hovered'],
|
|
458
814
|
description: 'Hovered state of color.background.accent.lime.subtlest.',
|
|
459
|
-
exampleValue: '#D3F1A7'
|
|
815
|
+
exampleValue: '#D3F1A7',
|
|
816
|
+
usageGuidelines: {
|
|
817
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
818
|
+
cssProperties: ['background-color']
|
|
819
|
+
}
|
|
460
820
|
}, {
|
|
461
821
|
name: 'color.background.accent.lime.subtlest.pressed',
|
|
462
822
|
path: ['color', 'background', 'accent', 'lime', 'subtlest', 'pressed'],
|
|
463
823
|
description: 'Pressed state of color.background.accent.lime.subtlest.',
|
|
464
|
-
exampleValue: '#BDE97C'
|
|
824
|
+
exampleValue: '#BDE97C',
|
|
825
|
+
usageGuidelines: {
|
|
826
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
827
|
+
cssProperties: ['background-color']
|
|
828
|
+
}
|
|
465
829
|
}, {
|
|
466
830
|
name: 'color.background.accent.lime.subtler',
|
|
467
831
|
path: ['color', 'background', 'accent', 'lime', 'subtler', '[default]'],
|
|
468
832
|
description: 'Use for for backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
469
|
-
exampleValue: '#D3F1A7'
|
|
833
|
+
exampleValue: '#D3F1A7',
|
|
834
|
+
usageGuidelines: {
|
|
835
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
836
|
+
cssProperties: ['background-color']
|
|
837
|
+
}
|
|
470
838
|
}, {
|
|
471
839
|
name: 'color.background.accent.lime.subtler.hovered',
|
|
472
840
|
path: ['color', 'background', 'accent', 'lime', 'subtler', 'hovered'],
|
|
473
841
|
description: 'Hovered state of color.background.accent.lime.subtler.',
|
|
474
|
-
exampleValue: '#BDE97C'
|
|
842
|
+
exampleValue: '#BDE97C',
|
|
843
|
+
usageGuidelines: {
|
|
844
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
845
|
+
cssProperties: ['background-color']
|
|
846
|
+
}
|
|
475
847
|
}, {
|
|
476
848
|
name: 'color.background.accent.lime.subtler.pressed',
|
|
477
849
|
path: ['color', 'background', 'accent', 'lime', 'subtler', 'pressed'],
|
|
478
850
|
description: 'Pressed state of color.background.accent.lime.subtler.',
|
|
479
|
-
exampleValue: '#B3DF72'
|
|
851
|
+
exampleValue: '#B3DF72',
|
|
852
|
+
usageGuidelines: {
|
|
853
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
854
|
+
cssProperties: ['background-color']
|
|
855
|
+
}
|
|
480
856
|
}, {
|
|
481
857
|
name: 'color.background.accent.lime.subtle',
|
|
482
858
|
path: ['color', 'background', 'accent', 'lime', 'subtle', '[default]'],
|
|
483
859
|
description: 'Use for vibrant for backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
484
|
-
exampleValue: '#94C748'
|
|
860
|
+
exampleValue: '#94C748',
|
|
861
|
+
usageGuidelines: {
|
|
862
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
863
|
+
cssProperties: ['background-color']
|
|
864
|
+
}
|
|
485
865
|
}, {
|
|
486
866
|
name: 'color.background.accent.lime.subtle.hovered',
|
|
487
867
|
path: ['color', 'background', 'accent', 'lime', 'subtle', 'hovered'],
|
|
488
868
|
description: 'Hovered state of color.background.accent.lime.subtle.',
|
|
489
|
-
exampleValue: '#B3DF72'
|
|
869
|
+
exampleValue: '#B3DF72',
|
|
870
|
+
usageGuidelines: {
|
|
871
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
872
|
+
cssProperties: ['background-color']
|
|
873
|
+
}
|
|
490
874
|
}, {
|
|
491
875
|
name: 'color.background.accent.lime.subtle.pressed',
|
|
492
876
|
path: ['color', 'background', 'accent', 'lime', 'subtle', 'pressed'],
|
|
493
877
|
description: 'Pressed state of color.background.accent.lime.subtle.',
|
|
494
|
-
exampleValue: '#BDE97C'
|
|
878
|
+
exampleValue: '#BDE97C',
|
|
879
|
+
usageGuidelines: {
|
|
880
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
881
|
+
cssProperties: ['background-color']
|
|
882
|
+
}
|
|
495
883
|
}, {
|
|
496
884
|
name: 'color.background.accent.lime.bolder',
|
|
497
885
|
path: ['color', 'background', 'accent', 'lime', 'bolder', '[default]'],
|
|
498
886
|
description: 'Use for for backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
|
|
499
|
-
exampleValue: '#5B7F24'
|
|
887
|
+
exampleValue: '#5B7F24',
|
|
888
|
+
usageGuidelines: {
|
|
889
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
890
|
+
cssProperties: ['background-color']
|
|
891
|
+
}
|
|
500
892
|
}, {
|
|
501
893
|
name: 'color.background.accent.lime.bolder.hovered',
|
|
502
894
|
path: ['color', 'background', 'accent', 'lime', 'bolder', 'hovered'],
|
|
503
895
|
description: 'Hovered state of color.background.accent.lime.bolder.',
|
|
504
|
-
exampleValue: '#4C6B1F'
|
|
896
|
+
exampleValue: '#4C6B1F',
|
|
897
|
+
usageGuidelines: {
|
|
898
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
899
|
+
cssProperties: ['background-color']
|
|
900
|
+
}
|
|
505
901
|
}, {
|
|
506
902
|
name: 'color.background.accent.lime.bolder.pressed',
|
|
507
903
|
path: ['color', 'background', 'accent', 'lime', 'bolder', 'pressed'],
|
|
508
904
|
description: 'Pressed state of color.background.accent.lime.bolder.',
|
|
509
|
-
exampleValue: '#3F5224'
|
|
905
|
+
exampleValue: '#3F5224',
|
|
906
|
+
usageGuidelines: {
|
|
907
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
908
|
+
cssProperties: ['background-color']
|
|
909
|
+
}
|
|
510
910
|
}, {
|
|
511
911
|
name: 'color.background.accent.red.subtlest',
|
|
512
912
|
path: ['color', 'background', 'accent', 'red', 'subtlest', '[default]'],
|
|
513
913
|
description: 'Use for red backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
|
|
514
|
-
exampleValue: '#FFECEB'
|
|
914
|
+
exampleValue: '#FFECEB',
|
|
915
|
+
usageGuidelines: {
|
|
916
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
917
|
+
cssProperties: ['background-color']
|
|
918
|
+
}
|
|
515
919
|
}, {
|
|
516
920
|
name: 'color.background.accent.red.subtlest.hovered',
|
|
517
921
|
path: ['color', 'background', 'accent', 'red', 'subtlest', 'hovered'],
|
|
518
922
|
description: 'Hovered state of color.background.accent.red.subtlest.',
|
|
519
|
-
exampleValue: '#FFD5D2'
|
|
923
|
+
exampleValue: '#FFD5D2',
|
|
924
|
+
usageGuidelines: {
|
|
925
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
926
|
+
cssProperties: ['background-color']
|
|
927
|
+
}
|
|
520
928
|
}, {
|
|
521
929
|
name: 'color.background.accent.red.subtlest.pressed',
|
|
522
930
|
path: ['color', 'background', 'accent', 'red', 'subtlest', 'pressed'],
|
|
523
931
|
description: 'Pressed state of color.background.accent.red.subtlest.',
|
|
524
|
-
exampleValue: '#FFB8B2'
|
|
932
|
+
exampleValue: '#FFB8B2',
|
|
933
|
+
usageGuidelines: {
|
|
934
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
935
|
+
cssProperties: ['background-color']
|
|
936
|
+
}
|
|
525
937
|
}, {
|
|
526
938
|
name: 'color.background.accent.red.subtler',
|
|
527
939
|
path: ['color', 'background', 'accent', 'red', 'subtler', '[default]'],
|
|
528
940
|
description: 'Use for red backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
529
|
-
exampleValue: '#FFD5D2'
|
|
941
|
+
exampleValue: '#FFD5D2',
|
|
942
|
+
usageGuidelines: {
|
|
943
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
944
|
+
cssProperties: ['background-color']
|
|
945
|
+
}
|
|
530
946
|
}, {
|
|
531
947
|
name: 'color.background.accent.red.subtler.hovered',
|
|
532
948
|
path: ['color', 'background', 'accent', 'red', 'subtler', 'hovered'],
|
|
533
949
|
description: 'Hovered state of color.background.accent.red.subtler.',
|
|
534
|
-
exampleValue: '#FFB8B2'
|
|
950
|
+
exampleValue: '#FFB8B2',
|
|
951
|
+
usageGuidelines: {
|
|
952
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
953
|
+
cssProperties: ['background-color']
|
|
954
|
+
}
|
|
535
955
|
}, {
|
|
536
956
|
name: 'color.background.accent.red.subtler.pressed',
|
|
537
957
|
path: ['color', 'background', 'accent', 'red', 'subtler', 'pressed'],
|
|
538
958
|
description: 'Pressed state of color.background.accent.red.subtler.',
|
|
539
|
-
exampleValue: '#FD9891'
|
|
959
|
+
exampleValue: '#FD9891',
|
|
960
|
+
usageGuidelines: {
|
|
961
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
962
|
+
cssProperties: ['background-color']
|
|
963
|
+
}
|
|
540
964
|
}, {
|
|
541
965
|
name: 'color.background.accent.red.subtle',
|
|
542
966
|
path: ['color', 'background', 'accent', 'red', 'subtle', '[default]'],
|
|
543
967
|
description: 'Use for vibrant red backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
544
|
-
exampleValue: '#F87168'
|
|
968
|
+
exampleValue: '#F87168',
|
|
969
|
+
usageGuidelines: {
|
|
970
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
971
|
+
cssProperties: ['background-color']
|
|
972
|
+
}
|
|
545
973
|
}, {
|
|
546
974
|
name: 'color.background.accent.red.subtle.hovered',
|
|
547
975
|
path: ['color', 'background', 'accent', 'red', 'subtle', 'hovered'],
|
|
548
976
|
description: 'Hovered state of color.background.accent.red.subtle.',
|
|
549
|
-
exampleValue: '#FD9891'
|
|
977
|
+
exampleValue: '#FD9891',
|
|
978
|
+
usageGuidelines: {
|
|
979
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
980
|
+
cssProperties: ['background-color']
|
|
981
|
+
}
|
|
550
982
|
}, {
|
|
551
983
|
name: 'color.background.accent.red.subtle.pressed',
|
|
552
984
|
path: ['color', 'background', 'accent', 'red', 'subtle', 'pressed'],
|
|
553
985
|
description: 'Pressed state of color.background.accent.red.subtle.',
|
|
554
|
-
exampleValue: '#FFB8B2'
|
|
986
|
+
exampleValue: '#FFB8B2',
|
|
987
|
+
usageGuidelines: {
|
|
988
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
989
|
+
cssProperties: ['background-color']
|
|
990
|
+
}
|
|
555
991
|
}, {
|
|
556
992
|
name: 'color.background.accent.red.bolder',
|
|
557
993
|
path: ['color', 'background', 'accent', 'red', 'bolder', '[default]'],
|
|
558
994
|
description: 'Use for red backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
|
|
559
|
-
exampleValue: '#C9372C'
|
|
995
|
+
exampleValue: '#C9372C',
|
|
996
|
+
usageGuidelines: {
|
|
997
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
998
|
+
cssProperties: ['background-color']
|
|
999
|
+
}
|
|
560
1000
|
}, {
|
|
561
1001
|
name: 'color.background.accent.red.bolder.hovered',
|
|
562
1002
|
path: ['color', 'background', 'accent', 'red', 'bolder', 'hovered'],
|
|
563
1003
|
description: 'Hovered state of color.background.accent.red.bolder.',
|
|
564
|
-
exampleValue: '#AE2E24'
|
|
1004
|
+
exampleValue: '#AE2E24',
|
|
1005
|
+
usageGuidelines: {
|
|
1006
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1007
|
+
cssProperties: ['background-color']
|
|
1008
|
+
}
|
|
565
1009
|
}, {
|
|
566
1010
|
name: 'color.background.accent.red.bolder.pressed',
|
|
567
1011
|
path: ['color', 'background', 'accent', 'red', 'bolder', 'pressed'],
|
|
568
1012
|
description: 'Pressed state of color.background.accent.red.bolder.',
|
|
569
|
-
exampleValue: '#872821'
|
|
1013
|
+
exampleValue: '#872821',
|
|
1014
|
+
usageGuidelines: {
|
|
1015
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1016
|
+
cssProperties: ['background-color']
|
|
1017
|
+
}
|
|
570
1018
|
}, {
|
|
571
1019
|
name: 'color.background.accent.orange.subtlest',
|
|
572
1020
|
path: ['color', 'background', 'accent', 'orange', 'subtlest', '[default]'],
|
|
573
1021
|
description: 'Use for orange backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
|
|
574
|
-
exampleValue: '#FFF5DB'
|
|
1022
|
+
exampleValue: '#FFF5DB',
|
|
1023
|
+
usageGuidelines: {
|
|
1024
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1025
|
+
cssProperties: ['background-color']
|
|
1026
|
+
}
|
|
575
1027
|
}, {
|
|
576
1028
|
name: 'color.background.accent.orange.subtlest.hovered',
|
|
577
1029
|
path: ['color', 'background', 'accent', 'orange', 'subtlest', 'hovered'],
|
|
578
1030
|
description: 'Hovered state of color.background.accent.orange.subtlest.',
|
|
579
|
-
exampleValue: '#FCE4A6'
|
|
1031
|
+
exampleValue: '#FCE4A6',
|
|
1032
|
+
usageGuidelines: {
|
|
1033
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1034
|
+
cssProperties: ['background-color']
|
|
1035
|
+
}
|
|
580
1036
|
}, {
|
|
581
1037
|
name: 'color.background.accent.orange.subtlest.pressed',
|
|
582
1038
|
path: ['color', 'background', 'accent', 'orange', 'subtlest', 'pressed'],
|
|
583
1039
|
description: 'Pressed state of color.background.accent.orange.subtlest.',
|
|
584
|
-
exampleValue: '#FBD779'
|
|
1040
|
+
exampleValue: '#FBD779',
|
|
1041
|
+
usageGuidelines: {
|
|
1042
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1043
|
+
cssProperties: ['background-color']
|
|
1044
|
+
}
|
|
585
1045
|
}, {
|
|
586
1046
|
name: 'color.background.accent.orange.subtler',
|
|
587
1047
|
path: ['color', 'background', 'accent', 'orange', 'subtler', '[default]'],
|
|
588
1048
|
description: 'Use for orange backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
589
|
-
exampleValue: '#FCE4A6'
|
|
1049
|
+
exampleValue: '#FCE4A6',
|
|
1050
|
+
usageGuidelines: {
|
|
1051
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1052
|
+
cssProperties: ['background-color']
|
|
1053
|
+
}
|
|
590
1054
|
}, {
|
|
591
1055
|
name: 'color.background.accent.orange.subtler.hovered',
|
|
592
1056
|
path: ['color', 'background', 'accent', 'orange', 'subtler', 'hovered'],
|
|
593
1057
|
description: 'Hovered state of color.background.accent.orange.subtler.',
|
|
594
|
-
exampleValue: '#FBD779'
|
|
1058
|
+
exampleValue: '#FBD779',
|
|
1059
|
+
usageGuidelines: {
|
|
1060
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1061
|
+
cssProperties: ['background-color']
|
|
1062
|
+
}
|
|
595
1063
|
}, {
|
|
596
1064
|
name: 'color.background.accent.orange.subtler.pressed',
|
|
597
1065
|
path: ['color', 'background', 'accent', 'orange', 'subtler', 'pressed'],
|
|
598
1066
|
description: 'Pressed state of color.background.accent.orange.subtler.',
|
|
599
|
-
exampleValue: '#FBC828'
|
|
1067
|
+
exampleValue: '#FBC828',
|
|
1068
|
+
usageGuidelines: {
|
|
1069
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1070
|
+
cssProperties: ['background-color']
|
|
1071
|
+
}
|
|
600
1072
|
}, {
|
|
601
1073
|
name: 'color.background.accent.orange.subtle',
|
|
602
1074
|
path: ['color', 'background', 'accent', 'orange', 'subtle', '[default]'],
|
|
603
1075
|
description: 'Use for vibrant orange backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
604
|
-
exampleValue: '#FCA700'
|
|
1076
|
+
exampleValue: '#FCA700',
|
|
1077
|
+
usageGuidelines: {
|
|
1078
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1079
|
+
cssProperties: ['background-color']
|
|
1080
|
+
}
|
|
605
1081
|
}, {
|
|
606
1082
|
name: 'color.background.accent.orange.subtle.hovered',
|
|
607
1083
|
path: ['color', 'background', 'accent', 'orange', 'subtle', 'hovered'],
|
|
608
1084
|
description: 'Hovered state of color.background.accent.orange.subtle.',
|
|
609
|
-
exampleValue: '#FBC828'
|
|
1085
|
+
exampleValue: '#FBC828',
|
|
1086
|
+
usageGuidelines: {
|
|
1087
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1088
|
+
cssProperties: ['background-color']
|
|
1089
|
+
}
|
|
610
1090
|
}, {
|
|
611
1091
|
name: 'color.background.accent.orange.subtle.pressed',
|
|
612
1092
|
path: ['color', 'background', 'accent', 'orange', 'subtle', 'pressed'],
|
|
613
1093
|
description: 'Pressed state of color.background.accent.orange.subtle.',
|
|
614
|
-
exampleValue: '#FBD779'
|
|
1094
|
+
exampleValue: '#FBD779',
|
|
1095
|
+
usageGuidelines: {
|
|
1096
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1097
|
+
cssProperties: ['background-color']
|
|
1098
|
+
}
|
|
615
1099
|
}, {
|
|
616
1100
|
name: 'color.background.accent.orange.bolder',
|
|
617
1101
|
path: ['color', 'background', 'accent', 'orange', 'bolder', '[default]'],
|
|
618
1102
|
description: 'Use for orange backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
|
|
619
|
-
exampleValue: '#BD5B00'
|
|
1103
|
+
exampleValue: '#BD5B00',
|
|
1104
|
+
usageGuidelines: {
|
|
1105
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1106
|
+
cssProperties: ['background-color']
|
|
1107
|
+
}
|
|
620
1108
|
}, {
|
|
621
1109
|
name: 'color.background.accent.orange.bolder.hovered',
|
|
622
1110
|
path: ['color', 'background', 'accent', 'orange', 'bolder', 'hovered'],
|
|
623
1111
|
description: 'Hovered state of color.background.accent.orange.bolder.',
|
|
624
|
-
exampleValue: '#9E4C00'
|
|
1112
|
+
exampleValue: '#9E4C00',
|
|
1113
|
+
usageGuidelines: {
|
|
1114
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1115
|
+
cssProperties: ['background-color']
|
|
1116
|
+
}
|
|
625
1117
|
}, {
|
|
626
1118
|
name: 'color.background.accent.orange.bolder.pressed',
|
|
627
1119
|
path: ['color', 'background', 'accent', 'orange', 'bolder', 'pressed'],
|
|
628
1120
|
description: 'Pressed state of color.background.accent.orange.bolder.',
|
|
629
|
-
exampleValue: '#7A3B00'
|
|
1121
|
+
exampleValue: '#7A3B00',
|
|
1122
|
+
usageGuidelines: {
|
|
1123
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1124
|
+
cssProperties: ['background-color']
|
|
1125
|
+
}
|
|
630
1126
|
}, {
|
|
631
1127
|
name: 'color.background.accent.yellow.subtlest',
|
|
632
1128
|
path: ['color', 'background', 'accent', 'yellow', 'subtlest', '[default]'],
|
|
633
1129
|
description: 'Use for yellow backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
|
|
634
|
-
exampleValue: '#FEF7C8'
|
|
1130
|
+
exampleValue: '#FEF7C8',
|
|
1131
|
+
usageGuidelines: {
|
|
1132
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1133
|
+
cssProperties: ['background-color']
|
|
1134
|
+
}
|
|
635
1135
|
}, {
|
|
636
1136
|
name: 'color.background.accent.yellow.subtlest.hovered',
|
|
637
1137
|
path: ['color', 'background', 'accent', 'yellow', 'subtlest', 'hovered'],
|
|
638
1138
|
description: 'Hovered state of color.background.accent.yellow.subtlest.',
|
|
639
|
-
exampleValue: '#F5E989'
|
|
1139
|
+
exampleValue: '#F5E989',
|
|
1140
|
+
usageGuidelines: {
|
|
1141
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1142
|
+
cssProperties: ['background-color']
|
|
1143
|
+
}
|
|
640
1144
|
}, {
|
|
641
1145
|
name: 'color.background.accent.yellow.subtlest.pressed',
|
|
642
1146
|
path: ['color', 'background', 'accent', 'yellow', 'subtlest', 'pressed'],
|
|
643
1147
|
description: 'Pressed state of color.background.accent.yellow.subtlest.',
|
|
644
|
-
exampleValue: '#EFDD4E'
|
|
1148
|
+
exampleValue: '#EFDD4E',
|
|
1149
|
+
usageGuidelines: {
|
|
1150
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1151
|
+
cssProperties: ['background-color']
|
|
1152
|
+
}
|
|
645
1153
|
}, {
|
|
646
1154
|
name: 'color.background.accent.yellow.subtler',
|
|
647
1155
|
path: ['color', 'background', 'accent', 'yellow', 'subtler', '[default]'],
|
|
648
1156
|
description: 'Use for yellow backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
649
|
-
exampleValue: '#F5E989'
|
|
1157
|
+
exampleValue: '#F5E989',
|
|
1158
|
+
usageGuidelines: {
|
|
1159
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1160
|
+
cssProperties: ['background-color']
|
|
1161
|
+
}
|
|
650
1162
|
}, {
|
|
651
1163
|
name: 'color.background.accent.yellow.subtler.hovered',
|
|
652
1164
|
path: ['color', 'background', 'accent', 'yellow', 'subtler', 'hovered'],
|
|
653
1165
|
description: 'Hovered state of color.background.accent.yellow.subtler.',
|
|
654
|
-
exampleValue: '#EFDD4E'
|
|
1166
|
+
exampleValue: '#EFDD4E',
|
|
1167
|
+
usageGuidelines: {
|
|
1168
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1169
|
+
cssProperties: ['background-color']
|
|
1170
|
+
}
|
|
655
1171
|
}, {
|
|
656
1172
|
name: 'color.background.accent.yellow.subtler.pressed',
|
|
657
1173
|
path: ['color', 'background', 'accent', 'yellow', 'subtler', 'pressed'],
|
|
658
1174
|
description: 'Pressed state of color.background.accent.yellow.subtler.',
|
|
659
|
-
exampleValue: '#EED12B'
|
|
1175
|
+
exampleValue: '#EED12B',
|
|
1176
|
+
usageGuidelines: {
|
|
1177
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1178
|
+
cssProperties: ['background-color']
|
|
1179
|
+
}
|
|
660
1180
|
}, {
|
|
661
1181
|
name: 'color.background.accent.yellow.subtle',
|
|
662
1182
|
path: ['color', 'background', 'accent', 'yellow', 'subtle', '[default]'],
|
|
663
1183
|
description: 'Use for vibrant yellow backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
664
|
-
exampleValue: '#EED12B'
|
|
1184
|
+
exampleValue: '#EED12B',
|
|
1185
|
+
usageGuidelines: {
|
|
1186
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1187
|
+
cssProperties: ['background-color']
|
|
1188
|
+
}
|
|
665
1189
|
}, {
|
|
666
1190
|
name: 'color.background.accent.yellow.subtle.hovered',
|
|
667
1191
|
path: ['color', 'background', 'accent', 'yellow', 'subtle', 'hovered'],
|
|
668
1192
|
description: 'Hovered state of color.background.accent.yellow.subtle.',
|
|
669
|
-
exampleValue: '#DDB30E'
|
|
1193
|
+
exampleValue: '#DDB30E',
|
|
1194
|
+
usageGuidelines: {
|
|
1195
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1196
|
+
cssProperties: ['background-color']
|
|
1197
|
+
}
|
|
670
1198
|
}, {
|
|
671
1199
|
name: 'color.background.accent.yellow.subtle.pressed',
|
|
672
1200
|
path: ['color', 'background', 'accent', 'yellow', 'subtle', 'pressed'],
|
|
673
1201
|
description: 'Pressed state of color.background.accent.yellow.subtle.',
|
|
674
|
-
exampleValue: '#EFDD4E'
|
|
1202
|
+
exampleValue: '#EFDD4E',
|
|
1203
|
+
usageGuidelines: {
|
|
1204
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1205
|
+
cssProperties: ['background-color']
|
|
1206
|
+
}
|
|
675
1207
|
}, {
|
|
676
1208
|
name: 'color.background.accent.yellow.bolder',
|
|
677
1209
|
path: ['color', 'background', 'accent', 'yellow', 'bolder', '[default]'],
|
|
678
1210
|
description: 'Use for yellow backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
|
|
679
|
-
exampleValue: '#946F00'
|
|
1211
|
+
exampleValue: '#946F00',
|
|
1212
|
+
usageGuidelines: {
|
|
1213
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1214
|
+
cssProperties: ['background-color']
|
|
1215
|
+
}
|
|
680
1216
|
}, {
|
|
681
1217
|
name: 'color.background.accent.yellow.bolder.hovered',
|
|
682
1218
|
path: ['color', 'background', 'accent', 'yellow', 'bolder', 'hovered'],
|
|
683
1219
|
description: 'Hovered state of color.background.accent.yellow.bolder.',
|
|
684
|
-
exampleValue: '#7F5F01'
|
|
1220
|
+
exampleValue: '#7F5F01',
|
|
1221
|
+
usageGuidelines: {
|
|
1222
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1223
|
+
cssProperties: ['background-color']
|
|
1224
|
+
}
|
|
685
1225
|
}, {
|
|
686
1226
|
name: 'color.background.accent.yellow.bolder.pressed',
|
|
687
1227
|
path: ['color', 'background', 'accent', 'yellow', 'bolder', 'pressed'],
|
|
688
1228
|
description: 'Pressed state of color.background.accent.yellow.bolder.',
|
|
689
|
-
exampleValue: '#614A05'
|
|
1229
|
+
exampleValue: '#614A05',
|
|
1230
|
+
usageGuidelines: {
|
|
1231
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1232
|
+
cssProperties: ['background-color']
|
|
1233
|
+
}
|
|
690
1234
|
}, {
|
|
691
1235
|
name: 'color.background.accent.green.subtlest',
|
|
692
1236
|
path: ['color', 'background', 'accent', 'green', 'subtlest', '[default]'],
|
|
693
1237
|
description: 'Use for green backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
|
|
694
|
-
exampleValue: '#DCFFF1'
|
|
1238
|
+
exampleValue: '#DCFFF1',
|
|
1239
|
+
usageGuidelines: {
|
|
1240
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1241
|
+
cssProperties: ['background-color']
|
|
1242
|
+
}
|
|
695
1243
|
}, {
|
|
696
1244
|
name: 'color.background.accent.green.subtlest.hovered',
|
|
697
1245
|
path: ['color', 'background', 'accent', 'green', 'subtlest', 'hovered'],
|
|
698
1246
|
description: 'Hovered state of color.background.accent.green.subtlest.',
|
|
699
|
-
exampleValue: '#BAF3DB'
|
|
1247
|
+
exampleValue: '#BAF3DB',
|
|
1248
|
+
usageGuidelines: {
|
|
1249
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1250
|
+
cssProperties: ['background-color']
|
|
1251
|
+
}
|
|
700
1252
|
}, {
|
|
701
1253
|
name: 'color.background.accent.green.subtlest.pressed',
|
|
702
1254
|
path: ['color', 'background', 'accent', 'green', 'subtlest', 'pressed'],
|
|
703
1255
|
description: 'Pressed state of color.background.accent.green.subtlest.',
|
|
704
|
-
exampleValue: '#97EDC9'
|
|
1256
|
+
exampleValue: '#97EDC9',
|
|
1257
|
+
usageGuidelines: {
|
|
1258
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1259
|
+
cssProperties: ['background-color']
|
|
1260
|
+
}
|
|
705
1261
|
}, {
|
|
706
1262
|
name: 'color.background.accent.green.subtler',
|
|
707
1263
|
path: ['color', 'background', 'accent', 'green', 'subtler', '[default]'],
|
|
708
1264
|
description: 'Use for green backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
709
|
-
exampleValue: '#BAF3DB'
|
|
1265
|
+
exampleValue: '#BAF3DB',
|
|
1266
|
+
usageGuidelines: {
|
|
1267
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1268
|
+
cssProperties: ['background-color']
|
|
1269
|
+
}
|
|
710
1270
|
}, {
|
|
711
1271
|
name: 'color.background.accent.green.subtler.hovered',
|
|
712
1272
|
path: ['color', 'background', 'accent', 'green', 'subtler', 'hovered'],
|
|
713
1273
|
description: 'Hovered state of color.background.accent.green.subtler.',
|
|
714
|
-
exampleValue: '#97EDC9'
|
|
1274
|
+
exampleValue: '#97EDC9',
|
|
1275
|
+
usageGuidelines: {
|
|
1276
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1277
|
+
cssProperties: ['background-color']
|
|
1278
|
+
}
|
|
715
1279
|
}, {
|
|
716
1280
|
name: 'color.background.accent.green.subtler.pressed',
|
|
717
1281
|
path: ['color', 'background', 'accent', 'green', 'subtler', 'pressed'],
|
|
718
1282
|
description: 'Pressed state of color.background.accent.green.subtler.',
|
|
719
|
-
exampleValue: '#7EE2B8'
|
|
1283
|
+
exampleValue: '#7EE2B8',
|
|
1284
|
+
usageGuidelines: {
|
|
1285
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1286
|
+
cssProperties: ['background-color']
|
|
1287
|
+
}
|
|
720
1288
|
}, {
|
|
721
1289
|
name: 'color.background.accent.green.subtle',
|
|
722
1290
|
path: ['color', 'background', 'accent', 'green', 'subtle', '[default]'],
|
|
723
1291
|
description: 'Use for vibrant green backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
724
|
-
exampleValue: '#4BCE97'
|
|
1292
|
+
exampleValue: '#4BCE97',
|
|
1293
|
+
usageGuidelines: {
|
|
1294
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1295
|
+
cssProperties: ['background-color']
|
|
1296
|
+
}
|
|
725
1297
|
}, {
|
|
726
1298
|
name: 'color.background.accent.green.subtle.hovered',
|
|
727
1299
|
path: ['color', 'background', 'accent', 'green', 'subtle', 'hovered'],
|
|
728
1300
|
description: 'Hovered state of color.background.accent.green.subtle.',
|
|
729
|
-
exampleValue: '#7EE2B8'
|
|
1301
|
+
exampleValue: '#7EE2B8',
|
|
1302
|
+
usageGuidelines: {
|
|
1303
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1304
|
+
cssProperties: ['background-color']
|
|
1305
|
+
}
|
|
730
1306
|
}, {
|
|
731
1307
|
name: 'color.background.accent.green.subtle.pressed',
|
|
732
1308
|
path: ['color', 'background', 'accent', 'green', 'subtle', 'pressed'],
|
|
733
1309
|
description: 'Pressed state of color.background.accent.green.subtle.',
|
|
734
|
-
exampleValue: '#97EDC9'
|
|
1310
|
+
exampleValue: '#97EDC9',
|
|
1311
|
+
usageGuidelines: {
|
|
1312
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1313
|
+
cssProperties: ['background-color']
|
|
1314
|
+
}
|
|
735
1315
|
}, {
|
|
736
1316
|
name: 'color.background.accent.green.bolder',
|
|
737
1317
|
path: ['color', 'background', 'accent', 'green', 'bolder', '[default]'],
|
|
738
1318
|
description: 'Use for green backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
|
|
739
|
-
exampleValue: '#1F845A'
|
|
1319
|
+
exampleValue: '#1F845A',
|
|
1320
|
+
usageGuidelines: {
|
|
1321
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1322
|
+
cssProperties: ['background-color']
|
|
1323
|
+
}
|
|
740
1324
|
}, {
|
|
741
1325
|
name: 'color.background.accent.green.bolder.hovered',
|
|
742
1326
|
path: ['color', 'background', 'accent', 'green', 'bolder', 'hovered'],
|
|
743
1327
|
description: 'Hovered state of color.background.accent.green.bolder.',
|
|
744
|
-
exampleValue: '#216E4E'
|
|
1328
|
+
exampleValue: '#216E4E',
|
|
1329
|
+
usageGuidelines: {
|
|
1330
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1331
|
+
cssProperties: ['background-color']
|
|
1332
|
+
}
|
|
745
1333
|
}, {
|
|
746
1334
|
name: 'color.background.accent.green.bolder.pressed',
|
|
747
1335
|
path: ['color', 'background', 'accent', 'green', 'bolder', 'pressed'],
|
|
748
1336
|
description: 'Pressed state of color.background.accent.green.bolder.',
|
|
749
|
-
exampleValue: '#19573D'
|
|
1337
|
+
exampleValue: '#19573D',
|
|
1338
|
+
usageGuidelines: {
|
|
1339
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1340
|
+
cssProperties: ['background-color']
|
|
1341
|
+
}
|
|
750
1342
|
}, {
|
|
751
1343
|
name: 'color.background.accent.teal.subtlest',
|
|
752
1344
|
path: ['color', 'background', 'accent', 'teal', 'subtlest', '[default]'],
|
|
753
1345
|
description: 'Use for teal backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
|
|
754
|
-
exampleValue: '#E7F9FF'
|
|
1346
|
+
exampleValue: '#E7F9FF',
|
|
1347
|
+
usageGuidelines: {
|
|
1348
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1349
|
+
cssProperties: ['background-color']
|
|
1350
|
+
}
|
|
755
1351
|
}, {
|
|
756
1352
|
name: 'color.background.accent.teal.subtlest.hovered',
|
|
757
1353
|
path: ['color', 'background', 'accent', 'teal', 'subtlest', 'hovered'],
|
|
758
1354
|
description: 'Hovered state of color.background.accent.teal.subtlest.',
|
|
759
|
-
exampleValue: '#C6EDFB'
|
|
1355
|
+
exampleValue: '#C6EDFB',
|
|
1356
|
+
usageGuidelines: {
|
|
1357
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1358
|
+
cssProperties: ['background-color']
|
|
1359
|
+
}
|
|
760
1360
|
}, {
|
|
761
1361
|
name: 'color.background.accent.teal.subtlest.pressed',
|
|
762
1362
|
path: ['color', 'background', 'accent', 'teal', 'subtlest', 'pressed'],
|
|
763
1363
|
description: 'Pressed state of color.background.accent.teal.subtlest.',
|
|
764
|
-
exampleValue: '#B1E4F7'
|
|
1364
|
+
exampleValue: '#B1E4F7',
|
|
1365
|
+
usageGuidelines: {
|
|
1366
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1367
|
+
cssProperties: ['background-color']
|
|
1368
|
+
}
|
|
765
1369
|
}, {
|
|
766
1370
|
name: 'color.background.accent.teal.subtler',
|
|
767
1371
|
path: ['color', 'background', 'accent', 'teal', 'subtler', '[default]'],
|
|
768
1372
|
description: 'Use for teal backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
769
|
-
exampleValue: '#C6EDFB'
|
|
1373
|
+
exampleValue: '#C6EDFB',
|
|
1374
|
+
usageGuidelines: {
|
|
1375
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1376
|
+
cssProperties: ['background-color']
|
|
1377
|
+
}
|
|
770
1378
|
}, {
|
|
771
1379
|
name: 'color.background.accent.teal.subtler.hovered',
|
|
772
1380
|
path: ['color', 'background', 'accent', 'teal', 'subtler', 'hovered'],
|
|
773
1381
|
description: 'Hovered state of color.background.accent.teal.subtler.',
|
|
774
|
-
exampleValue: '#B1E4F7'
|
|
1382
|
+
exampleValue: '#B1E4F7',
|
|
1383
|
+
usageGuidelines: {
|
|
1384
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1385
|
+
cssProperties: ['background-color']
|
|
1386
|
+
}
|
|
775
1387
|
}, {
|
|
776
1388
|
name: 'color.background.accent.teal.subtler.pressed',
|
|
777
1389
|
path: ['color', 'background', 'accent', 'teal', 'subtler', 'pressed'],
|
|
778
1390
|
description: 'Pressed state of color.background.accent.teal.subtler.',
|
|
779
|
-
exampleValue: '#9DD9EE'
|
|
1391
|
+
exampleValue: '#9DD9EE',
|
|
1392
|
+
usageGuidelines: {
|
|
1393
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1394
|
+
cssProperties: ['background-color']
|
|
1395
|
+
}
|
|
780
1396
|
}, {
|
|
781
1397
|
name: 'color.background.accent.teal.subtle',
|
|
782
1398
|
path: ['color', 'background', 'accent', 'teal', 'subtle', '[default]'],
|
|
783
1399
|
description: 'Use for vibrant teal backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
784
|
-
exampleValue: '#6CC3E0'
|
|
1400
|
+
exampleValue: '#6CC3E0',
|
|
1401
|
+
usageGuidelines: {
|
|
1402
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1403
|
+
cssProperties: ['background-color']
|
|
1404
|
+
}
|
|
785
1405
|
}, {
|
|
786
1406
|
name: 'color.background.accent.teal.subtle.hovered',
|
|
787
1407
|
path: ['color', 'background', 'accent', 'teal', 'subtle', 'hovered'],
|
|
788
1408
|
description: 'Hovered state of color.background.accent.teal.subtle.',
|
|
789
|
-
exampleValue: '#9DD9EE'
|
|
1409
|
+
exampleValue: '#9DD9EE',
|
|
1410
|
+
usageGuidelines: {
|
|
1411
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1412
|
+
cssProperties: ['background-color']
|
|
1413
|
+
}
|
|
790
1414
|
}, {
|
|
791
1415
|
name: 'color.background.accent.teal.subtle.pressed',
|
|
792
1416
|
path: ['color', 'background', 'accent', 'teal', 'subtle', 'pressed'],
|
|
793
1417
|
description: 'Pressed state of color.background.accent.teal.subtle.',
|
|
794
|
-
exampleValue: '#B1E4F7'
|
|
1418
|
+
exampleValue: '#B1E4F7',
|
|
1419
|
+
usageGuidelines: {
|
|
1420
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1421
|
+
cssProperties: ['background-color']
|
|
1422
|
+
}
|
|
795
1423
|
}, {
|
|
796
1424
|
name: 'color.background.accent.teal.bolder',
|
|
797
1425
|
path: ['color', 'background', 'accent', 'teal', 'bolder', '[default]'],
|
|
798
1426
|
description: 'Use for teal backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
|
|
799
|
-
exampleValue: '#227D9B'
|
|
1427
|
+
exampleValue: '#227D9B',
|
|
1428
|
+
usageGuidelines: {
|
|
1429
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1430
|
+
cssProperties: ['background-color']
|
|
1431
|
+
}
|
|
800
1432
|
}, {
|
|
801
1433
|
name: 'color.background.accent.teal.bolder.hovered',
|
|
802
1434
|
path: ['color', 'background', 'accent', 'teal', 'bolder', 'hovered'],
|
|
803
1435
|
description: 'Hovered state of color.background.accent.teal.bolder.',
|
|
804
|
-
exampleValue: '#206A83'
|
|
1436
|
+
exampleValue: '#206A83',
|
|
1437
|
+
usageGuidelines: {
|
|
1438
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1439
|
+
cssProperties: ['background-color']
|
|
1440
|
+
}
|
|
805
1441
|
}, {
|
|
806
1442
|
name: 'color.background.accent.teal.bolder.pressed',
|
|
807
1443
|
path: ['color', 'background', 'accent', 'teal', 'bolder', 'pressed'],
|
|
808
1444
|
description: 'Pressed state of color.background.accent.teal.bolder.',
|
|
809
|
-
exampleValue: '#1A5265'
|
|
1445
|
+
exampleValue: '#1A5265',
|
|
1446
|
+
usageGuidelines: {
|
|
1447
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1448
|
+
cssProperties: ['background-color']
|
|
1449
|
+
}
|
|
810
1450
|
}, {
|
|
811
1451
|
name: 'color.background.accent.blue.subtlest',
|
|
812
1452
|
path: ['color', 'background', 'accent', 'blue', 'subtlest', '[default]'],
|
|
813
1453
|
description: 'Use for blue backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
|
|
814
|
-
exampleValue: '#E9F2FE'
|
|
1454
|
+
exampleValue: '#E9F2FE',
|
|
1455
|
+
usageGuidelines: {
|
|
1456
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1457
|
+
cssProperties: ['background-color']
|
|
1458
|
+
}
|
|
815
1459
|
}, {
|
|
816
1460
|
name: 'color.background.accent.blue.subtlest.hovered',
|
|
817
1461
|
path: ['color', 'background', 'accent', 'blue', 'subtlest', 'hovered'],
|
|
818
1462
|
description: 'Hovered state of color.background.accent.blue.subtlest.',
|
|
819
|
-
exampleValue: '#CFE1FD'
|
|
1463
|
+
exampleValue: '#CFE1FD',
|
|
1464
|
+
usageGuidelines: {
|
|
1465
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1466
|
+
cssProperties: ['background-color']
|
|
1467
|
+
}
|
|
820
1468
|
}, {
|
|
821
1469
|
name: 'color.background.accent.blue.subtlest.pressed',
|
|
822
1470
|
path: ['color', 'background', 'accent', 'blue', 'subtlest', 'pressed'],
|
|
823
1471
|
description: 'Pressed state of color.background.accent.blue.subtlest.',
|
|
824
|
-
exampleValue: '#ADCBFB'
|
|
1472
|
+
exampleValue: '#ADCBFB',
|
|
1473
|
+
usageGuidelines: {
|
|
1474
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1475
|
+
cssProperties: ['background-color']
|
|
1476
|
+
}
|
|
825
1477
|
}, {
|
|
826
1478
|
name: 'color.background.accent.blue.subtler',
|
|
827
1479
|
path: ['color', 'background', 'accent', 'blue', 'subtler', '[default]'],
|
|
828
1480
|
description: 'Use for blue backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
829
|
-
exampleValue: '#CFE1FD'
|
|
1481
|
+
exampleValue: '#CFE1FD',
|
|
1482
|
+
usageGuidelines: {
|
|
1483
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1484
|
+
cssProperties: ['background-color']
|
|
1485
|
+
}
|
|
830
1486
|
}, {
|
|
831
1487
|
name: 'color.background.accent.blue.subtler.hovered',
|
|
832
1488
|
path: ['color', 'background', 'accent', 'blue', 'subtler', 'hovered'],
|
|
833
1489
|
description: 'Hovered state of color.background.accent.blue.subtler.',
|
|
834
|
-
exampleValue: '#ADCBFB'
|
|
1490
|
+
exampleValue: '#ADCBFB',
|
|
1491
|
+
usageGuidelines: {
|
|
1492
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1493
|
+
cssProperties: ['background-color']
|
|
1494
|
+
}
|
|
835
1495
|
}, {
|
|
836
1496
|
name: 'color.background.accent.blue.subtler.pressed',
|
|
837
1497
|
path: ['color', 'background', 'accent', 'blue', 'subtler', 'pressed'],
|
|
838
1498
|
description: 'Pressed state of color.background.accent.blue.subtler.',
|
|
839
|
-
exampleValue: '#8FB8F6'
|
|
1499
|
+
exampleValue: '#8FB8F6',
|
|
1500
|
+
usageGuidelines: {
|
|
1501
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1502
|
+
cssProperties: ['background-color']
|
|
1503
|
+
}
|
|
840
1504
|
}, {
|
|
841
1505
|
name: 'color.background.accent.blue.subtle',
|
|
842
1506
|
path: ['color', 'background', 'accent', 'blue', 'subtle', '[default]'],
|
|
843
1507
|
description: 'Use for vibrant blue backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
844
|
-
exampleValue: '#669DF1'
|
|
1508
|
+
exampleValue: '#669DF1',
|
|
1509
|
+
usageGuidelines: {
|
|
1510
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1511
|
+
cssProperties: ['background-color']
|
|
1512
|
+
}
|
|
845
1513
|
}, {
|
|
846
1514
|
name: 'color.background.accent.blue.subtle.hovered',
|
|
847
1515
|
path: ['color', 'background', 'accent', 'blue', 'subtle', 'hovered'],
|
|
848
1516
|
description: 'Hovered state of color.background.accent.blue.subtle.',
|
|
849
|
-
exampleValue: '#8FB8F6'
|
|
1517
|
+
exampleValue: '#8FB8F6',
|
|
1518
|
+
usageGuidelines: {
|
|
1519
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1520
|
+
cssProperties: ['background-color']
|
|
1521
|
+
}
|
|
850
1522
|
}, {
|
|
851
1523
|
name: 'color.background.accent.blue.subtle.pressed',
|
|
852
1524
|
path: ['color', 'background', 'accent', 'blue', 'subtle', 'pressed'],
|
|
853
1525
|
description: 'Pressed state of color.background.accent.blue.subtle.',
|
|
854
|
-
exampleValue: '#ADCBFB'
|
|
1526
|
+
exampleValue: '#ADCBFB',
|
|
1527
|
+
usageGuidelines: {
|
|
1528
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1529
|
+
cssProperties: ['background-color']
|
|
1530
|
+
}
|
|
855
1531
|
}, {
|
|
856
1532
|
name: 'color.background.accent.blue.bolder',
|
|
857
1533
|
path: ['color', 'background', 'accent', 'blue', 'bolder', '[default]'],
|
|
858
1534
|
description: 'Use for blue backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
|
|
859
|
-
exampleValue: '#1868DB'
|
|
1535
|
+
exampleValue: '#1868DB',
|
|
1536
|
+
usageGuidelines: {
|
|
1537
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1538
|
+
cssProperties: ['background-color']
|
|
1539
|
+
}
|
|
860
1540
|
}, {
|
|
861
1541
|
name: 'color.background.accent.blue.bolder.hovered',
|
|
862
1542
|
path: ['color', 'background', 'accent', 'blue', 'bolder', 'hovered'],
|
|
863
1543
|
description: 'Hovered state of color.background.accent.blue.bolder.',
|
|
864
|
-
exampleValue: '#1558BC'
|
|
1544
|
+
exampleValue: '#1558BC',
|
|
1545
|
+
usageGuidelines: {
|
|
1546
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1547
|
+
cssProperties: ['background-color']
|
|
1548
|
+
}
|
|
865
1549
|
}, {
|
|
866
1550
|
name: 'color.background.accent.blue.bolder.pressed',
|
|
867
1551
|
path: ['color', 'background', 'accent', 'blue', 'bolder', 'pressed'],
|
|
868
1552
|
description: 'Pressed state of color.background.accent.blue.bolder.',
|
|
869
|
-
exampleValue: '#144794'
|
|
1553
|
+
exampleValue: '#144794',
|
|
1554
|
+
usageGuidelines: {
|
|
1555
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1556
|
+
cssProperties: ['background-color']
|
|
1557
|
+
}
|
|
870
1558
|
}, {
|
|
871
1559
|
name: 'color.background.accent.purple.subtlest',
|
|
872
1560
|
path: ['color', 'background', 'accent', 'purple', 'subtlest', '[default]'],
|
|
873
1561
|
description: 'Use for purple backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
|
|
874
|
-
exampleValue: '#F8EEFE'
|
|
1562
|
+
exampleValue: '#F8EEFE',
|
|
1563
|
+
usageGuidelines: {
|
|
1564
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1565
|
+
cssProperties: ['background-color']
|
|
1566
|
+
}
|
|
875
1567
|
}, {
|
|
876
1568
|
name: 'color.background.accent.purple.subtlest.hovered',
|
|
877
1569
|
path: ['color', 'background', 'accent', 'purple', 'subtlest', 'hovered'],
|
|
878
1570
|
description: 'Hovered state of color.background.accent.purple.subtlest.',
|
|
879
|
-
exampleValue: '#EED7FC'
|
|
1571
|
+
exampleValue: '#EED7FC',
|
|
1572
|
+
usageGuidelines: {
|
|
1573
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1574
|
+
cssProperties: ['background-color']
|
|
1575
|
+
}
|
|
880
1576
|
}, {
|
|
881
1577
|
name: 'color.background.accent.purple.subtlest.pressed',
|
|
882
1578
|
path: ['color', 'background', 'accent', 'purple', 'subtlest', 'pressed'],
|
|
883
1579
|
description: 'Pressed state of color.background.accent.purple.subtlest.',
|
|
884
|
-
exampleValue: '#E3BDFA'
|
|
1580
|
+
exampleValue: '#E3BDFA',
|
|
1581
|
+
usageGuidelines: {
|
|
1582
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1583
|
+
cssProperties: ['background-color']
|
|
1584
|
+
}
|
|
885
1585
|
}, {
|
|
886
1586
|
name: 'color.background.accent.purple.subtler',
|
|
887
1587
|
path: ['color', 'background', 'accent', 'purple', 'subtler', '[default]'],
|
|
888
1588
|
description: 'Use for purple backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
889
|
-
exampleValue: '#EED7FC'
|
|
1589
|
+
exampleValue: '#EED7FC',
|
|
1590
|
+
usageGuidelines: {
|
|
1591
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1592
|
+
cssProperties: ['background-color']
|
|
1593
|
+
}
|
|
890
1594
|
}, {
|
|
891
1595
|
name: 'color.background.accent.purple.subtler.hovered',
|
|
892
1596
|
path: ['color', 'background', 'accent', 'purple', 'subtler', 'hovered'],
|
|
893
1597
|
description: 'Hovered state of color.background.accent.purple.subtler.',
|
|
894
|
-
exampleValue: '#E3BDFA'
|
|
1598
|
+
exampleValue: '#E3BDFA',
|
|
1599
|
+
usageGuidelines: {
|
|
1600
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1601
|
+
cssProperties: ['background-color']
|
|
1602
|
+
}
|
|
895
1603
|
}, {
|
|
896
1604
|
name: 'color.background.accent.purple.subtler.pressed',
|
|
897
1605
|
path: ['color', 'background', 'accent', 'purple', 'subtler', 'pressed'],
|
|
898
1606
|
description: 'Pressed state of color.background.accent.purple.subtler.',
|
|
899
|
-
exampleValue: '#D8A0F7'
|
|
1607
|
+
exampleValue: '#D8A0F7',
|
|
1608
|
+
usageGuidelines: {
|
|
1609
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1610
|
+
cssProperties: ['background-color']
|
|
1611
|
+
}
|
|
900
1612
|
}, {
|
|
901
1613
|
name: 'color.background.accent.purple.subtle',
|
|
902
1614
|
path: ['color', 'background', 'accent', 'purple', 'subtle', '[default]'],
|
|
903
1615
|
description: 'Use for vibrant purple backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
904
|
-
exampleValue: '#C97CF4'
|
|
1616
|
+
exampleValue: '#C97CF4',
|
|
1617
|
+
usageGuidelines: {
|
|
1618
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1619
|
+
cssProperties: ['background-color']
|
|
1620
|
+
}
|
|
905
1621
|
}, {
|
|
906
1622
|
name: 'color.background.accent.purple.subtle.hovered',
|
|
907
1623
|
path: ['color', 'background', 'accent', 'purple', 'subtle', 'hovered'],
|
|
908
1624
|
description: 'Hovered state of color.background.accent.purple.subtle.',
|
|
909
|
-
exampleValue: '#D8A0F7'
|
|
1625
|
+
exampleValue: '#D8A0F7',
|
|
1626
|
+
usageGuidelines: {
|
|
1627
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1628
|
+
cssProperties: ['background-color']
|
|
1629
|
+
}
|
|
910
1630
|
}, {
|
|
911
1631
|
name: 'color.background.accent.purple.subtle.pressed',
|
|
912
1632
|
path: ['color', 'background', 'accent', 'purple', 'subtle', 'pressed'],
|
|
913
1633
|
description: 'Pressed state of color.background.accent.purple.subtle.',
|
|
914
|
-
exampleValue: '#E3BDFA'
|
|
1634
|
+
exampleValue: '#E3BDFA',
|
|
1635
|
+
usageGuidelines: {
|
|
1636
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1637
|
+
cssProperties: ['background-color']
|
|
1638
|
+
}
|
|
915
1639
|
}, {
|
|
916
1640
|
name: 'color.background.accent.purple.bolder',
|
|
917
1641
|
path: ['color', 'background', 'accent', 'purple', 'bolder', '[default]'],
|
|
918
1642
|
description: 'Use for purple backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
|
|
919
|
-
exampleValue: '#964AC0'
|
|
1643
|
+
exampleValue: '#964AC0',
|
|
1644
|
+
usageGuidelines: {
|
|
1645
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1646
|
+
cssProperties: ['background-color']
|
|
1647
|
+
}
|
|
920
1648
|
}, {
|
|
921
1649
|
name: 'color.background.accent.purple.bolder.hovered',
|
|
922
1650
|
path: ['color', 'background', 'accent', 'purple', 'bolder', 'hovered'],
|
|
923
1651
|
description: 'Hovered state of color.background.accent.purple.bolder.',
|
|
924
|
-
exampleValue: '#803FA5'
|
|
1652
|
+
exampleValue: '#803FA5',
|
|
1653
|
+
usageGuidelines: {
|
|
1654
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1655
|
+
cssProperties: ['background-color']
|
|
1656
|
+
}
|
|
925
1657
|
}, {
|
|
926
1658
|
name: 'color.background.accent.purple.bolder.pressed',
|
|
927
1659
|
path: ['color', 'background', 'accent', 'purple', 'bolder', 'pressed'],
|
|
928
1660
|
description: 'Pressed state of color.background.accent.purple.bolder.',
|
|
929
|
-
exampleValue: '#673286'
|
|
1661
|
+
exampleValue: '#673286',
|
|
1662
|
+
usageGuidelines: {
|
|
1663
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1664
|
+
cssProperties: ['background-color']
|
|
1665
|
+
}
|
|
930
1666
|
}, {
|
|
931
1667
|
name: 'color.background.accent.magenta.subtlest',
|
|
932
1668
|
path: ['color', 'background', 'accent', 'magenta', 'subtlest', '[default]'],
|
|
933
1669
|
description: 'Use for magenta backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
|
|
934
|
-
exampleValue: '#FFECF8'
|
|
1670
|
+
exampleValue: '#FFECF8',
|
|
1671
|
+
usageGuidelines: {
|
|
1672
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1673
|
+
cssProperties: ['background-color']
|
|
1674
|
+
}
|
|
935
1675
|
}, {
|
|
936
1676
|
name: 'color.background.accent.magenta.subtlest.hovered',
|
|
937
1677
|
path: ['color', 'background', 'accent', 'magenta', 'subtlest', 'hovered'],
|
|
938
1678
|
description: 'Hovered state of color.background.accent.magenta.subtlest.',
|
|
939
|
-
exampleValue: '#FDD0EC'
|
|
1679
|
+
exampleValue: '#FDD0EC',
|
|
1680
|
+
usageGuidelines: {
|
|
1681
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1682
|
+
cssProperties: ['background-color']
|
|
1683
|
+
}
|
|
940
1684
|
}, {
|
|
941
1685
|
name: 'color.background.accent.magenta.subtlest.pressed',
|
|
942
1686
|
path: ['color', 'background', 'accent', 'magenta', 'subtlest', 'pressed'],
|
|
943
1687
|
description: 'Pressed state of color.background.accent.magenta.subtlest.',
|
|
944
|
-
exampleValue: '#FCB6E1'
|
|
1688
|
+
exampleValue: '#FCB6E1',
|
|
1689
|
+
usageGuidelines: {
|
|
1690
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1691
|
+
cssProperties: ['background-color']
|
|
1692
|
+
}
|
|
945
1693
|
}, {
|
|
946
1694
|
name: 'color.background.accent.magenta.subtler',
|
|
947
1695
|
path: ['color', 'background', 'accent', 'magenta', 'subtler', '[default]'],
|
|
948
1696
|
description: 'Use for magenta backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
949
|
-
exampleValue: '#FDD0EC'
|
|
1697
|
+
exampleValue: '#FDD0EC',
|
|
1698
|
+
usageGuidelines: {
|
|
1699
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1700
|
+
cssProperties: ['background-color']
|
|
1701
|
+
}
|
|
950
1702
|
}, {
|
|
951
1703
|
name: 'color.background.accent.magenta.subtler.hovered',
|
|
952
1704
|
path: ['color', 'background', 'accent', 'magenta', 'subtler', 'hovered'],
|
|
953
1705
|
description: 'Hovered state of color.background.accent.magenta.subtler.',
|
|
954
|
-
exampleValue: '#FCB6E1'
|
|
1706
|
+
exampleValue: '#FCB6E1',
|
|
1707
|
+
usageGuidelines: {
|
|
1708
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1709
|
+
cssProperties: ['background-color']
|
|
1710
|
+
}
|
|
955
1711
|
}, {
|
|
956
1712
|
name: 'color.background.accent.magenta.subtler.pressed',
|
|
957
1713
|
path: ['color', 'background', 'accent', 'magenta', 'subtler', 'pressed'],
|
|
958
1714
|
description: 'Pressed state of color.background.accent.magenta.subtler.',
|
|
959
|
-
exampleValue: '#F797D2'
|
|
1715
|
+
exampleValue: '#F797D2',
|
|
1716
|
+
usageGuidelines: {
|
|
1717
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1718
|
+
cssProperties: ['background-color']
|
|
1719
|
+
}
|
|
960
1720
|
}, {
|
|
961
1721
|
name: 'color.background.accent.magenta.subtle',
|
|
962
1722
|
path: ['color', 'background', 'accent', 'magenta', 'subtle', '[default]'],
|
|
963
1723
|
description: 'Use for vibrant magenta backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
964
|
-
exampleValue: '#E774BB'
|
|
1724
|
+
exampleValue: '#E774BB',
|
|
1725
|
+
usageGuidelines: {
|
|
1726
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1727
|
+
cssProperties: ['background-color']
|
|
1728
|
+
}
|
|
965
1729
|
}, {
|
|
966
1730
|
name: 'color.background.accent.magenta.subtle.hovered',
|
|
967
1731
|
path: ['color', 'background', 'accent', 'magenta', 'subtle', 'hovered'],
|
|
968
1732
|
description: 'Hovered state of color.background.accent.magenta.subtle.',
|
|
969
|
-
exampleValue: '#F797D2'
|
|
1733
|
+
exampleValue: '#F797D2',
|
|
1734
|
+
usageGuidelines: {
|
|
1735
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1736
|
+
cssProperties: ['background-color']
|
|
1737
|
+
}
|
|
970
1738
|
}, {
|
|
971
1739
|
name: 'color.background.accent.magenta.subtle.pressed',
|
|
972
1740
|
path: ['color', 'background', 'accent', 'magenta', 'subtle', 'pressed'],
|
|
973
1741
|
description: 'Pressed state of color.background.accent.magenta.subtle.',
|
|
974
|
-
exampleValue: '#FCB6E1'
|
|
1742
|
+
exampleValue: '#FCB6E1',
|
|
1743
|
+
usageGuidelines: {
|
|
1744
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1745
|
+
cssProperties: ['background-color']
|
|
1746
|
+
}
|
|
975
1747
|
}, {
|
|
976
1748
|
name: 'color.background.accent.magenta.bolder',
|
|
977
1749
|
path: ['color', 'background', 'accent', 'magenta', 'bolder', '[default]'],
|
|
978
1750
|
description: 'Use for magenta backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
|
|
979
|
-
exampleValue: '#AE4787'
|
|
1751
|
+
exampleValue: '#AE4787',
|
|
1752
|
+
usageGuidelines: {
|
|
1753
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1754
|
+
cssProperties: ['background-color']
|
|
1755
|
+
}
|
|
980
1756
|
}, {
|
|
981
1757
|
name: 'color.background.accent.magenta.bolder.hovered',
|
|
982
1758
|
path: ['color', 'background', 'accent', 'magenta', 'bolder', 'hovered'],
|
|
983
1759
|
description: 'Hovered state of color.background.accent.magenta.bolder.',
|
|
984
|
-
exampleValue: '#943D73'
|
|
1760
|
+
exampleValue: '#943D73',
|
|
1761
|
+
usageGuidelines: {
|
|
1762
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1763
|
+
cssProperties: ['background-color']
|
|
1764
|
+
}
|
|
985
1765
|
}, {
|
|
986
1766
|
name: 'color.background.accent.magenta.bolder.pressed',
|
|
987
1767
|
path: ['color', 'background', 'accent', 'magenta', 'bolder', 'pressed'],
|
|
988
1768
|
description: 'Pressed state of color.background.accent.magenta.bolder.',
|
|
989
|
-
exampleValue: '#77325B'
|
|
1769
|
+
exampleValue: '#77325B',
|
|
1770
|
+
usageGuidelines: {
|
|
1771
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1772
|
+
cssProperties: ['background-color']
|
|
1773
|
+
}
|
|
990
1774
|
}, {
|
|
991
1775
|
name: 'color.background.accent.gray.subtlest',
|
|
992
1776
|
path: ['color', 'background', 'accent', 'gray', 'subtlest', '[default]'],
|
|
993
1777
|
description: 'Use for gray backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
|
|
994
|
-
exampleValue: '#F0F1F2'
|
|
1778
|
+
exampleValue: '#F0F1F2',
|
|
1779
|
+
usageGuidelines: {
|
|
1780
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1781
|
+
cssProperties: ['background-color']
|
|
1782
|
+
}
|
|
995
1783
|
}, {
|
|
996
1784
|
name: 'color.background.accent.gray.subtlest.hovered',
|
|
997
1785
|
path: ['color', 'background', 'accent', 'gray', 'subtlest', 'hovered'],
|
|
998
1786
|
description: 'Hovered state of color.background.accent.gray.subtlest.',
|
|
999
|
-
exampleValue: '#DDDEE1'
|
|
1787
|
+
exampleValue: '#DDDEE1',
|
|
1788
|
+
usageGuidelines: {
|
|
1789
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1790
|
+
cssProperties: ['background-color']
|
|
1791
|
+
}
|
|
1000
1792
|
}, {
|
|
1001
1793
|
name: 'color.background.accent.gray.subtlest.pressed',
|
|
1002
1794
|
path: ['color', 'background', 'accent', 'gray', 'subtlest', 'pressed'],
|
|
1003
1795
|
description: 'Pressed state of color.background.accent.gray.subtlest.',
|
|
1004
|
-
exampleValue: '#B7B9BE'
|
|
1796
|
+
exampleValue: '#B7B9BE',
|
|
1797
|
+
usageGuidelines: {
|
|
1798
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1799
|
+
cssProperties: ['background-color']
|
|
1800
|
+
}
|
|
1005
1801
|
}, {
|
|
1006
1802
|
name: 'color.background.accent.gray.subtler',
|
|
1007
1803
|
path: ['color', 'background', 'accent', 'gray', 'subtler', '[default]'],
|
|
1008
1804
|
description: 'Use for gray backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
1009
|
-
exampleValue: '#DDDEE1'
|
|
1805
|
+
exampleValue: '#DDDEE1',
|
|
1806
|
+
usageGuidelines: {
|
|
1807
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1808
|
+
cssProperties: ['background-color']
|
|
1809
|
+
}
|
|
1010
1810
|
}, {
|
|
1011
1811
|
name: 'color.background.accent.gray.subtler.hovered',
|
|
1012
1812
|
path: ['color', 'background', 'accent', 'gray', 'subtler', 'hovered'],
|
|
1013
1813
|
description: 'Hovered state of color.background.accent.gray.subtler.',
|
|
1014
|
-
exampleValue: '#B7B9BE'
|
|
1814
|
+
exampleValue: '#B7B9BE',
|
|
1815
|
+
usageGuidelines: {
|
|
1816
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1817
|
+
cssProperties: ['background-color']
|
|
1818
|
+
}
|
|
1015
1819
|
}, {
|
|
1016
1820
|
name: 'color.background.accent.gray.subtler.pressed',
|
|
1017
1821
|
path: ['color', 'background', 'accent', 'gray', 'subtler', 'pressed'],
|
|
1018
1822
|
description: 'Pressed state of color.background.accent.gray.subtler.',
|
|
1019
|
-
exampleValue: '#8C8F97'
|
|
1823
|
+
exampleValue: '#8C8F97',
|
|
1824
|
+
usageGuidelines: {
|
|
1825
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1826
|
+
cssProperties: ['background-color']
|
|
1827
|
+
}
|
|
1020
1828
|
}, {
|
|
1021
1829
|
name: 'color.background.accent.gray.subtle',
|
|
1022
1830
|
path: ['color', 'background', 'accent', 'gray', 'subtle', '[default]'],
|
|
1023
1831
|
description: 'Use for vibrant gray backgrounds when there is no meaning tied to the color, such as colored tags.',
|
|
1024
|
-
exampleValue: '#8C8F97'
|
|
1832
|
+
exampleValue: '#8C8F97',
|
|
1833
|
+
usageGuidelines: {
|
|
1834
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1835
|
+
cssProperties: ['background-color']
|
|
1836
|
+
}
|
|
1025
1837
|
}, {
|
|
1026
1838
|
name: 'color.background.accent.gray.subtle.hovered',
|
|
1027
1839
|
path: ['color', 'background', 'accent', 'gray', 'subtle', 'hovered'],
|
|
1028
1840
|
description: 'Hovered state of color.background.accent.gray.subtle.',
|
|
1029
|
-
exampleValue: '#B7B9BE'
|
|
1841
|
+
exampleValue: '#B7B9BE',
|
|
1842
|
+
usageGuidelines: {
|
|
1843
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1844
|
+
cssProperties: ['background-color']
|
|
1845
|
+
}
|
|
1030
1846
|
}, {
|
|
1031
1847
|
name: 'color.background.accent.gray.subtle.pressed',
|
|
1032
1848
|
path: ['color', 'background', 'accent', 'gray', 'subtle', 'pressed'],
|
|
1033
1849
|
description: 'Pressed state of color.background.accent.gray.subtle.',
|
|
1034
|
-
exampleValue: '#DDDEE1'
|
|
1850
|
+
exampleValue: '#DDDEE1',
|
|
1851
|
+
usageGuidelines: {
|
|
1852
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1853
|
+
cssProperties: ['background-color']
|
|
1854
|
+
}
|
|
1035
1855
|
}, {
|
|
1036
1856
|
name: 'color.background.accent.gray.bolder',
|
|
1037
1857
|
path: ['color', 'background', 'accent', 'gray', 'bolder', '[default]'],
|
|
1038
1858
|
description: 'Use for gray backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
|
|
1039
|
-
exampleValue: '#6B6E76'
|
|
1859
|
+
exampleValue: '#6B6E76',
|
|
1860
|
+
usageGuidelines: {
|
|
1861
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1862
|
+
cssProperties: ['background-color']
|
|
1863
|
+
}
|
|
1040
1864
|
}, {
|
|
1041
1865
|
name: 'color.background.accent.gray.bolder.hovered',
|
|
1042
1866
|
path: ['color', 'background', 'accent', 'gray', 'bolder', 'hovered'],
|
|
1043
1867
|
description: 'Hovered state of color.background.accent.gray.bolder.',
|
|
1044
|
-
exampleValue: '#505258'
|
|
1868
|
+
exampleValue: '#505258',
|
|
1869
|
+
usageGuidelines: {
|
|
1870
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1871
|
+
cssProperties: ['background-color']
|
|
1872
|
+
}
|
|
1045
1873
|
}, {
|
|
1046
1874
|
name: 'color.background.accent.gray.bolder.pressed',
|
|
1047
1875
|
path: ['color', 'background', 'accent', 'gray', 'bolder', 'pressed'],
|
|
1048
1876
|
description: 'Pressed state of color.background.accent.gray.subtlest.',
|
|
1049
|
-
exampleValue: '#3B3D42'
|
|
1877
|
+
exampleValue: '#3B3D42',
|
|
1878
|
+
usageGuidelines: {
|
|
1879
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1880
|
+
cssProperties: ['background-color']
|
|
1881
|
+
}
|
|
1050
1882
|
}, {
|
|
1051
1883
|
name: 'color.background.disabled',
|
|
1052
1884
|
path: ['color', 'background', 'disabled'],
|
|
1053
1885
|
description: 'Use for backgrounds of elements in a disabled state.',
|
|
1054
|
-
exampleValue: '#17171708'
|
|
1886
|
+
exampleValue: '#17171708',
|
|
1887
|
+
usageGuidelines: {
|
|
1888
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1889
|
+
cssProperties: ['background-color']
|
|
1890
|
+
}
|
|
1055
1891
|
}, {
|
|
1056
1892
|
name: 'color.background.input',
|
|
1057
1893
|
path: ['color', 'background', 'input', '[default]'],
|
|
1058
1894
|
description: 'Use for background of form UI elements, such as text fields, checkboxes, and radio buttons.',
|
|
1059
|
-
exampleValue: '#FFFFFF'
|
|
1895
|
+
exampleValue: '#FFFFFF',
|
|
1896
|
+
usageGuidelines: {
|
|
1897
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1898
|
+
cssProperties: ['background-color']
|
|
1899
|
+
}
|
|
1060
1900
|
}, {
|
|
1061
1901
|
name: 'color.background.input.hovered',
|
|
1062
1902
|
path: ['color', 'background', 'input', 'hovered'],
|
|
1063
1903
|
description: 'Hovered state for color.background.input',
|
|
1064
|
-
exampleValue: '#F8F8F8'
|
|
1904
|
+
exampleValue: '#F8F8F8',
|
|
1905
|
+
usageGuidelines: {
|
|
1906
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1907
|
+
cssProperties: ['background-color']
|
|
1908
|
+
}
|
|
1065
1909
|
}, {
|
|
1066
1910
|
name: 'color.background.input.pressed',
|
|
1067
1911
|
path: ['color', 'background', 'input', 'pressed'],
|
|
1068
1912
|
description: 'Pressed state for color.background.input',
|
|
1069
|
-
exampleValue: '#FFFFFF'
|
|
1913
|
+
exampleValue: '#FFFFFF',
|
|
1914
|
+
usageGuidelines: {
|
|
1915
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1916
|
+
cssProperties: ['background-color']
|
|
1917
|
+
}
|
|
1070
1918
|
}, {
|
|
1071
1919
|
name: 'color.background.inverse.subtle',
|
|
1072
1920
|
path: ['color', 'background', 'inverse', 'subtle', '[default]'],
|
|
1073
1921
|
description: 'Use for backgrounds of elements on a bold background, such as in the buttons on spotlight cards.',
|
|
1074
|
-
exampleValue: '#00000029'
|
|
1922
|
+
exampleValue: '#00000029',
|
|
1923
|
+
usageGuidelines: {
|
|
1924
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1925
|
+
cssProperties: ['background-color']
|
|
1926
|
+
}
|
|
1075
1927
|
}, {
|
|
1076
1928
|
name: 'color.background.inverse.subtle.hovered',
|
|
1077
1929
|
path: ['color', 'background', 'inverse', 'subtle', 'hovered'],
|
|
1078
1930
|
description: 'Use for the hovered state of color.background.inverse.subtle',
|
|
1079
|
-
exampleValue: '#0000003D'
|
|
1931
|
+
exampleValue: '#0000003D',
|
|
1932
|
+
usageGuidelines: {
|
|
1933
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1934
|
+
cssProperties: ['background-color']
|
|
1935
|
+
}
|
|
1080
1936
|
}, {
|
|
1081
1937
|
name: 'color.background.inverse.subtle.pressed',
|
|
1082
1938
|
path: ['color', 'background', 'inverse', 'subtle', 'pressed'],
|
|
1083
1939
|
description: 'Use for the pressed state of color.background.inverse.subtle',
|
|
1084
|
-
exampleValue: '#00000052'
|
|
1940
|
+
exampleValue: '#00000052',
|
|
1941
|
+
usageGuidelines: {
|
|
1942
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1943
|
+
cssProperties: ['background-color']
|
|
1944
|
+
}
|
|
1085
1945
|
}, {
|
|
1086
1946
|
name: 'color.background.neutral',
|
|
1087
1947
|
path: ['color', 'background', 'neutral', '[default]', '[default]'],
|
|
1088
1948
|
description: 'The default background for neutral elements, such as default buttons.',
|
|
1089
|
-
exampleValue: '#0515240F'
|
|
1949
|
+
exampleValue: '#0515240F',
|
|
1950
|
+
usageGuidelines: {
|
|
1951
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1952
|
+
cssProperties: ['background-color']
|
|
1953
|
+
}
|
|
1090
1954
|
}, {
|
|
1091
1955
|
name: 'color.background.neutral.hovered',
|
|
1092
1956
|
path: ['color', 'background', 'neutral', '[default]', 'hovered'],
|
|
1093
1957
|
description: 'Hovered state for color.background.neutral',
|
|
1094
|
-
exampleValue: '#0B120E24'
|
|
1958
|
+
exampleValue: '#0B120E24',
|
|
1959
|
+
usageGuidelines: {
|
|
1960
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1961
|
+
cssProperties: ['background-color']
|
|
1962
|
+
}
|
|
1095
1963
|
}, {
|
|
1096
1964
|
name: 'color.background.neutral.pressed',
|
|
1097
1965
|
path: ['color', 'background', 'neutral', '[default]', 'pressed'],
|
|
1098
1966
|
description: 'Pressed state for color.background.neutral',
|
|
1099
|
-
exampleValue: '#080F214A'
|
|
1967
|
+
exampleValue: '#080F214A',
|
|
1968
|
+
usageGuidelines: {
|
|
1969
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1970
|
+
cssProperties: ['background-color']
|
|
1971
|
+
}
|
|
1100
1972
|
}, {
|
|
1101
1973
|
name: 'color.background.neutral.subtle',
|
|
1102
1974
|
path: ['color', 'background', 'neutral', 'subtle', '[default]'],
|
|
1103
1975
|
description: 'Use for the background of elements that appear to have no background in a resting state, such as subtle buttons and menu items.',
|
|
1104
|
-
exampleValue: '#00000000'
|
|
1976
|
+
exampleValue: '#00000000',
|
|
1977
|
+
usageGuidelines: {
|
|
1978
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1979
|
+
cssProperties: ['background-color']
|
|
1980
|
+
}
|
|
1105
1981
|
}, {
|
|
1106
1982
|
name: 'color.background.neutral.subtle.hovered',
|
|
1107
1983
|
path: ['color', 'background', 'neutral', 'subtle', 'hovered'],
|
|
1108
1984
|
description: 'Hovered state for color.background.neutral.subtle',
|
|
1109
|
-
exampleValue: '#0515240F'
|
|
1985
|
+
exampleValue: '#0515240F',
|
|
1986
|
+
usageGuidelines: {
|
|
1987
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1988
|
+
cssProperties: ['background-color']
|
|
1989
|
+
}
|
|
1110
1990
|
}, {
|
|
1111
1991
|
name: 'color.background.neutral.subtle.pressed',
|
|
1112
1992
|
path: ['color', 'background', 'neutral', 'subtle', 'pressed'],
|
|
1113
1993
|
description: 'Pressed state for color.background.neutral.subtle',
|
|
1114
|
-
exampleValue: '#0B120E24'
|
|
1994
|
+
exampleValue: '#0B120E24',
|
|
1995
|
+
usageGuidelines: {
|
|
1996
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
1997
|
+
cssProperties: ['background-color']
|
|
1998
|
+
}
|
|
1115
1999
|
}, {
|
|
1116
2000
|
name: 'color.background.neutral.bold',
|
|
1117
2001
|
path: ['color', 'background', 'neutral', 'bold', '[default]'],
|
|
1118
2002
|
description: 'A vibrant background option for neutral UI elements, such as announcement banners.',
|
|
1119
|
-
exampleValue: '#292A2E'
|
|
2003
|
+
exampleValue: '#292A2E',
|
|
2004
|
+
usageGuidelines: {
|
|
2005
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2006
|
+
cssProperties: ['background-color']
|
|
2007
|
+
}
|
|
1120
2008
|
}, {
|
|
1121
2009
|
name: 'color.background.neutral.bold.hovered',
|
|
1122
2010
|
path: ['color', 'background', 'neutral', 'bold', 'hovered'],
|
|
1123
2011
|
description: 'Hovered state of color.background.neutral.bold',
|
|
1124
|
-
exampleValue: '#3B3D42'
|
|
2012
|
+
exampleValue: '#3B3D42',
|
|
2013
|
+
usageGuidelines: {
|
|
2014
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2015
|
+
cssProperties: ['background-color']
|
|
2016
|
+
}
|
|
1125
2017
|
}, {
|
|
1126
2018
|
name: 'color.background.neutral.bold.pressed',
|
|
1127
2019
|
path: ['color', 'background', 'neutral', 'bold', 'pressed'],
|
|
1128
2020
|
description: 'Pressed state of color.background.neutral.bold',
|
|
1129
|
-
exampleValue: '#505258'
|
|
2021
|
+
exampleValue: '#505258',
|
|
2022
|
+
usageGuidelines: {
|
|
2023
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2024
|
+
cssProperties: ['background-color']
|
|
2025
|
+
}
|
|
1130
2026
|
}, {
|
|
1131
2027
|
name: 'color.background.selected',
|
|
1132
2028
|
path: ['color', 'background', 'selected', '[default]', '[default]'],
|
|
1133
2029
|
description: 'Use for the background of elements in a selected state, such as in opened dropdown buttons.',
|
|
1134
|
-
exampleValue: '#E9F2FE'
|
|
2030
|
+
exampleValue: '#E9F2FE',
|
|
2031
|
+
usageGuidelines: {
|
|
2032
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2033
|
+
cssProperties: ['background-color']
|
|
2034
|
+
}
|
|
1135
2035
|
}, {
|
|
1136
2036
|
name: 'color.background.selected.hovered',
|
|
1137
2037
|
path: ['color', 'background', 'selected', '[default]', 'hovered'],
|
|
1138
2038
|
description: 'Hovered state for color.background.selected',
|
|
1139
|
-
exampleValue: '#CFE1FD'
|
|
2039
|
+
exampleValue: '#CFE1FD',
|
|
2040
|
+
usageGuidelines: {
|
|
2041
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2042
|
+
cssProperties: ['background-color']
|
|
2043
|
+
}
|
|
1140
2044
|
}, {
|
|
1141
2045
|
name: 'color.background.selected.pressed',
|
|
1142
2046
|
path: ['color', 'background', 'selected', '[default]', 'pressed'],
|
|
1143
2047
|
description: 'Pressed state for color.background.selected',
|
|
1144
|
-
exampleValue: '#8FB8F6'
|
|
2048
|
+
exampleValue: '#8FB8F6',
|
|
2049
|
+
usageGuidelines: {
|
|
2050
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2051
|
+
cssProperties: ['background-color']
|
|
2052
|
+
}
|
|
1145
2053
|
}, {
|
|
1146
2054
|
name: 'color.background.selected.bold',
|
|
1147
2055
|
path: ['color', 'background', 'selected', 'bold', '[default]'],
|
|
1148
2056
|
description: 'Use for the backgrounds of elements in a selected state, such as checkboxes and radio buttons.',
|
|
1149
|
-
exampleValue: '#1868DB'
|
|
2057
|
+
exampleValue: '#1868DB',
|
|
2058
|
+
usageGuidelines: {
|
|
2059
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2060
|
+
cssProperties: ['background-color']
|
|
2061
|
+
}
|
|
1150
2062
|
}, {
|
|
1151
2063
|
name: 'color.background.selected.bold.hovered',
|
|
1152
2064
|
path: ['color', 'background', 'selected', 'bold', 'hovered'],
|
|
1153
2065
|
description: 'Hovered state of color.background.selected.bold',
|
|
1154
|
-
exampleValue: '#1558BC'
|
|
2066
|
+
exampleValue: '#1558BC',
|
|
2067
|
+
usageGuidelines: {
|
|
2068
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2069
|
+
cssProperties: ['background-color']
|
|
2070
|
+
}
|
|
1155
2071
|
}, {
|
|
1156
2072
|
name: 'color.background.selected.bold.pressed',
|
|
1157
2073
|
path: ['color', 'background', 'selected', 'bold', 'pressed'],
|
|
1158
2074
|
description: 'Pressed state of color.background.selected.bold',
|
|
1159
|
-
exampleValue: '#123263'
|
|
2075
|
+
exampleValue: '#123263',
|
|
2076
|
+
usageGuidelines: {
|
|
2077
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2078
|
+
cssProperties: ['background-color']
|
|
2079
|
+
}
|
|
1160
2080
|
}, {
|
|
1161
2081
|
name: 'color.background.brand.subtlest',
|
|
1162
2082
|
path: ['color', 'background', 'brand', 'subtlest', '[default]'],
|
|
1163
2083
|
description: 'Use for the background of elements used to reinforce our brand, but with less emphasis.',
|
|
1164
|
-
exampleValue: '#E9F2FE'
|
|
2084
|
+
exampleValue: '#E9F2FE',
|
|
2085
|
+
usageGuidelines: {
|
|
2086
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2087
|
+
cssProperties: ['background-color']
|
|
2088
|
+
}
|
|
1165
2089
|
}, {
|
|
1166
2090
|
name: 'color.background.brand.subtlest.hovered',
|
|
1167
2091
|
path: ['color', 'background', 'brand', 'subtlest', 'hovered'],
|
|
1168
2092
|
description: 'Hovered state of color.background.brand.subtlest.',
|
|
1169
|
-
exampleValue: '#CFE1FD'
|
|
2093
|
+
exampleValue: '#CFE1FD',
|
|
2094
|
+
usageGuidelines: {
|
|
2095
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2096
|
+
cssProperties: ['background-color']
|
|
2097
|
+
}
|
|
1170
2098
|
}, {
|
|
1171
2099
|
name: 'color.background.brand.subtlest.pressed',
|
|
1172
2100
|
path: ['color', 'background', 'brand', 'subtlest', 'pressed'],
|
|
1173
2101
|
description: 'Pressed state of color.background.brand.subtlest',
|
|
1174
|
-
exampleValue: '#ADCBFB'
|
|
2102
|
+
exampleValue: '#ADCBFB',
|
|
2103
|
+
usageGuidelines: {
|
|
2104
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2105
|
+
cssProperties: ['background-color']
|
|
2106
|
+
}
|
|
1175
2107
|
}, {
|
|
1176
2108
|
name: 'color.background.brand.bold',
|
|
1177
2109
|
path: ['color', 'background', 'brand', 'bold', '[default]'],
|
|
1178
2110
|
description: 'Use for the background of elements used to reinforce our brand, but with more emphasis.',
|
|
1179
|
-
exampleValue: '#1868DB'
|
|
2111
|
+
exampleValue: '#1868DB',
|
|
2112
|
+
usageGuidelines: {
|
|
2113
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2114
|
+
cssProperties: ['background-color']
|
|
2115
|
+
}
|
|
1180
2116
|
}, {
|
|
1181
2117
|
name: 'color.background.brand.bold.hovered',
|
|
1182
2118
|
path: ['color', 'background', 'brand', 'bold', 'hovered'],
|
|
1183
2119
|
description: 'Hovered state of color.background.brand.bold.',
|
|
1184
|
-
exampleValue: '#1558BC'
|
|
2120
|
+
exampleValue: '#1558BC',
|
|
2121
|
+
usageGuidelines: {
|
|
2122
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2123
|
+
cssProperties: ['background-color']
|
|
2124
|
+
}
|
|
1185
2125
|
}, {
|
|
1186
2126
|
name: 'color.background.brand.bold.pressed',
|
|
1187
2127
|
path: ['color', 'background', 'brand', 'bold', 'pressed'],
|
|
1188
2128
|
description: 'Pressed state of color.background.brand.bold.',
|
|
1189
|
-
exampleValue: '#144794'
|
|
2129
|
+
exampleValue: '#144794',
|
|
2130
|
+
usageGuidelines: {
|
|
2131
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2132
|
+
cssProperties: ['background-color']
|
|
2133
|
+
}
|
|
1190
2134
|
}, {
|
|
1191
2135
|
name: 'color.background.brand.boldest',
|
|
1192
2136
|
path: ['color', 'background', 'brand', 'boldest', '[default]'],
|
|
1193
2137
|
description: 'Use for the background of elements used to reinforce our brand, that need to stand out a lot.',
|
|
1194
|
-
exampleValue: '#1C2B42'
|
|
2138
|
+
exampleValue: '#1C2B42',
|
|
2139
|
+
usageGuidelines: {
|
|
2140
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2141
|
+
cssProperties: ['background-color']
|
|
2142
|
+
}
|
|
1195
2143
|
}, {
|
|
1196
2144
|
name: 'color.background.brand.boldest.hovered',
|
|
1197
2145
|
path: ['color', 'background', 'brand', 'boldest', 'hovered'],
|
|
1198
2146
|
description: 'Hovered state of color.background.brand.boldest.',
|
|
1199
|
-
exampleValue: '#123263'
|
|
2147
|
+
exampleValue: '#123263',
|
|
2148
|
+
usageGuidelines: {
|
|
2149
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2150
|
+
cssProperties: ['background-color']
|
|
2151
|
+
}
|
|
1200
2152
|
}, {
|
|
1201
2153
|
name: 'color.background.brand.boldest.pressed',
|
|
1202
2154
|
path: ['color', 'background', 'brand', 'boldest', 'pressed'],
|
|
1203
2155
|
description: 'Pressed state of color.background.brand.boldest.',
|
|
1204
|
-
exampleValue: '#144794'
|
|
2156
|
+
exampleValue: '#144794',
|
|
2157
|
+
usageGuidelines: {
|
|
2158
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2159
|
+
cssProperties: ['background-color']
|
|
2160
|
+
}
|
|
1205
2161
|
}, {
|
|
1206
2162
|
name: 'color.background.danger',
|
|
1207
2163
|
path: ['color', 'background', 'danger', '[default]', '[default]'],
|
|
1208
2164
|
description: 'Use for backgrounds communicating critical information, such in error section messages.',
|
|
1209
|
-
exampleValue: '#FFECEB'
|
|
2165
|
+
exampleValue: '#FFECEB',
|
|
2166
|
+
usageGuidelines: {
|
|
2167
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2168
|
+
cssProperties: ['background-color']
|
|
2169
|
+
}
|
|
1210
2170
|
}, {
|
|
1211
2171
|
name: 'color.background.danger.hovered',
|
|
1212
2172
|
path: ['color', 'background', 'danger', '[default]', 'hovered'],
|
|
1213
2173
|
description: 'Hovered state for color.background.danger',
|
|
1214
|
-
exampleValue: '#FFD5D2'
|
|
2174
|
+
exampleValue: '#FFD5D2',
|
|
2175
|
+
usageGuidelines: {
|
|
2176
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2177
|
+
cssProperties: ['background-color']
|
|
2178
|
+
}
|
|
1215
2179
|
}, {
|
|
1216
2180
|
name: 'color.background.danger.pressed',
|
|
1217
2181
|
path: ['color', 'background', 'danger', '[default]', 'pressed'],
|
|
1218
2182
|
description: 'Pressed state for color.background.danger',
|
|
1219
|
-
exampleValue: '#FFB8B2'
|
|
2183
|
+
exampleValue: '#FFB8B2',
|
|
2184
|
+
usageGuidelines: {
|
|
2185
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2186
|
+
cssProperties: ['background-color']
|
|
2187
|
+
}
|
|
1220
2188
|
}, {
|
|
1221
2189
|
name: 'color.background.danger.subtler',
|
|
1222
2190
|
path: ['color', 'background', 'danger', 'subtler', '[default]'],
|
|
1223
2191
|
description: 'Use for backgrounds of danger lozenges and badges to ensure accessibility and desired visual appearance.',
|
|
1224
|
-
exampleValue: '#FFD5D2'
|
|
2192
|
+
exampleValue: '#FFD5D2',
|
|
2193
|
+
usageGuidelines: {
|
|
2194
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2195
|
+
cssProperties: ['background-color']
|
|
2196
|
+
}
|
|
1225
2197
|
}, {
|
|
1226
2198
|
name: 'color.background.danger.subtler.hovered',
|
|
1227
2199
|
path: ['color', 'background', 'danger', 'subtler', 'hovered'],
|
|
1228
2200
|
description: 'Hovered state of color.background.danger.subtler',
|
|
1229
|
-
exampleValue: '#FFB8B2'
|
|
2201
|
+
exampleValue: '#FFB8B2',
|
|
2202
|
+
usageGuidelines: {
|
|
2203
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2204
|
+
cssProperties: ['background-color']
|
|
2205
|
+
}
|
|
1230
2206
|
}, {
|
|
1231
2207
|
name: 'color.background.danger.subtler.pressed',
|
|
1232
2208
|
path: ['color', 'background', 'danger', 'subtler', 'pressed'],
|
|
1233
2209
|
description: 'Pressed state of color.background.danger.subtler',
|
|
1234
|
-
exampleValue: '#FD9891'
|
|
2210
|
+
exampleValue: '#FD9891',
|
|
2211
|
+
usageGuidelines: {
|
|
2212
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2213
|
+
cssProperties: ['background-color']
|
|
2214
|
+
}
|
|
1235
2215
|
}, {
|
|
1236
2216
|
name: 'color.background.danger.bold',
|
|
1237
2217
|
path: ['color', 'background', 'danger', 'bold', '[default]'],
|
|
1238
2218
|
description: 'A vibrant background option for communicating critical information, such as in danger buttons and error banners.',
|
|
1239
|
-
exampleValue: '#C9372C'
|
|
2219
|
+
exampleValue: '#C9372C',
|
|
2220
|
+
usageGuidelines: {
|
|
2221
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2222
|
+
cssProperties: ['background-color']
|
|
2223
|
+
}
|
|
1240
2224
|
}, {
|
|
1241
2225
|
name: 'color.background.danger.bold.hovered',
|
|
1242
2226
|
path: ['color', 'background', 'danger', 'bold', 'hovered'],
|
|
1243
2227
|
description: 'Hovered state of color.background.danger.bold',
|
|
1244
|
-
exampleValue: '#AE2E24'
|
|
2228
|
+
exampleValue: '#AE2E24',
|
|
2229
|
+
usageGuidelines: {
|
|
2230
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2231
|
+
cssProperties: ['background-color']
|
|
2232
|
+
}
|
|
1245
2233
|
}, {
|
|
1246
2234
|
name: 'color.background.danger.bold.pressed',
|
|
1247
2235
|
path: ['color', 'background', 'danger', 'bold', 'pressed'],
|
|
1248
2236
|
description: 'Pressed state of color.background.danger.bold',
|
|
1249
|
-
exampleValue: '#872821'
|
|
2237
|
+
exampleValue: '#872821',
|
|
2238
|
+
usageGuidelines: {
|
|
2239
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2240
|
+
cssProperties: ['background-color']
|
|
2241
|
+
}
|
|
1250
2242
|
}, {
|
|
1251
2243
|
name: 'color.background.warning',
|
|
1252
2244
|
path: ['color', 'background', 'warning', '[default]', '[default]'],
|
|
1253
2245
|
description: 'Use for backgrounds communicating caution, such as in warning section messages.',
|
|
1254
|
-
exampleValue: '#FFF5DB'
|
|
2246
|
+
exampleValue: '#FFF5DB',
|
|
2247
|
+
usageGuidelines: {
|
|
2248
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2249
|
+
cssProperties: ['background-color']
|
|
2250
|
+
}
|
|
1255
2251
|
}, {
|
|
1256
2252
|
name: 'color.background.warning.hovered',
|
|
1257
2253
|
path: ['color', 'background', 'warning', '[default]', 'hovered'],
|
|
1258
2254
|
description: 'Hovered state for color.background.warning',
|
|
1259
|
-
exampleValue: '#FCE4A6'
|
|
2255
|
+
exampleValue: '#FCE4A6',
|
|
2256
|
+
usageGuidelines: {
|
|
2257
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2258
|
+
cssProperties: ['background-color']
|
|
2259
|
+
}
|
|
1260
2260
|
}, {
|
|
1261
2261
|
name: 'color.background.warning.pressed',
|
|
1262
2262
|
path: ['color', 'background', 'warning', '[default]', 'pressed'],
|
|
1263
2263
|
description: 'Pressed state for color.background.warning',
|
|
1264
|
-
exampleValue: '#FBD779'
|
|
2264
|
+
exampleValue: '#FBD779',
|
|
2265
|
+
usageGuidelines: {
|
|
2266
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2267
|
+
cssProperties: ['background-color']
|
|
2268
|
+
}
|
|
1265
2269
|
}, {
|
|
1266
2270
|
name: 'color.background.warning.subtler',
|
|
1267
2271
|
path: ['color', 'background', 'warning', 'subtler', '[default]'],
|
|
1268
2272
|
description: 'Use for backgrounds of warning lozenges and badges to ensure accessibility and desired visual appearance.',
|
|
1269
|
-
exampleValue: '#FCE4A6'
|
|
2273
|
+
exampleValue: '#FCE4A6',
|
|
2274
|
+
usageGuidelines: {
|
|
2275
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2276
|
+
cssProperties: ['background-color']
|
|
2277
|
+
}
|
|
1270
2278
|
}, {
|
|
1271
2279
|
name: 'color.background.warning.subtler.hovered',
|
|
1272
2280
|
path: ['color', 'background', 'warning', 'subtler', 'hovered'],
|
|
1273
2281
|
description: 'Hovered state of color.background.warning.subtler',
|
|
1274
|
-
exampleValue: '#FBD779'
|
|
2282
|
+
exampleValue: '#FBD779',
|
|
2283
|
+
usageGuidelines: {
|
|
2284
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2285
|
+
cssProperties: ['background-color']
|
|
2286
|
+
}
|
|
1275
2287
|
}, {
|
|
1276
2288
|
name: 'color.background.warning.subtler.pressed',
|
|
1277
2289
|
path: ['color', 'background', 'warning', 'subtler', 'pressed'],
|
|
1278
2290
|
description: 'Pressed state of color.background.warning.subtler',
|
|
1279
|
-
exampleValue: '#FBC828'
|
|
2291
|
+
exampleValue: '#FBC828',
|
|
2292
|
+
usageGuidelines: {
|
|
2293
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2294
|
+
cssProperties: ['background-color']
|
|
2295
|
+
}
|
|
1280
2296
|
}, {
|
|
1281
2297
|
name: 'color.background.warning.bold',
|
|
1282
2298
|
path: ['color', 'background', 'warning', 'bold', '[default]'],
|
|
1283
2299
|
description: 'A vibrant background option for communicating caution, such as in warning buttons and warning banners.',
|
|
1284
|
-
exampleValue: '#FBC828'
|
|
2300
|
+
exampleValue: '#FBC828',
|
|
2301
|
+
usageGuidelines: {
|
|
2302
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2303
|
+
cssProperties: ['background-color']
|
|
2304
|
+
}
|
|
1285
2305
|
}, {
|
|
1286
2306
|
name: 'color.background.warning.bold.hovered',
|
|
1287
2307
|
path: ['color', 'background', 'warning', 'bold', 'hovered'],
|
|
1288
2308
|
description: 'Hovered state of color.background.warning.bold',
|
|
1289
|
-
exampleValue: '#FCA700'
|
|
2309
|
+
exampleValue: '#FCA700',
|
|
2310
|
+
usageGuidelines: {
|
|
2311
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2312
|
+
cssProperties: ['background-color']
|
|
2313
|
+
}
|
|
1290
2314
|
}, {
|
|
1291
2315
|
name: 'color.background.warning.bold.pressed',
|
|
1292
2316
|
path: ['color', 'background', 'warning', 'bold', 'pressed'],
|
|
1293
2317
|
description: 'Pressed state of color.background.warning.bold',
|
|
1294
|
-
exampleValue: '#F68909'
|
|
2318
|
+
exampleValue: '#F68909',
|
|
2319
|
+
usageGuidelines: {
|
|
2320
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2321
|
+
cssProperties: ['background-color']
|
|
2322
|
+
}
|
|
1295
2323
|
}, {
|
|
1296
2324
|
name: 'color.background.success',
|
|
1297
2325
|
path: ['color', 'background', 'success', '[default]', '[default]'],
|
|
1298
2326
|
description: 'Use for backgrounds communicating a favorable outcome, such as in success section messages.',
|
|
1299
|
-
exampleValue: '#EFFFD6'
|
|
2327
|
+
exampleValue: '#EFFFD6',
|
|
2328
|
+
usageGuidelines: {
|
|
2329
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2330
|
+
cssProperties: ['background-color']
|
|
2331
|
+
}
|
|
1300
2332
|
}, {
|
|
1301
2333
|
name: 'color.background.success.hovered',
|
|
1302
2334
|
path: ['color', 'background', 'success', '[default]', 'hovered'],
|
|
1303
2335
|
description: 'Hovered state for color.background.success',
|
|
1304
|
-
exampleValue: '#D3F1A7'
|
|
2336
|
+
exampleValue: '#D3F1A7',
|
|
2337
|
+
usageGuidelines: {
|
|
2338
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2339
|
+
cssProperties: ['background-color']
|
|
2340
|
+
}
|
|
1305
2341
|
}, {
|
|
1306
2342
|
name: 'color.background.success.pressed',
|
|
1307
2343
|
path: ['color', 'background', 'success', '[default]', 'pressed'],
|
|
1308
2344
|
description: 'Pressed state for color.background.success',
|
|
1309
|
-
exampleValue: '#BDE97C'
|
|
2345
|
+
exampleValue: '#BDE97C',
|
|
2346
|
+
usageGuidelines: {
|
|
2347
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2348
|
+
cssProperties: ['background-color']
|
|
2349
|
+
}
|
|
1310
2350
|
}, {
|
|
1311
2351
|
name: 'color.background.success.subtler',
|
|
1312
2352
|
path: ['color', 'background', 'success', 'subtler', '[default]'],
|
|
1313
2353
|
description: 'Use for backgrounds of success lozenges and badges to ensure accessibility and desired visual appearance.',
|
|
1314
|
-
exampleValue: '#D3F1A7'
|
|
2354
|
+
exampleValue: '#D3F1A7',
|
|
2355
|
+
usageGuidelines: {
|
|
2356
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2357
|
+
cssProperties: ['background-color']
|
|
2358
|
+
}
|
|
1315
2359
|
}, {
|
|
1316
2360
|
name: 'color.background.success.subtler.hovered',
|
|
1317
2361
|
path: ['color', 'background', 'success', 'subtler', 'hovered'],
|
|
1318
2362
|
description: 'Hovered state of color.background.success.subtler',
|
|
1319
|
-
exampleValue: '#BDE97C'
|
|
2363
|
+
exampleValue: '#BDE97C',
|
|
2364
|
+
usageGuidelines: {
|
|
2365
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2366
|
+
cssProperties: ['background-color']
|
|
2367
|
+
}
|
|
1320
2368
|
}, {
|
|
1321
2369
|
name: 'color.background.success.subtler.pressed',
|
|
1322
2370
|
path: ['color', 'background', 'success', 'subtler', 'pressed'],
|
|
1323
2371
|
description: 'Pressed state of color.background.success.subtler',
|
|
1324
|
-
exampleValue: '#B3DF72'
|
|
2372
|
+
exampleValue: '#B3DF72',
|
|
2373
|
+
usageGuidelines: {
|
|
2374
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2375
|
+
cssProperties: ['background-color']
|
|
2376
|
+
}
|
|
1325
2377
|
}, {
|
|
1326
2378
|
name: 'color.background.success.bold',
|
|
1327
2379
|
path: ['color', 'background', 'success', 'bold', '[default]'],
|
|
1328
2380
|
description: 'A vibrant background option for communicating a favorable outcome, such as in checked toggles.',
|
|
1329
|
-
exampleValue: '#5B7F24'
|
|
2381
|
+
exampleValue: '#5B7F24',
|
|
2382
|
+
usageGuidelines: {
|
|
2383
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2384
|
+
cssProperties: ['background-color']
|
|
2385
|
+
}
|
|
1330
2386
|
}, {
|
|
1331
2387
|
name: 'color.background.success.bold.hovered',
|
|
1332
2388
|
path: ['color', 'background', 'success', 'bold', 'hovered'],
|
|
1333
2389
|
description: 'Hovered state of color.background.success.bold',
|
|
1334
|
-
exampleValue: '#4C6B1F'
|
|
2390
|
+
exampleValue: '#4C6B1F',
|
|
2391
|
+
usageGuidelines: {
|
|
2392
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2393
|
+
cssProperties: ['background-color']
|
|
2394
|
+
}
|
|
1335
2395
|
}, {
|
|
1336
2396
|
name: 'color.background.success.bold.pressed',
|
|
1337
2397
|
path: ['color', 'background', 'success', 'bold', 'pressed'],
|
|
1338
2398
|
description: 'Pressed state of color.background.success.bold',
|
|
1339
|
-
exampleValue: '#3F5224'
|
|
2399
|
+
exampleValue: '#3F5224',
|
|
2400
|
+
usageGuidelines: {
|
|
2401
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2402
|
+
cssProperties: ['background-color']
|
|
2403
|
+
}
|
|
1340
2404
|
}, {
|
|
1341
2405
|
name: 'color.background.discovery',
|
|
1342
2406
|
path: ['color', 'background', 'discovery', '[default]', '[default]'],
|
|
1343
2407
|
description: 'Use for backgrounds communicating change or something new, such as in discovery section messages.',
|
|
1344
|
-
exampleValue: '#F8EEFE'
|
|
2408
|
+
exampleValue: '#F8EEFE',
|
|
2409
|
+
usageGuidelines: {
|
|
2410
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2411
|
+
cssProperties: ['background-color']
|
|
2412
|
+
}
|
|
1345
2413
|
}, {
|
|
1346
2414
|
name: 'color.background.discovery.hovered',
|
|
1347
2415
|
path: ['color', 'background', 'discovery', '[default]', 'hovered'],
|
|
1348
2416
|
description: 'Hover state for color.background.discovery',
|
|
1349
|
-
exampleValue: '#EED7FC'
|
|
2417
|
+
exampleValue: '#EED7FC',
|
|
2418
|
+
usageGuidelines: {
|
|
2419
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2420
|
+
cssProperties: ['background-color']
|
|
2421
|
+
}
|
|
1350
2422
|
}, {
|
|
1351
2423
|
name: 'color.background.discovery.pressed',
|
|
1352
2424
|
path: ['color', 'background', 'discovery', '[default]', 'pressed'],
|
|
1353
2425
|
description: 'Pressed state for color.background.discovery',
|
|
1354
|
-
exampleValue: '#E3BDFA'
|
|
2426
|
+
exampleValue: '#E3BDFA',
|
|
2427
|
+
usageGuidelines: {
|
|
2428
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2429
|
+
cssProperties: ['background-color']
|
|
2430
|
+
}
|
|
1355
2431
|
}, {
|
|
1356
2432
|
name: 'color.background.discovery.subtler',
|
|
1357
2433
|
path: ['color', 'background', 'discovery', 'subtler', '[default]'],
|
|
1358
2434
|
description: 'Use for backgrounds of discovery lozenges and badges to ensure accessibility and desired visual appearance.',
|
|
1359
|
-
exampleValue: '#EED7FC'
|
|
2435
|
+
exampleValue: '#EED7FC',
|
|
2436
|
+
usageGuidelines: {
|
|
2437
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2438
|
+
cssProperties: ['background-color']
|
|
2439
|
+
}
|
|
1360
2440
|
}, {
|
|
1361
2441
|
name: 'color.background.discovery.subtler.hovered',
|
|
1362
2442
|
path: ['color', 'background', 'discovery', 'subtler', 'hovered'],
|
|
1363
2443
|
description: 'Hovered state of color.background.discovery.subtler',
|
|
1364
|
-
exampleValue: '#E3BDFA'
|
|
2444
|
+
exampleValue: '#E3BDFA',
|
|
2445
|
+
usageGuidelines: {
|
|
2446
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2447
|
+
cssProperties: ['background-color']
|
|
2448
|
+
}
|
|
1365
2449
|
}, {
|
|
1366
2450
|
name: 'color.background.discovery.subtler.pressed',
|
|
1367
2451
|
path: ['color', 'background', 'discovery', 'subtler', 'pressed'],
|
|
1368
2452
|
description: 'Pressed state of color.background.discovery.subtler',
|
|
1369
|
-
exampleValue: '#D8A0F7'
|
|
2453
|
+
exampleValue: '#D8A0F7',
|
|
2454
|
+
usageGuidelines: {
|
|
2455
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2456
|
+
cssProperties: ['background-color']
|
|
2457
|
+
}
|
|
1370
2458
|
}, {
|
|
1371
2459
|
name: 'color.background.discovery.bold',
|
|
1372
2460
|
path: ['color', 'background', 'discovery', 'bold', '[default]'],
|
|
1373
2461
|
description: 'A vibrant background option communicating change or something new, such as in onboarding spotlights.',
|
|
1374
|
-
exampleValue: '#964AC0'
|
|
2462
|
+
exampleValue: '#964AC0',
|
|
2463
|
+
usageGuidelines: {
|
|
2464
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2465
|
+
cssProperties: ['background-color']
|
|
2466
|
+
}
|
|
1375
2467
|
}, {
|
|
1376
2468
|
name: 'color.background.discovery.bold.hovered',
|
|
1377
2469
|
path: ['color', 'background', 'discovery', 'bold', 'hovered'],
|
|
1378
2470
|
description: 'Hovered state of color.background.discovery.bold',
|
|
1379
|
-
exampleValue: '#803FA5'
|
|
2471
|
+
exampleValue: '#803FA5',
|
|
2472
|
+
usageGuidelines: {
|
|
2473
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2474
|
+
cssProperties: ['background-color']
|
|
2475
|
+
}
|
|
1380
2476
|
}, {
|
|
1381
2477
|
name: 'color.background.discovery.bold.pressed',
|
|
1382
2478
|
path: ['color', 'background', 'discovery', 'bold', 'pressed'],
|
|
1383
2479
|
description: 'Pressed state of color.background.discovery.bold',
|
|
1384
|
-
exampleValue: '#673286'
|
|
2480
|
+
exampleValue: '#673286',
|
|
2481
|
+
usageGuidelines: {
|
|
2482
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2483
|
+
cssProperties: ['background-color']
|
|
2484
|
+
}
|
|
1385
2485
|
}, {
|
|
1386
2486
|
name: 'color.background.information',
|
|
1387
2487
|
path: ['color', 'background', 'information', '[default]', '[default]'],
|
|
1388
2488
|
description: 'Use for backgrounds communicating information or something in-progress, such as in information section messages.',
|
|
1389
|
-
exampleValue: '#E9F2FE'
|
|
2489
|
+
exampleValue: '#E9F2FE',
|
|
2490
|
+
usageGuidelines: {
|
|
2491
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2492
|
+
cssProperties: ['background-color']
|
|
2493
|
+
}
|
|
1390
2494
|
}, {
|
|
1391
2495
|
name: 'color.background.information.hovered',
|
|
1392
2496
|
path: ['color', 'background', 'information', '[default]', 'hovered'],
|
|
1393
2497
|
description: 'Hovered state of color.background.information',
|
|
1394
|
-
exampleValue: '#CFE1FD'
|
|
2498
|
+
exampleValue: '#CFE1FD',
|
|
2499
|
+
usageGuidelines: {
|
|
2500
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2501
|
+
cssProperties: ['background-color']
|
|
2502
|
+
}
|
|
1395
2503
|
}, {
|
|
1396
2504
|
name: 'color.background.information.pressed',
|
|
1397
2505
|
path: ['color', 'background', 'information', '[default]', 'pressed'],
|
|
1398
2506
|
description: 'Pressed state of color.background.information',
|
|
1399
|
-
exampleValue: '#ADCBFB'
|
|
2507
|
+
exampleValue: '#ADCBFB',
|
|
2508
|
+
usageGuidelines: {
|
|
2509
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2510
|
+
cssProperties: ['background-color']
|
|
2511
|
+
}
|
|
1400
2512
|
}, {
|
|
1401
2513
|
name: 'color.background.information.subtler',
|
|
1402
2514
|
path: ['color', 'background', 'information', 'subtler', '[default]'],
|
|
1403
2515
|
description: 'Use for backgrounds of information lozenges and badges to ensure accessibility and desired visual appearance.',
|
|
1404
|
-
exampleValue: '#CFE1FD'
|
|
2516
|
+
exampleValue: '#CFE1FD',
|
|
2517
|
+
usageGuidelines: {
|
|
2518
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2519
|
+
cssProperties: ['background-color']
|
|
2520
|
+
}
|
|
1405
2521
|
}, {
|
|
1406
2522
|
name: 'color.background.information.subtler.hovered',
|
|
1407
2523
|
path: ['color', 'background', 'information', 'subtler', 'hovered'],
|
|
1408
2524
|
description: 'Hovered state of color.background.information.subtler',
|
|
1409
|
-
exampleValue: '#ADCBFB'
|
|
2525
|
+
exampleValue: '#ADCBFB',
|
|
2526
|
+
usageGuidelines: {
|
|
2527
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2528
|
+
cssProperties: ['background-color']
|
|
2529
|
+
}
|
|
1410
2530
|
}, {
|
|
1411
2531
|
name: 'color.background.information.subtler.pressed',
|
|
1412
2532
|
path: ['color', 'background', 'information', 'subtler', 'pressed'],
|
|
1413
2533
|
description: 'Pressed state of color.background.information.subtler',
|
|
1414
|
-
exampleValue: '#8FB8F6'
|
|
2534
|
+
exampleValue: '#8FB8F6',
|
|
2535
|
+
usageGuidelines: {
|
|
2536
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2537
|
+
cssProperties: ['background-color']
|
|
2538
|
+
}
|
|
1415
2539
|
}, {
|
|
1416
2540
|
name: 'color.background.information.bold',
|
|
1417
2541
|
path: ['color', 'background', 'information', 'bold', '[default]'],
|
|
1418
2542
|
description: 'A vibrant background option for communicating information or something in-progress.',
|
|
1419
|
-
exampleValue: '#1868DB'
|
|
2543
|
+
exampleValue: '#1868DB',
|
|
2544
|
+
usageGuidelines: {
|
|
2545
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2546
|
+
cssProperties: ['background-color']
|
|
2547
|
+
}
|
|
1420
2548
|
}, {
|
|
1421
2549
|
name: 'color.background.information.bold.hovered',
|
|
1422
2550
|
path: ['color', 'background', 'information', 'bold', 'hovered'],
|
|
1423
2551
|
description: 'Hovered state of color.background.information.bold',
|
|
1424
|
-
exampleValue: '#1558BC'
|
|
2552
|
+
exampleValue: '#1558BC',
|
|
2553
|
+
usageGuidelines: {
|
|
2554
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2555
|
+
cssProperties: ['background-color']
|
|
2556
|
+
}
|
|
1425
2557
|
}, {
|
|
1426
2558
|
name: 'color.background.information.bold.pressed',
|
|
1427
2559
|
path: ['color', 'background', 'information', 'bold', 'pressed'],
|
|
1428
2560
|
description: 'Pressed state of color.background.information.bold',
|
|
1429
|
-
exampleValue: '#144794'
|
|
2561
|
+
exampleValue: '#144794',
|
|
2562
|
+
usageGuidelines: {
|
|
2563
|
+
usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
|
|
2564
|
+
cssProperties: ['background-color']
|
|
2565
|
+
}
|
|
1430
2566
|
}, {
|
|
1431
2567
|
name: 'color.blanket',
|
|
1432
2568
|
path: ['color', 'blanket', '[default]'],
|
|
1433
2569
|
description: 'Use for the screen overlay that appears with modal dialogs',
|
|
1434
|
-
exampleValue: '#050C1F75'
|
|
2570
|
+
exampleValue: '#050C1F75',
|
|
2571
|
+
usageGuidelines: {
|
|
2572
|
+
usage: 'The color for overlay "blankets" such as modals/dimmers/overlays (e.g. color.blanket)',
|
|
2573
|
+
cssProperties: ['background-color']
|
|
2574
|
+
}
|
|
1435
2575
|
}, {
|
|
1436
2576
|
name: 'color.blanket.selected',
|
|
1437
2577
|
path: ['color', 'blanket', 'selected'],
|
|
1438
2578
|
description: "Use as an overlay to communicate selected states when a simple background color change isn't possible, such as in Editor block elements",
|
|
1439
|
-
exampleValue: '#388BFF14'
|
|
2579
|
+
exampleValue: '#388BFF14',
|
|
2580
|
+
usageGuidelines: {
|
|
2581
|
+
usage: 'The color for overlay "blankets" such as modals/dimmers/overlays (e.g. color.blanket)',
|
|
2582
|
+
cssProperties: ['background-color']
|
|
2583
|
+
}
|
|
1440
2584
|
}, {
|
|
1441
2585
|
name: 'color.blanket.danger',
|
|
1442
2586
|
path: ['color', 'blanket', 'danger'],
|
|
1443
2587
|
description: "Use as an overlay to communicate danger states when a simple background color change isn't possible, such as deletion of Editor block elements",
|
|
1444
|
-
exampleValue: '#EF5C4814'
|
|
2588
|
+
exampleValue: '#EF5C4814',
|
|
2589
|
+
usageGuidelines: {
|
|
2590
|
+
usage: 'The color for overlay "blankets" such as modals/dimmers/overlays (e.g. color.blanket)',
|
|
2591
|
+
cssProperties: ['background-color']
|
|
2592
|
+
}
|
|
1445
2593
|
}, {
|
|
1446
2594
|
name: 'color.interaction.hovered',
|
|
1447
2595
|
path: ['color', 'interaction', 'hovered'],
|
|
1448
2596
|
description: 'Use as a background overlay for elements in a hovered state when their background color cannot change, such as avatars.',
|
|
1449
|
-
exampleValue: '#00000029'
|
|
2597
|
+
exampleValue: '#00000029',
|
|
2598
|
+
usageGuidelines: {
|
|
2599
|
+
usage: 'Transparent interaction states for use over elements when their background color cannot change, such as images and avatars.',
|
|
2600
|
+
cssProperties: ['background-color', 'border-color']
|
|
2601
|
+
}
|
|
1450
2602
|
}, {
|
|
1451
2603
|
name: 'color.interaction.pressed',
|
|
1452
2604
|
path: ['color', 'interaction', 'pressed'],
|
|
1453
2605
|
description: 'Use as a background overlay for elements in a pressed state when their background color cannot change, such as avatars.',
|
|
1454
|
-
exampleValue: '#00000052'
|
|
2606
|
+
exampleValue: '#00000052',
|
|
2607
|
+
usageGuidelines: {
|
|
2608
|
+
usage: 'Transparent interaction states for use over elements when their background color cannot change, such as images and avatars.',
|
|
2609
|
+
cssProperties: ['background-color', 'border-color']
|
|
2610
|
+
}
|
|
1455
2611
|
}, {
|
|
1456
2612
|
name: 'color.skeleton',
|
|
1457
2613
|
path: ['color', 'skeleton', '[default]'],
|
|
1458
2614
|
description: 'Use for skeleton loading states',
|
|
1459
|
-
exampleValue: '#0515240F'
|
|
2615
|
+
exampleValue: '#0515240F',
|
|
2616
|
+
usageGuidelines: {
|
|
2617
|
+
usage: 'The color for skeleton/loading placeholders (e.g. color.skeleton)',
|
|
2618
|
+
cssProperties: ['background-color']
|
|
2619
|
+
}
|
|
1460
2620
|
}, {
|
|
1461
2621
|
name: 'color.skeleton.subtle',
|
|
1462
2622
|
path: ['color', 'skeleton', 'subtle'],
|
|
1463
2623
|
description: 'Use for the pulse or shimmer effect in skeleton loading states',
|
|
1464
|
-
exampleValue: '#17171708'
|
|
2624
|
+
exampleValue: '#17171708',
|
|
2625
|
+
usageGuidelines: {
|
|
2626
|
+
usage: 'The color for skeleton/loading placeholders (e.g. color.skeleton)',
|
|
2627
|
+
cssProperties: ['background-color']
|
|
2628
|
+
}
|
|
1465
2629
|
}, {
|
|
1466
2630
|
name: 'color.chart.categorical.1',
|
|
1467
2631
|
path: ['color', 'chart', 'categorical', '1', '[default]'],
|
|
1468
2632
|
description: 'For data visualisation only. Follow numbered sequence.',
|
|
1469
|
-
exampleValue: '#357DE8'
|
|
2633
|
+
exampleValue: '#357DE8',
|
|
2634
|
+
usageGuidelines: {
|
|
2635
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2636
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2637
|
+
}
|
|
1470
2638
|
}, {
|
|
1471
2639
|
name: 'color.chart.categorical.1.hovered',
|
|
1472
2640
|
path: ['color', 'chart', 'categorical', '1', 'hovered'],
|
|
1473
2641
|
description: 'Hovered state of color.chart.categorical.1.',
|
|
1474
|
-
exampleValue: '#1868DB'
|
|
2642
|
+
exampleValue: '#1868DB',
|
|
2643
|
+
usageGuidelines: {
|
|
2644
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2645
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2646
|
+
}
|
|
1475
2647
|
}, {
|
|
1476
2648
|
name: 'color.chart.categorical.2',
|
|
1477
2649
|
path: ['color', 'chart', 'categorical', '2', '[default]'],
|
|
1478
2650
|
description: 'For data visualisation only. Follow numbered sequence.',
|
|
1479
|
-
exampleValue: '#82B536'
|
|
2651
|
+
exampleValue: '#82B536',
|
|
2652
|
+
usageGuidelines: {
|
|
2653
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2654
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2655
|
+
}
|
|
1480
2656
|
}, {
|
|
1481
2657
|
name: 'color.chart.categorical.2.hovered',
|
|
1482
2658
|
path: ['color', 'chart', 'categorical', '2', 'hovered'],
|
|
1483
2659
|
description: 'Hovered state of color.chart.categorical.2.',
|
|
1484
|
-
exampleValue: '#6A9A23'
|
|
2660
|
+
exampleValue: '#6A9A23',
|
|
2661
|
+
usageGuidelines: {
|
|
2662
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2663
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2664
|
+
}
|
|
1485
2665
|
}, {
|
|
1486
2666
|
name: 'color.chart.categorical.3',
|
|
1487
2667
|
path: ['color', 'chart', 'categorical', '3', '[default]'],
|
|
1488
2668
|
description: 'For data visualisation only. Follow numbered sequence.',
|
|
1489
|
-
exampleValue: '#BF63F3'
|
|
2669
|
+
exampleValue: '#BF63F3',
|
|
2670
|
+
usageGuidelines: {
|
|
2671
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2672
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2673
|
+
}
|
|
1490
2674
|
}, {
|
|
1491
2675
|
name: 'color.chart.categorical.3.hovered',
|
|
1492
2676
|
path: ['color', 'chart', 'categorical', '3', 'hovered'],
|
|
1493
2677
|
description: 'Hovered state of color.chart.categorical.3.',
|
|
1494
|
-
exampleValue: '#AF59E1'
|
|
2678
|
+
exampleValue: '#AF59E1',
|
|
2679
|
+
usageGuidelines: {
|
|
2680
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2681
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2682
|
+
}
|
|
1495
2683
|
}, {
|
|
1496
2684
|
name: 'color.chart.categorical.4',
|
|
1497
2685
|
path: ['color', 'chart', 'categorical', '4', '[default]'],
|
|
1498
2686
|
description: 'For data visualisation only. Follow numbered sequence.',
|
|
1499
|
-
exampleValue: '#F68909'
|
|
2687
|
+
exampleValue: '#F68909',
|
|
2688
|
+
usageGuidelines: {
|
|
2689
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2690
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2691
|
+
}
|
|
1500
2692
|
}, {
|
|
1501
2693
|
name: 'color.chart.categorical.4.hovered',
|
|
1502
2694
|
path: ['color', 'chart', 'categorical', '4', 'hovered'],
|
|
1503
2695
|
description: 'Hovered state of color.chart.categorical.4.',
|
|
1504
|
-
exampleValue: '#E06C00'
|
|
2696
|
+
exampleValue: '#E06C00',
|
|
2697
|
+
usageGuidelines: {
|
|
2698
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2699
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2700
|
+
}
|
|
1505
2701
|
}, {
|
|
1506
2702
|
name: 'color.chart.categorical.5',
|
|
1507
2703
|
path: ['color', 'chart', 'categorical', '5', '[default]'],
|
|
1508
2704
|
description: 'For data visualisation only. Follow numbered sequence.',
|
|
1509
|
-
exampleValue: '#1558BC'
|
|
2705
|
+
exampleValue: '#1558BC',
|
|
2706
|
+
usageGuidelines: {
|
|
2707
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2708
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2709
|
+
}
|
|
1510
2710
|
}, {
|
|
1511
2711
|
name: 'color.chart.categorical.5.hovered',
|
|
1512
2712
|
path: ['color', 'chart', 'categorical', '5', 'hovered'],
|
|
1513
2713
|
description: 'Hovered state of color.chart.categorical.5.',
|
|
1514
|
-
exampleValue: '#123263'
|
|
2714
|
+
exampleValue: '#123263',
|
|
2715
|
+
usageGuidelines: {
|
|
2716
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2717
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2718
|
+
}
|
|
1515
2719
|
}, {
|
|
1516
2720
|
name: 'color.chart.categorical.6',
|
|
1517
2721
|
path: ['color', 'chart', 'categorical', '6', '[default]'],
|
|
1518
2722
|
description: 'For data visualisation only. Follow numbered sequence.',
|
|
1519
|
-
exampleValue: '#964AC0'
|
|
2723
|
+
exampleValue: '#964AC0',
|
|
2724
|
+
usageGuidelines: {
|
|
2725
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2726
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2727
|
+
}
|
|
1520
2728
|
}, {
|
|
1521
2729
|
name: 'color.chart.categorical.6.hovered',
|
|
1522
2730
|
path: ['color', 'chart', 'categorical', '6', 'hovered'],
|
|
1523
2731
|
description: 'Hovered state of color.chart.categorical.6.',
|
|
1524
|
-
exampleValue: '#803FA5'
|
|
2732
|
+
exampleValue: '#803FA5',
|
|
2733
|
+
usageGuidelines: {
|
|
2734
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2735
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2736
|
+
}
|
|
1525
2737
|
}, {
|
|
1526
2738
|
name: 'color.chart.categorical.7',
|
|
1527
2739
|
path: ['color', 'chart', 'categorical', '7', '[default]'],
|
|
1528
2740
|
description: 'For data visualisation only. Follow numbered sequence.',
|
|
1529
|
-
exampleValue: '#42B2D7'
|
|
2741
|
+
exampleValue: '#42B2D7',
|
|
2742
|
+
usageGuidelines: {
|
|
2743
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2744
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2745
|
+
}
|
|
1530
2746
|
}, {
|
|
1531
2747
|
name: 'color.chart.categorical.7.hovered',
|
|
1532
2748
|
path: ['color', 'chart', 'categorical', '7', 'hovered'],
|
|
1533
2749
|
description: 'Hovered state of color.chart.categorical.7.',
|
|
1534
|
-
exampleValue: '#2898BD'
|
|
2750
|
+
exampleValue: '#2898BD',
|
|
2751
|
+
usageGuidelines: {
|
|
2752
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2753
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2754
|
+
}
|
|
1535
2755
|
}, {
|
|
1536
2756
|
name: 'color.chart.categorical.8',
|
|
1537
2757
|
path: ['color', 'chart', 'categorical', '8', '[default]'],
|
|
1538
2758
|
description: 'For data visualisation only. Follow numbered sequence.',
|
|
1539
|
-
exampleValue: '#BD5B00'
|
|
2759
|
+
exampleValue: '#BD5B00',
|
|
2760
|
+
usageGuidelines: {
|
|
2761
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2762
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2763
|
+
}
|
|
1540
2764
|
}, {
|
|
1541
2765
|
name: 'color.chart.categorical.8.hovered',
|
|
1542
2766
|
path: ['color', 'chart', 'categorical', '8', 'hovered'],
|
|
1543
2767
|
description: 'Hovered state of color.chart.categorical.8.',
|
|
1544
|
-
exampleValue: '#7A3B00'
|
|
2768
|
+
exampleValue: '#7A3B00',
|
|
2769
|
+
usageGuidelines: {
|
|
2770
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2771
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2772
|
+
}
|
|
1545
2773
|
}, {
|
|
1546
2774
|
name: 'color.chart.lime.bold',
|
|
1547
2775
|
path: ['color', 'chart', 'lime', 'bold', '[default]'],
|
|
1548
2776
|
description: 'For data visualisation only.',
|
|
1549
|
-
exampleValue: '#6A9A23'
|
|
2777
|
+
exampleValue: '#6A9A23',
|
|
2778
|
+
usageGuidelines: {
|
|
2779
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2780
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2781
|
+
}
|
|
1550
2782
|
}, {
|
|
1551
2783
|
name: 'color.chart.lime.bold.hovered',
|
|
1552
2784
|
path: ['color', 'chart', 'lime', 'bold', 'hovered'],
|
|
1553
2785
|
description: 'Hovered state of color.chart.lime.bold.',
|
|
1554
|
-
exampleValue: '#5B7F24'
|
|
2786
|
+
exampleValue: '#5B7F24',
|
|
2787
|
+
usageGuidelines: {
|
|
2788
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2789
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2790
|
+
}
|
|
1555
2791
|
}, {
|
|
1556
2792
|
name: 'color.chart.lime.bolder',
|
|
1557
2793
|
path: ['color', 'chart', 'lime', 'bolder', '[default]'],
|
|
1558
2794
|
description: 'For data visualisation only.',
|
|
1559
|
-
exampleValue: '#5B7F24'
|
|
2795
|
+
exampleValue: '#5B7F24',
|
|
2796
|
+
usageGuidelines: {
|
|
2797
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2798
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2799
|
+
}
|
|
1560
2800
|
}, {
|
|
1561
2801
|
name: 'color.chart.lime.bolder.hovered',
|
|
1562
2802
|
path: ['color', 'chart', 'lime', 'bolder', 'hovered'],
|
|
1563
2803
|
description: 'Hovered state of color.chart.lime.bolder.',
|
|
1564
|
-
exampleValue: '#4C6B1F'
|
|
2804
|
+
exampleValue: '#4C6B1F',
|
|
2805
|
+
usageGuidelines: {
|
|
2806
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2807
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2808
|
+
}
|
|
1565
2809
|
}, {
|
|
1566
2810
|
name: 'color.chart.lime.boldest',
|
|
1567
2811
|
path: ['color', 'chart', 'lime', 'boldest', '[default]'],
|
|
1568
2812
|
description: 'For data visualisation only.',
|
|
1569
|
-
exampleValue: '#4C6B1F'
|
|
2813
|
+
exampleValue: '#4C6B1F',
|
|
2814
|
+
usageGuidelines: {
|
|
2815
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2816
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2817
|
+
}
|
|
1570
2818
|
}, {
|
|
1571
2819
|
name: 'color.chart.lime.boldest.hovered',
|
|
1572
2820
|
path: ['color', 'chart', 'lime', 'boldest', 'hovered'],
|
|
1573
2821
|
description: 'Hovered state of color.chart.lime.boldest.',
|
|
1574
|
-
exampleValue: '#37471F'
|
|
2822
|
+
exampleValue: '#37471F',
|
|
2823
|
+
usageGuidelines: {
|
|
2824
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2825
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2826
|
+
}
|
|
1575
2827
|
}, {
|
|
1576
2828
|
name: 'color.chart.neutral',
|
|
1577
2829
|
path: ['color', 'chart', 'neutral', '[default]'],
|
|
1578
2830
|
description: "A secondary color for data visualisation or to communicate 'to-do' statues.",
|
|
1579
|
-
exampleValue: '#8C8F97'
|
|
2831
|
+
exampleValue: '#8C8F97',
|
|
2832
|
+
usageGuidelines: {
|
|
2833
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2834
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2835
|
+
}
|
|
1580
2836
|
}, {
|
|
1581
2837
|
name: 'color.chart.neutral.hovered',
|
|
1582
2838
|
path: ['color', 'chart', 'neutral', 'hovered'],
|
|
1583
2839
|
description: 'Hovered state of color.chart.neutral.',
|
|
1584
|
-
exampleValue: '#7D818A'
|
|
2840
|
+
exampleValue: '#7D818A',
|
|
2841
|
+
usageGuidelines: {
|
|
2842
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2843
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2844
|
+
}
|
|
1585
2845
|
}, {
|
|
1586
2846
|
name: 'color.chart.red.bold',
|
|
1587
2847
|
path: ['color', 'chart', 'red', 'bold', '[default]'],
|
|
1588
2848
|
description: 'For data visualisation only.',
|
|
1589
|
-
exampleValue: '#F15B50'
|
|
2849
|
+
exampleValue: '#F15B50',
|
|
2850
|
+
usageGuidelines: {
|
|
2851
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2852
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2853
|
+
}
|
|
1590
2854
|
}, {
|
|
1591
2855
|
name: 'color.chart.red.bold.hovered',
|
|
1592
2856
|
path: ['color', 'chart', 'red', 'bold', 'hovered'],
|
|
1593
2857
|
description: 'Hovered state of color.chart.red.bold.',
|
|
1594
|
-
exampleValue: '#E2483D'
|
|
2858
|
+
exampleValue: '#E2483D',
|
|
2859
|
+
usageGuidelines: {
|
|
2860
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2861
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2862
|
+
}
|
|
1595
2863
|
}, {
|
|
1596
2864
|
name: 'color.chart.red.bolder',
|
|
1597
2865
|
path: ['color', 'chart', 'red', 'bolder', '[default]'],
|
|
1598
2866
|
description: 'For data visualisation only.',
|
|
1599
|
-
exampleValue: '#E2483D'
|
|
2867
|
+
exampleValue: '#E2483D',
|
|
2868
|
+
usageGuidelines: {
|
|
2869
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2870
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2871
|
+
}
|
|
1600
2872
|
}, {
|
|
1601
2873
|
name: 'color.chart.red.bolder.hovered',
|
|
1602
2874
|
path: ['color', 'chart', 'red', 'bolder', 'hovered'],
|
|
1603
2875
|
description: 'Hovered state of color.chart.red.bolder.',
|
|
1604
|
-
exampleValue: '#C9372C'
|
|
2876
|
+
exampleValue: '#C9372C',
|
|
2877
|
+
usageGuidelines: {
|
|
2878
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2879
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2880
|
+
}
|
|
1605
2881
|
}, {
|
|
1606
2882
|
name: 'color.chart.red.boldest',
|
|
1607
2883
|
path: ['color', 'chart', 'red', 'boldest', '[default]'],
|
|
1608
2884
|
description: 'For data visualisation only.',
|
|
1609
|
-
exampleValue: '#AE2E24'
|
|
2885
|
+
exampleValue: '#AE2E24',
|
|
2886
|
+
usageGuidelines: {
|
|
2887
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2888
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2889
|
+
}
|
|
1610
2890
|
}, {
|
|
1611
2891
|
name: 'color.chart.red.boldest.hovered',
|
|
1612
2892
|
path: ['color', 'chart', 'red', 'boldest', 'hovered'],
|
|
1613
2893
|
description: 'Hovered state of color.chart.red.boldest.',
|
|
1614
|
-
exampleValue: '#5D1F1A'
|
|
2894
|
+
exampleValue: '#5D1F1A',
|
|
2895
|
+
usageGuidelines: {
|
|
2896
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2897
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2898
|
+
}
|
|
1615
2899
|
}, {
|
|
1616
2900
|
name: 'color.chart.orange.bold',
|
|
1617
2901
|
path: ['color', 'chart', 'orange', 'bold', '[default]'],
|
|
1618
2902
|
description: 'For data visualisation only.',
|
|
1619
|
-
exampleValue: '#E06C00'
|
|
2903
|
+
exampleValue: '#E06C00',
|
|
2904
|
+
usageGuidelines: {
|
|
2905
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2906
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2907
|
+
}
|
|
1620
2908
|
}, {
|
|
1621
2909
|
name: 'color.chart.orange.bold.hovered',
|
|
1622
2910
|
path: ['color', 'chart', 'orange', 'bold', 'hovered'],
|
|
1623
2911
|
description: 'Hovered state of color.chart.orange.bold.',
|
|
1624
|
-
exampleValue: '#BD5B00'
|
|
2912
|
+
exampleValue: '#BD5B00',
|
|
2913
|
+
usageGuidelines: {
|
|
2914
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2915
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2916
|
+
}
|
|
1625
2917
|
}, {
|
|
1626
2918
|
name: 'color.chart.orange.bolder',
|
|
1627
2919
|
path: ['color', 'chart', 'orange', 'bolder', '[default]'],
|
|
1628
2920
|
description: 'For data visualisation only.',
|
|
1629
|
-
exampleValue: '#BD5B00'
|
|
2921
|
+
exampleValue: '#BD5B00',
|
|
2922
|
+
usageGuidelines: {
|
|
2923
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2924
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2925
|
+
}
|
|
1630
2926
|
}, {
|
|
1631
2927
|
name: 'color.chart.orange.bolder.hovered',
|
|
1632
2928
|
path: ['color', 'chart', 'orange', 'bolder', 'hovered'],
|
|
1633
2929
|
description: 'Hovered state of color.chart.orange.bolder.',
|
|
1634
|
-
exampleValue: '#9E4C00'
|
|
2930
|
+
exampleValue: '#9E4C00',
|
|
2931
|
+
usageGuidelines: {
|
|
2932
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2933
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2934
|
+
}
|
|
1635
2935
|
}, {
|
|
1636
2936
|
name: 'color.chart.orange.boldest',
|
|
1637
2937
|
path: ['color', 'chart', 'orange', 'boldest', '[default]'],
|
|
1638
2938
|
description: 'For data visualisation only.',
|
|
1639
|
-
exampleValue: '#7A3B00'
|
|
2939
|
+
exampleValue: '#7A3B00',
|
|
2940
|
+
usageGuidelines: {
|
|
2941
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2942
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2943
|
+
}
|
|
1640
2944
|
}, {
|
|
1641
2945
|
name: 'color.chart.orange.boldest.hovered',
|
|
1642
2946
|
path: ['color', 'chart', 'orange', 'boldest', 'hovered'],
|
|
1643
2947
|
description: 'Hovered state of color.chart.orange.boldest.',
|
|
1644
|
-
exampleValue: '#693200'
|
|
2948
|
+
exampleValue: '#693200',
|
|
2949
|
+
usageGuidelines: {
|
|
2950
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2951
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2952
|
+
}
|
|
1645
2953
|
}, {
|
|
1646
2954
|
name: 'color.chart.yellow.bold',
|
|
1647
2955
|
path: ['color', 'chart', 'yellow', 'bold', '[default]'],
|
|
1648
2956
|
description: 'For data visualisation only.',
|
|
1649
|
-
exampleValue: '#B38600'
|
|
2957
|
+
exampleValue: '#B38600',
|
|
2958
|
+
usageGuidelines: {
|
|
2959
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2960
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2961
|
+
}
|
|
1650
2962
|
}, {
|
|
1651
2963
|
name: 'color.chart.yellow.bold.hovered',
|
|
1652
2964
|
path: ['color', 'chart', 'yellow', 'bold', 'hovered'],
|
|
1653
2965
|
description: 'Hovered state of color.chart.yellow.bold.',
|
|
1654
|
-
exampleValue: '#946F00'
|
|
2966
|
+
exampleValue: '#946F00',
|
|
2967
|
+
usageGuidelines: {
|
|
2968
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2969
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2970
|
+
}
|
|
1655
2971
|
}, {
|
|
1656
2972
|
name: 'color.chart.yellow.bolder',
|
|
1657
2973
|
path: ['color', 'chart', 'yellow', 'bolder', '[default]'],
|
|
1658
2974
|
description: 'For data visualisation only.',
|
|
1659
|
-
exampleValue: '#946F00'
|
|
2975
|
+
exampleValue: '#946F00',
|
|
2976
|
+
usageGuidelines: {
|
|
2977
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2978
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2979
|
+
}
|
|
1660
2980
|
}, {
|
|
1661
2981
|
name: 'color.chart.yellow.bolder.hovered',
|
|
1662
2982
|
path: ['color', 'chart', 'yellow', 'bolder', 'hovered'],
|
|
1663
2983
|
description: 'Hovered state of color.chart.yellow.bolder.',
|
|
1664
|
-
exampleValue: '#7F5F01'
|
|
2984
|
+
exampleValue: '#7F5F01',
|
|
2985
|
+
usageGuidelines: {
|
|
2986
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2987
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2988
|
+
}
|
|
1665
2989
|
}, {
|
|
1666
2990
|
name: 'color.chart.yellow.boldest',
|
|
1667
2991
|
path: ['color', 'chart', 'yellow', 'boldest', '[default]'],
|
|
1668
2992
|
description: 'For data visualisation only.',
|
|
1669
|
-
exampleValue: '#7F5F01'
|
|
2993
|
+
exampleValue: '#7F5F01',
|
|
2994
|
+
usageGuidelines: {
|
|
2995
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
2996
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
2997
|
+
}
|
|
1670
2998
|
}, {
|
|
1671
2999
|
name: 'color.chart.yellow.boldest.hovered',
|
|
1672
3000
|
path: ['color', 'chart', 'yellow', 'boldest', 'hovered'],
|
|
1673
3001
|
description: 'Hovered state of color.chart.yellow.boldest.',
|
|
1674
|
-
exampleValue: '#533F04'
|
|
3002
|
+
exampleValue: '#533F04',
|
|
3003
|
+
usageGuidelines: {
|
|
3004
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3005
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3006
|
+
}
|
|
1675
3007
|
}, {
|
|
1676
3008
|
name: 'color.chart.green.bold',
|
|
1677
3009
|
path: ['color', 'chart', 'green', 'bold', '[default]'],
|
|
1678
3010
|
description: 'For data visualisation only.',
|
|
1679
|
-
exampleValue: '#22A06B'
|
|
3011
|
+
exampleValue: '#22A06B',
|
|
3012
|
+
usageGuidelines: {
|
|
3013
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3014
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3015
|
+
}
|
|
1680
3016
|
}, {
|
|
1681
3017
|
name: 'color.chart.green.bold.hovered',
|
|
1682
3018
|
path: ['color', 'chart', 'green', 'bold', 'hovered'],
|
|
1683
3019
|
description: 'Hovered state of color.chart.green.bold.',
|
|
1684
|
-
exampleValue: '#1F845A'
|
|
3020
|
+
exampleValue: '#1F845A',
|
|
3021
|
+
usageGuidelines: {
|
|
3022
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3023
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3024
|
+
}
|
|
1685
3025
|
}, {
|
|
1686
3026
|
name: 'color.chart.green.bolder',
|
|
1687
3027
|
path: ['color', 'chart', 'green', 'bolder', '[default]'],
|
|
1688
3028
|
description: 'For data visualisation only.',
|
|
1689
|
-
exampleValue: '#1F845A'
|
|
3029
|
+
exampleValue: '#1F845A',
|
|
3030
|
+
usageGuidelines: {
|
|
3031
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3032
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3033
|
+
}
|
|
1690
3034
|
}, {
|
|
1691
3035
|
name: 'color.chart.green.bolder.hovered',
|
|
1692
3036
|
path: ['color', 'chart', 'green', 'bolder', 'hovered'],
|
|
1693
3037
|
description: 'Hovered state of color.chart.green.bolder.',
|
|
1694
|
-
exampleValue: '#216E4E'
|
|
3038
|
+
exampleValue: '#216E4E',
|
|
3039
|
+
usageGuidelines: {
|
|
3040
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3041
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3042
|
+
}
|
|
1695
3043
|
}, {
|
|
1696
3044
|
name: 'color.chart.green.boldest',
|
|
1697
3045
|
path: ['color', 'chart', 'green', 'boldest', '[default]'],
|
|
1698
3046
|
description: 'For data visualisation only.',
|
|
1699
|
-
exampleValue: '#216E4E'
|
|
3047
|
+
exampleValue: '#216E4E',
|
|
3048
|
+
usageGuidelines: {
|
|
3049
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3050
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3051
|
+
}
|
|
1700
3052
|
}, {
|
|
1701
3053
|
name: 'color.chart.green.boldest.hovered',
|
|
1702
3054
|
path: ['color', 'chart', 'green', 'boldest', 'hovered'],
|
|
1703
3055
|
description: 'Hovered state of color.chart.green.boldest.',
|
|
1704
|
-
exampleValue: '#164B35'
|
|
3056
|
+
exampleValue: '#164B35',
|
|
3057
|
+
usageGuidelines: {
|
|
3058
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3059
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3060
|
+
}
|
|
1705
3061
|
}, {
|
|
1706
3062
|
name: 'color.chart.teal.bold',
|
|
1707
3063
|
path: ['color', 'chart', 'teal', 'bold', '[default]'],
|
|
1708
3064
|
description: 'For data visualisation only.',
|
|
1709
|
-
exampleValue: '#2898BD'
|
|
3065
|
+
exampleValue: '#2898BD',
|
|
3066
|
+
usageGuidelines: {
|
|
3067
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3068
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3069
|
+
}
|
|
1710
3070
|
}, {
|
|
1711
3071
|
name: 'color.chart.teal.bold.hovered',
|
|
1712
3072
|
path: ['color', 'chart', 'teal', 'bold', 'hovered'],
|
|
1713
3073
|
description: 'Hovered state of color.chart.teal.bold.',
|
|
1714
|
-
exampleValue: '#227D9B'
|
|
3074
|
+
exampleValue: '#227D9B',
|
|
3075
|
+
usageGuidelines: {
|
|
3076
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3077
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3078
|
+
}
|
|
1715
3079
|
}, {
|
|
1716
3080
|
name: 'color.chart.teal.bolder',
|
|
1717
3081
|
path: ['color', 'chart', 'teal', 'bolder', '[default]'],
|
|
1718
3082
|
description: 'For data visualisation only.',
|
|
1719
|
-
exampleValue: '#227D9B'
|
|
3083
|
+
exampleValue: '#227D9B',
|
|
3084
|
+
usageGuidelines: {
|
|
3085
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3086
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3087
|
+
}
|
|
1720
3088
|
}, {
|
|
1721
3089
|
name: 'color.chart.teal.bolder.hovered',
|
|
1722
3090
|
path: ['color', 'chart', 'teal', 'bolder', 'hovered'],
|
|
1723
3091
|
description: 'Hovered state of color.chart.teal.bolder.',
|
|
1724
|
-
exampleValue: '#206A83'
|
|
3092
|
+
exampleValue: '#206A83',
|
|
3093
|
+
usageGuidelines: {
|
|
3094
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3095
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3096
|
+
}
|
|
1725
3097
|
}, {
|
|
1726
3098
|
name: 'color.chart.teal.boldest',
|
|
1727
3099
|
path: ['color', 'chart', 'teal', 'boldest', '[default]'],
|
|
1728
3100
|
description: 'For data visualisation only.',
|
|
1729
|
-
exampleValue: '#206A83'
|
|
3101
|
+
exampleValue: '#206A83',
|
|
3102
|
+
usageGuidelines: {
|
|
3103
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3104
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3105
|
+
}
|
|
1730
3106
|
}, {
|
|
1731
3107
|
name: 'color.chart.teal.boldest.hovered',
|
|
1732
3108
|
path: ['color', 'chart', 'teal', 'boldest', 'hovered'],
|
|
1733
3109
|
description: 'Hovered state of color.chart.teal.boldest.',
|
|
1734
|
-
exampleValue: '#164555'
|
|
3110
|
+
exampleValue: '#164555',
|
|
3111
|
+
usageGuidelines: {
|
|
3112
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3113
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3114
|
+
}
|
|
1735
3115
|
}, {
|
|
1736
3116
|
name: 'color.chart.blue.bold',
|
|
1737
3117
|
path: ['color', 'chart', 'blue', 'bold', '[default]'],
|
|
1738
3118
|
description: 'For data visualisation only.',
|
|
1739
|
-
exampleValue: '#4688EC'
|
|
3119
|
+
exampleValue: '#4688EC',
|
|
3120
|
+
usageGuidelines: {
|
|
3121
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3122
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3123
|
+
}
|
|
1740
3124
|
}, {
|
|
1741
3125
|
name: 'color.chart.blue.bold.hovered',
|
|
1742
3126
|
path: ['color', 'chart', 'blue', 'bold', 'hovered'],
|
|
1743
3127
|
description: 'Hovered state of color.chart.blue.bold.',
|
|
1744
|
-
exampleValue: '#357DE8'
|
|
3128
|
+
exampleValue: '#357DE8',
|
|
3129
|
+
usageGuidelines: {
|
|
3130
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3131
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3132
|
+
}
|
|
1745
3133
|
}, {
|
|
1746
3134
|
name: 'color.chart.blue.bolder',
|
|
1747
3135
|
path: ['color', 'chart', 'blue', 'bolder', '[default]'],
|
|
1748
3136
|
description: 'For data visualisation only.',
|
|
1749
|
-
exampleValue: '#357DE8'
|
|
3137
|
+
exampleValue: '#357DE8',
|
|
3138
|
+
usageGuidelines: {
|
|
3139
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3140
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3141
|
+
}
|
|
1750
3142
|
}, {
|
|
1751
3143
|
name: 'color.chart.blue.bolder.hovered',
|
|
1752
3144
|
path: ['color', 'chart', 'blue', 'bolder', 'hovered'],
|
|
1753
3145
|
description: 'Hovered state of color.chart.blue.bolder.',
|
|
1754
|
-
exampleValue: '#1868DB'
|
|
3146
|
+
exampleValue: '#1868DB',
|
|
3147
|
+
usageGuidelines: {
|
|
3148
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3149
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3150
|
+
}
|
|
1755
3151
|
}, {
|
|
1756
3152
|
name: 'color.chart.blue.boldest',
|
|
1757
3153
|
path: ['color', 'chart', 'blue', 'boldest', '[default]'],
|
|
1758
3154
|
description: 'For data visualisation only.',
|
|
1759
|
-
exampleValue: '#1558BC'
|
|
3155
|
+
exampleValue: '#1558BC',
|
|
3156
|
+
usageGuidelines: {
|
|
3157
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3158
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3159
|
+
}
|
|
1760
3160
|
}, {
|
|
1761
3161
|
name: 'color.chart.blue.boldest.hovered',
|
|
1762
3162
|
path: ['color', 'chart', 'blue', 'boldest', 'hovered'],
|
|
1763
3163
|
description: 'Hovered state of color.chart.blue.boldest.',
|
|
1764
|
-
exampleValue: '#123263'
|
|
3164
|
+
exampleValue: '#123263',
|
|
3165
|
+
usageGuidelines: {
|
|
3166
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3167
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3168
|
+
}
|
|
1765
3169
|
}, {
|
|
1766
3170
|
name: 'color.chart.purple.bold',
|
|
1767
3171
|
path: ['color', 'chart', 'purple', 'bold', '[default]'],
|
|
1768
3172
|
description: 'For data visualisation only.',
|
|
1769
|
-
exampleValue: '#BF63F3'
|
|
3173
|
+
exampleValue: '#BF63F3',
|
|
3174
|
+
usageGuidelines: {
|
|
3175
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3176
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3177
|
+
}
|
|
1770
3178
|
}, {
|
|
1771
3179
|
name: 'color.chart.purple.bold.hovered',
|
|
1772
3180
|
path: ['color', 'chart', 'purple', 'bold', 'hovered'],
|
|
1773
3181
|
description: 'Hovered state of color.chart.purple.bold.',
|
|
1774
|
-
exampleValue: '#AF59E1'
|
|
3182
|
+
exampleValue: '#AF59E1',
|
|
3183
|
+
usageGuidelines: {
|
|
3184
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3185
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3186
|
+
}
|
|
1775
3187
|
}, {
|
|
1776
3188
|
name: 'color.chart.purple.bolder',
|
|
1777
3189
|
path: ['color', 'chart', 'purple', 'bolder', '[default]'],
|
|
1778
3190
|
description: 'For data visualisation only.',
|
|
1779
|
-
exampleValue: '#AF59E1'
|
|
3191
|
+
exampleValue: '#AF59E1',
|
|
3192
|
+
usageGuidelines: {
|
|
3193
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3194
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3195
|
+
}
|
|
1780
3196
|
}, {
|
|
1781
3197
|
name: 'color.chart.purple.bolder.hovered',
|
|
1782
3198
|
path: ['color', 'chart', 'purple', 'bolder', 'hovered'],
|
|
1783
3199
|
description: 'Hovered state of color.chart.purple.bolder.',
|
|
1784
|
-
exampleValue: '#964AC0'
|
|
3200
|
+
exampleValue: '#964AC0',
|
|
3201
|
+
usageGuidelines: {
|
|
3202
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3203
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3204
|
+
}
|
|
1785
3205
|
}, {
|
|
1786
3206
|
name: 'color.chart.purple.boldest',
|
|
1787
3207
|
path: ['color', 'chart', 'purple', 'boldest', '[default]'],
|
|
1788
3208
|
description: 'For data visualisation only.',
|
|
1789
|
-
exampleValue: '#803FA5'
|
|
3209
|
+
exampleValue: '#803FA5',
|
|
3210
|
+
usageGuidelines: {
|
|
3211
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3212
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3213
|
+
}
|
|
1790
3214
|
}, {
|
|
1791
3215
|
name: 'color.chart.purple.boldest.hovered',
|
|
1792
3216
|
path: ['color', 'chart', 'purple', 'boldest', 'hovered'],
|
|
1793
3217
|
description: 'Hovered state of color.chart.purple.boldest.',
|
|
1794
|
-
exampleValue: '#48245D'
|
|
3218
|
+
exampleValue: '#48245D',
|
|
3219
|
+
usageGuidelines: {
|
|
3220
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3221
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3222
|
+
}
|
|
1795
3223
|
}, {
|
|
1796
3224
|
name: 'color.chart.magenta.bold',
|
|
1797
3225
|
path: ['color', 'chart', 'magenta', 'bold', '[default]'],
|
|
1798
3226
|
description: 'For data visualisation only.',
|
|
1799
|
-
exampleValue: '#DA62AC'
|
|
3227
|
+
exampleValue: '#DA62AC',
|
|
3228
|
+
usageGuidelines: {
|
|
3229
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3230
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3231
|
+
}
|
|
1800
3232
|
}, {
|
|
1801
3233
|
name: 'color.chart.magenta.bold.hovered',
|
|
1802
3234
|
path: ['color', 'chart', 'magenta', 'bold', 'hovered'],
|
|
1803
3235
|
description: 'Hovered state of color.chart.magenta.bold.',
|
|
1804
|
-
exampleValue: '#CD519D'
|
|
3236
|
+
exampleValue: '#CD519D',
|
|
3237
|
+
usageGuidelines: {
|
|
3238
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3239
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3240
|
+
}
|
|
1805
3241
|
}, {
|
|
1806
3242
|
name: 'color.chart.magenta.bolder',
|
|
1807
3243
|
path: ['color', 'chart', 'magenta', 'bolder', '[default]'],
|
|
1808
3244
|
description: 'For data visualisation only.',
|
|
1809
|
-
exampleValue: '#CD519D'
|
|
3245
|
+
exampleValue: '#CD519D',
|
|
3246
|
+
usageGuidelines: {
|
|
3247
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3248
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3249
|
+
}
|
|
1810
3250
|
}, {
|
|
1811
3251
|
name: 'color.chart.magenta.bolder.hovered',
|
|
1812
3252
|
path: ['color', 'chart', 'magenta', 'bolder', 'hovered'],
|
|
1813
3253
|
description: 'Hovered state of color.chart.magenta.bolder.',
|
|
1814
|
-
exampleValue: '#AE4787'
|
|
3254
|
+
exampleValue: '#AE4787',
|
|
3255
|
+
usageGuidelines: {
|
|
3256
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3257
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3258
|
+
}
|
|
1815
3259
|
}, {
|
|
1816
3260
|
name: 'color.chart.magenta.boldest',
|
|
1817
3261
|
path: ['color', 'chart', 'magenta', 'boldest', '[default]'],
|
|
1818
3262
|
description: 'For data visualisation only.',
|
|
1819
|
-
exampleValue: '#943D73'
|
|
3263
|
+
exampleValue: '#943D73',
|
|
3264
|
+
usageGuidelines: {
|
|
3265
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3266
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3267
|
+
}
|
|
1820
3268
|
}, {
|
|
1821
3269
|
name: 'color.chart.magenta.boldest.hovered',
|
|
1822
3270
|
path: ['color', 'chart', 'magenta', 'boldest', 'hovered'],
|
|
1823
3271
|
description: 'Hovered state of color.chart.magenta.boldest.',
|
|
1824
|
-
exampleValue: '#50253F'
|
|
3272
|
+
exampleValue: '#50253F',
|
|
3273
|
+
usageGuidelines: {
|
|
3274
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3275
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3276
|
+
}
|
|
1825
3277
|
}, {
|
|
1826
3278
|
name: 'color.chart.gray.bold',
|
|
1827
3279
|
path: ['color', 'chart', 'gray', 'bold', '[default]'],
|
|
1828
3280
|
description: 'For data visualisation only.',
|
|
1829
|
-
exampleValue: '#8C8F97'
|
|
3281
|
+
exampleValue: '#8C8F97',
|
|
3282
|
+
usageGuidelines: {
|
|
3283
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3284
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3285
|
+
}
|
|
1830
3286
|
}, {
|
|
1831
3287
|
name: 'color.chart.gray.bold.hovered',
|
|
1832
3288
|
path: ['color', 'chart', 'gray', 'bold', 'hovered'],
|
|
1833
3289
|
description: 'Hovered state of color.chart.gray.bold.',
|
|
1834
|
-
exampleValue: '#7D818A'
|
|
3290
|
+
exampleValue: '#7D818A',
|
|
3291
|
+
usageGuidelines: {
|
|
3292
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3293
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3294
|
+
}
|
|
1835
3295
|
}, {
|
|
1836
3296
|
name: 'color.chart.gray.bolder',
|
|
1837
3297
|
path: ['color', 'chart', 'gray', 'bolder', '[default]'],
|
|
1838
3298
|
description: 'For data visualisation only.',
|
|
1839
|
-
exampleValue: '#7D818A'
|
|
3299
|
+
exampleValue: '#7D818A',
|
|
3300
|
+
usageGuidelines: {
|
|
3301
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3302
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3303
|
+
}
|
|
1840
3304
|
}, {
|
|
1841
3305
|
name: 'color.chart.gray.bolder.hovered',
|
|
1842
3306
|
path: ['color', 'chart', 'gray', 'bolder', 'hovered'],
|
|
1843
3307
|
description: 'Hovered state of color.chart.gray.bolder.',
|
|
1844
|
-
exampleValue: '#6B6E76'
|
|
3308
|
+
exampleValue: '#6B6E76',
|
|
3309
|
+
usageGuidelines: {
|
|
3310
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3311
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3312
|
+
}
|
|
1845
3313
|
}, {
|
|
1846
3314
|
name: 'color.chart.gray.boldest',
|
|
1847
3315
|
path: ['color', 'chart', 'gray', 'boldest', '[default]'],
|
|
1848
3316
|
description: 'For data visualisation only.',
|
|
1849
|
-
exampleValue: '#505258'
|
|
3317
|
+
exampleValue: '#505258',
|
|
3318
|
+
usageGuidelines: {
|
|
3319
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3320
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3321
|
+
}
|
|
1850
3322
|
}, {
|
|
1851
3323
|
name: 'color.chart.gray.boldest.hovered',
|
|
1852
3324
|
path: ['color', 'chart', 'gray', 'boldest', 'hovered'],
|
|
1853
3325
|
description: 'Hovered state of color.chart.gray.boldest.',
|
|
1854
|
-
exampleValue: '#3B3D42'
|
|
3326
|
+
exampleValue: '#3B3D42',
|
|
3327
|
+
usageGuidelines: {
|
|
3328
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3329
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3330
|
+
}
|
|
1855
3331
|
}, {
|
|
1856
3332
|
name: 'color.chart.brand',
|
|
1857
3333
|
path: ['color', 'chart', 'brand', '[default]'],
|
|
1858
3334
|
description: 'Our primary color for data visualisation. Use when only one color is required.',
|
|
1859
|
-
exampleValue: '#357DE8'
|
|
3335
|
+
exampleValue: '#357DE8',
|
|
3336
|
+
usageGuidelines: {
|
|
3337
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3338
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3339
|
+
}
|
|
1860
3340
|
}, {
|
|
1861
3341
|
name: 'color.chart.brand.hovered',
|
|
1862
3342
|
path: ['color', 'chart', 'brand', 'hovered'],
|
|
1863
3343
|
description: 'Hovered state of color.chart.brand.',
|
|
1864
|
-
exampleValue: '#1868DB'
|
|
3344
|
+
exampleValue: '#1868DB',
|
|
3345
|
+
usageGuidelines: {
|
|
3346
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3347
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3348
|
+
}
|
|
1865
3349
|
}, {
|
|
1866
3350
|
name: 'color.chart.danger',
|
|
1867
3351
|
path: ['color', 'chart', 'danger', '[default]', '[default]'],
|
|
1868
3352
|
description: "For data visualisation communicating negative information, such as 'off track'.",
|
|
1869
|
-
exampleValue: '#E2483D'
|
|
3353
|
+
exampleValue: '#E2483D',
|
|
3354
|
+
usageGuidelines: {
|
|
3355
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3356
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3357
|
+
}
|
|
1870
3358
|
}, {
|
|
1871
3359
|
name: 'color.chart.danger.hovered',
|
|
1872
3360
|
path: ['color', 'chart', 'danger', '[default]', 'hovered'],
|
|
1873
3361
|
description: 'Hovered state of color.chart.danger.',
|
|
1874
|
-
exampleValue: '#C9372C'
|
|
3362
|
+
exampleValue: '#C9372C',
|
|
3363
|
+
usageGuidelines: {
|
|
3364
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3365
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3366
|
+
}
|
|
1875
3367
|
}, {
|
|
1876
3368
|
name: 'color.chart.danger.bold',
|
|
1877
3369
|
path: ['color', 'chart', 'danger', 'bold', '[default]'],
|
|
1878
3370
|
description: 'A stronger emphasis option of color.chart.danger.',
|
|
1879
|
-
exampleValue: '#872821'
|
|
3371
|
+
exampleValue: '#872821',
|
|
3372
|
+
usageGuidelines: {
|
|
3373
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3374
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3375
|
+
}
|
|
1880
3376
|
}, {
|
|
1881
3377
|
name: 'color.chart.danger.bold.hovered',
|
|
1882
3378
|
path: ['color', 'chart', 'danger', 'bold', 'hovered'],
|
|
1883
3379
|
description: 'Hovered state of color.chart.danger.bold.',
|
|
1884
|
-
exampleValue: '#5D1F1A'
|
|
3380
|
+
exampleValue: '#5D1F1A',
|
|
3381
|
+
usageGuidelines: {
|
|
3382
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3383
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3384
|
+
}
|
|
1885
3385
|
}, {
|
|
1886
3386
|
name: 'color.chart.warning',
|
|
1887
3387
|
path: ['color', 'chart', 'warning', '[default]', '[default]'],
|
|
1888
3388
|
description: "For data visualisation communicating caution, such as 'at risk' statuses.",
|
|
1889
|
-
exampleValue: '#F68909'
|
|
3389
|
+
exampleValue: '#F68909',
|
|
3390
|
+
usageGuidelines: {
|
|
3391
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3392
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3393
|
+
}
|
|
1890
3394
|
}, {
|
|
1891
3395
|
name: 'color.chart.warning.hovered',
|
|
1892
3396
|
path: ['color', 'chart', 'warning', '[default]', 'hovered'],
|
|
1893
3397
|
description: 'Hovered state of color.chart.warning.',
|
|
1894
|
-
exampleValue: '#E06C00'
|
|
3398
|
+
exampleValue: '#E06C00',
|
|
3399
|
+
usageGuidelines: {
|
|
3400
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3401
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3402
|
+
}
|
|
1895
3403
|
}, {
|
|
1896
3404
|
name: 'color.chart.warning.bold',
|
|
1897
3405
|
path: ['color', 'chart', 'warning', 'bold', '[default]'],
|
|
1898
3406
|
description: 'A stronger emphasis option of color.chart.warning.',
|
|
1899
|
-
exampleValue: '#BD5B00'
|
|
3407
|
+
exampleValue: '#BD5B00',
|
|
3408
|
+
usageGuidelines: {
|
|
3409
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3410
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3411
|
+
}
|
|
1900
3412
|
}, {
|
|
1901
3413
|
name: 'color.chart.warning.bold.hovered',
|
|
1902
3414
|
path: ['color', 'chart', 'warning', 'bold', 'hovered'],
|
|
1903
3415
|
description: 'Hovered state of color.chart.warning.bold.',
|
|
1904
|
-
exampleValue: '#9E4C00'
|
|
3416
|
+
exampleValue: '#9E4C00',
|
|
3417
|
+
usageGuidelines: {
|
|
3418
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3419
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3420
|
+
}
|
|
1905
3421
|
}, {
|
|
1906
3422
|
name: 'color.chart.success',
|
|
1907
3423
|
path: ['color', 'chart', 'success', '[default]', '[default]'],
|
|
1908
3424
|
description: "For data visualisation communicating positive information, such as 'on track'.",
|
|
1909
|
-
exampleValue: '#82B536'
|
|
3425
|
+
exampleValue: '#82B536',
|
|
3426
|
+
usageGuidelines: {
|
|
3427
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3428
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3429
|
+
}
|
|
1910
3430
|
}, {
|
|
1911
3431
|
name: 'color.chart.success.hovered',
|
|
1912
3432
|
path: ['color', 'chart', 'success', '[default]', 'hovered'],
|
|
1913
3433
|
description: 'Hovered state of color.chart.success.',
|
|
1914
|
-
exampleValue: '#6A9A23'
|
|
3434
|
+
exampleValue: '#6A9A23',
|
|
3435
|
+
usageGuidelines: {
|
|
3436
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3437
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3438
|
+
}
|
|
1915
3439
|
}, {
|
|
1916
3440
|
name: 'color.chart.success.bold',
|
|
1917
3441
|
path: ['color', 'chart', 'success', 'bold', '[default]'],
|
|
1918
3442
|
description: 'A stronger emphasis option of color.chart.success.',
|
|
1919
|
-
exampleValue: '#5B7F24'
|
|
3443
|
+
exampleValue: '#5B7F24',
|
|
3444
|
+
usageGuidelines: {
|
|
3445
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3446
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3447
|
+
}
|
|
1920
3448
|
}, {
|
|
1921
3449
|
name: 'color.chart.success.bold.hovered',
|
|
1922
3450
|
path: ['color', 'chart', 'success', 'bold', 'hovered'],
|
|
1923
3451
|
description: 'Hovered state of color.chart.success.bold.',
|
|
1924
|
-
exampleValue: '#4C6B1F'
|
|
3452
|
+
exampleValue: '#4C6B1F',
|
|
3453
|
+
usageGuidelines: {
|
|
3454
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3455
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3456
|
+
}
|
|
1925
3457
|
}, {
|
|
1926
3458
|
name: 'color.chart.discovery',
|
|
1927
3459
|
path: ['color', 'chart', 'discovery', '[default]', '[default]'],
|
|
1928
3460
|
description: "For data visualisation communicating 'new' statuses.",
|
|
1929
|
-
exampleValue: '#BF63F3'
|
|
3461
|
+
exampleValue: '#BF63F3',
|
|
3462
|
+
usageGuidelines: {
|
|
3463
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3464
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3465
|
+
}
|
|
1930
3466
|
}, {
|
|
1931
3467
|
name: 'color.chart.discovery.hovered',
|
|
1932
3468
|
path: ['color', 'chart', 'discovery', '[default]', 'hovered'],
|
|
1933
3469
|
description: 'Hovered state of color.chart.discovery.',
|
|
1934
|
-
exampleValue: '#AF59E1'
|
|
3470
|
+
exampleValue: '#AF59E1',
|
|
3471
|
+
usageGuidelines: {
|
|
3472
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3473
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3474
|
+
}
|
|
1935
3475
|
}, {
|
|
1936
3476
|
name: 'color.chart.discovery.bold',
|
|
1937
3477
|
path: ['color', 'chart', 'discovery', 'bold', '[default]'],
|
|
1938
3478
|
description: 'A stronger emphasis option of color.chart.discovery.',
|
|
1939
|
-
exampleValue: '#803FA5'
|
|
3479
|
+
exampleValue: '#803FA5',
|
|
3480
|
+
usageGuidelines: {
|
|
3481
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3482
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3483
|
+
}
|
|
1940
3484
|
}, {
|
|
1941
3485
|
name: 'color.chart.discovery.bold.hovered',
|
|
1942
3486
|
path: ['color', 'chart', 'discovery', 'bold', 'hovered'],
|
|
1943
3487
|
description: 'Hovered state of color.chart.discovery.bold.',
|
|
1944
|
-
exampleValue: '#964AC0'
|
|
3488
|
+
exampleValue: '#964AC0',
|
|
3489
|
+
usageGuidelines: {
|
|
3490
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3491
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3492
|
+
}
|
|
1945
3493
|
}, {
|
|
1946
3494
|
name: 'color.chart.information',
|
|
1947
3495
|
path: ['color', 'chart', 'information', '[default]', '[default]'],
|
|
1948
3496
|
description: 'For data visualisation communicating low priority or in-progress statuses.',
|
|
1949
|
-
exampleValue: '#357DE8'
|
|
3497
|
+
exampleValue: '#357DE8',
|
|
3498
|
+
usageGuidelines: {
|
|
3499
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3500
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3501
|
+
}
|
|
1950
3502
|
}, {
|
|
1951
3503
|
name: 'color.chart.information.hovered',
|
|
1952
3504
|
path: ['color', 'chart', 'information', '[default]', 'hovered'],
|
|
1953
3505
|
description: 'Hovered state of color.chart.information.',
|
|
1954
|
-
exampleValue: '#1868DB'
|
|
3506
|
+
exampleValue: '#1868DB',
|
|
3507
|
+
usageGuidelines: {
|
|
3508
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3509
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3510
|
+
}
|
|
1955
3511
|
}, {
|
|
1956
3512
|
name: 'color.chart.information.bold',
|
|
1957
3513
|
path: ['color', 'chart', 'information', 'bold', '[default]'],
|
|
1958
3514
|
description: 'A stronger emphasis option of color.chart.information.',
|
|
1959
|
-
exampleValue: '#1558BC'
|
|
3515
|
+
exampleValue: '#1558BC',
|
|
3516
|
+
usageGuidelines: {
|
|
3517
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3518
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3519
|
+
}
|
|
1960
3520
|
}, {
|
|
1961
3521
|
name: 'color.chart.information.bold.hovered',
|
|
1962
3522
|
path: ['color', 'chart', 'information', 'bold', 'hovered'],
|
|
1963
3523
|
description: 'Hovered state of color.chart.information.bold.',
|
|
1964
|
-
exampleValue: '#123263'
|
|
3524
|
+
exampleValue: '#123263',
|
|
3525
|
+
usageGuidelines: {
|
|
3526
|
+
usage: 'The color for chart and data visualization elements (e.g. color.chart)',
|
|
3527
|
+
cssProperties: ['fill', 'stroke', 'background-color', 'color']
|
|
3528
|
+
}
|
|
1965
3529
|
}, {
|
|
1966
3530
|
name: 'elevation.surface',
|
|
1967
3531
|
path: ['elevation', 'surface', '[default]', '[default]'],
|
|
1968
3532
|
description: 'Use as the primary background for the UI.',
|
|
1969
|
-
exampleValue: '#FFFFFF'
|
|
3533
|
+
exampleValue: '#FFFFFF',
|
|
3534
|
+
usageGuidelines: {
|
|
3535
|
+
usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
|
|
3536
|
+
cssProperties: ['background-color']
|
|
3537
|
+
}
|
|
1970
3538
|
}, {
|
|
1971
3539
|
name: 'elevation.surface.hovered',
|
|
1972
3540
|
path: ['elevation', 'surface', '[default]', 'hovered'],
|
|
1973
3541
|
description: 'Hovered state of elevation.surface',
|
|
1974
|
-
exampleValue: '#F0F1F2'
|
|
3542
|
+
exampleValue: '#F0F1F2',
|
|
3543
|
+
usageGuidelines: {
|
|
3544
|
+
usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
|
|
3545
|
+
cssProperties: ['background-color']
|
|
3546
|
+
}
|
|
1975
3547
|
}, {
|
|
1976
3548
|
name: 'elevation.surface.pressed',
|
|
1977
3549
|
path: ['elevation', 'surface', '[default]', 'pressed'],
|
|
1978
3550
|
description: 'Pressed state of elevation.surface',
|
|
1979
|
-
exampleValue: '#DDDEE1'
|
|
3551
|
+
exampleValue: '#DDDEE1',
|
|
3552
|
+
usageGuidelines: {
|
|
3553
|
+
usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
|
|
3554
|
+
cssProperties: ['background-color']
|
|
3555
|
+
}
|
|
1980
3556
|
}, {
|
|
1981
3557
|
name: 'elevation.surface.overlay',
|
|
1982
3558
|
path: ['elevation', 'surface', 'overlay', '[default]'],
|
|
1983
3559
|
description: 'Use for the background of elements that sit on top of they UI, such as modals, dialogs, dropdown menus, floating toolbars, and floating single-action buttons. Also use for the background of raised cards in a dragged state. Combine with elevation.shadow.overlay.',
|
|
1984
|
-
exampleValue: '#FFFFFF'
|
|
3560
|
+
exampleValue: '#FFFFFF',
|
|
3561
|
+
usageGuidelines: {
|
|
3562
|
+
usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
|
|
3563
|
+
cssProperties: ['background-color']
|
|
3564
|
+
}
|
|
1985
3565
|
}, {
|
|
1986
3566
|
name: 'elevation.surface.overlay.hovered',
|
|
1987
3567
|
path: ['elevation', 'surface', 'overlay', 'hovered'],
|
|
1988
3568
|
description: 'Hovered state of elevation.surface.overlay',
|
|
1989
|
-
exampleValue: '#F0F1F2'
|
|
3569
|
+
exampleValue: '#F0F1F2',
|
|
3570
|
+
usageGuidelines: {
|
|
3571
|
+
usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
|
|
3572
|
+
cssProperties: ['background-color']
|
|
3573
|
+
}
|
|
1990
3574
|
}, {
|
|
1991
3575
|
name: 'elevation.surface.overlay.pressed',
|
|
1992
3576
|
path: ['elevation', 'surface', 'overlay', 'pressed'],
|
|
1993
3577
|
description: 'Pressed state of elevation.surface.overlay',
|
|
1994
|
-
exampleValue: '#DDDEE1'
|
|
3578
|
+
exampleValue: '#DDDEE1',
|
|
3579
|
+
usageGuidelines: {
|
|
3580
|
+
usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
|
|
3581
|
+
cssProperties: ['background-color']
|
|
3582
|
+
}
|
|
1995
3583
|
}, {
|
|
1996
3584
|
name: 'elevation.surface.raised',
|
|
1997
3585
|
path: ['elevation', 'surface', 'raised', '[default]'],
|
|
1998
3586
|
description: 'Use for the background of cards that can be moved, such as Jira cards on a Kanban board. Combine with elevation.shadow.raised.',
|
|
1999
|
-
exampleValue: '#FFFFFF'
|
|
3587
|
+
exampleValue: '#FFFFFF',
|
|
3588
|
+
usageGuidelines: {
|
|
3589
|
+
usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
|
|
3590
|
+
cssProperties: ['background-color']
|
|
3591
|
+
}
|
|
2000
3592
|
}, {
|
|
2001
3593
|
name: 'elevation.surface.raised.hovered',
|
|
2002
3594
|
path: ['elevation', 'surface', 'raised', 'hovered'],
|
|
2003
3595
|
description: 'Hovered state of elevation.surface.raised',
|
|
2004
|
-
exampleValue: '#F0F1F2'
|
|
3596
|
+
exampleValue: '#F0F1F2',
|
|
3597
|
+
usageGuidelines: {
|
|
3598
|
+
usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
|
|
3599
|
+
cssProperties: ['background-color']
|
|
3600
|
+
}
|
|
2005
3601
|
}, {
|
|
2006
3602
|
name: 'elevation.surface.raised.pressed',
|
|
2007
3603
|
path: ['elevation', 'surface', 'raised', 'pressed'],
|
|
2008
3604
|
description: 'Pressed state of elevation.surface.raised',
|
|
2009
|
-
exampleValue: '#DDDEE1'
|
|
3605
|
+
exampleValue: '#DDDEE1',
|
|
3606
|
+
usageGuidelines: {
|
|
3607
|
+
usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
|
|
3608
|
+
cssProperties: ['background-color']
|
|
3609
|
+
}
|
|
2010
3610
|
}, {
|
|
2011
3611
|
name: 'elevation.surface.sunken',
|
|
2012
3612
|
path: ['elevation', 'surface', 'sunken'],
|
|
2013
3613
|
description: 'A secondary background for the UI commonly used for grouping items, such as Jira cards in columns.',
|
|
2014
|
-
exampleValue: '#F8F8F8'
|
|
3614
|
+
exampleValue: '#F8F8F8',
|
|
3615
|
+
usageGuidelines: {
|
|
3616
|
+
usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
|
|
3617
|
+
cssProperties: ['background-color']
|
|
3618
|
+
}
|
|
2015
3619
|
}, {
|
|
2016
3620
|
name: 'elevation.shadow.overflow',
|
|
2017
3621
|
path: ['elevation', 'shadow', 'overflow', '[default]'],
|
|
2018
3622
|
description: 'Use to create a shadow when content scrolls under other content.',
|
|
2019
|
-
exampleValue: '0px 0px 8px #1E1F2129, 0px 0px 1px #1E1F211F'
|
|
3623
|
+
exampleValue: '0px 0px 8px #1E1F2129, 0px 0px 1px #1E1F211F',
|
|
3624
|
+
usageGuidelines: {
|
|
3625
|
+
usage: 'Shadows for showing depth and elevation (e.g. elevation.shadow.raised, elevation.shadow.overlay). Use via the box-shadow property to indicate layer hierarchy',
|
|
3626
|
+
cssProperties: ['box-shadow']
|
|
3627
|
+
}
|
|
2020
3628
|
}, {
|
|
2021
3629
|
name: 'elevation.shadow.overflow.perimeter',
|
|
2022
3630
|
path: ['elevation', 'shadow', 'overflow', 'perimeter'],
|
|
2023
3631
|
description: 'Use only when elevation.shadow.overflow is not technically feasible to implement. Pair with elevation.shadow.overflow.spread to replicate the overflow shadow.',
|
|
2024
|
-
exampleValue: '#1E1F211f'
|
|
3632
|
+
exampleValue: '#1E1F211f',
|
|
3633
|
+
usageGuidelines: {
|
|
3634
|
+
usage: 'Shadows for showing depth and elevation (e.g. elevation.shadow.raised, elevation.shadow.overlay). Use via the box-shadow property to indicate layer hierarchy',
|
|
3635
|
+
cssProperties: ['box-shadow']
|
|
3636
|
+
}
|
|
2025
3637
|
}, {
|
|
2026
3638
|
name: 'elevation.shadow.overflow.spread',
|
|
2027
3639
|
path: ['elevation', 'shadow', 'overflow', 'spread'],
|
|
2028
3640
|
description: 'Use only when elevation.shadow.overflow is not technically feasible to implement. Pair with elevation.shadow.overflow.perimeter to replicate the overflow shadow.',
|
|
2029
|
-
exampleValue: '#1E1F2129'
|
|
3641
|
+
exampleValue: '#1E1F2129',
|
|
3642
|
+
usageGuidelines: {
|
|
3643
|
+
usage: 'Shadows for showing depth and elevation (e.g. elevation.shadow.raised, elevation.shadow.overlay). Use via the box-shadow property to indicate layer hierarchy',
|
|
3644
|
+
cssProperties: ['box-shadow']
|
|
3645
|
+
}
|
|
2030
3646
|
}, {
|
|
2031
3647
|
name: 'elevation.shadow.overlay',
|
|
2032
3648
|
path: ['elevation', 'shadow', 'overlay'],
|
|
2033
3649
|
description: 'Use for the box shadow of elements that sit on top of the UI, such as modals, dropdown menus, flags, and inline dialogs. Combine with elevation.surface.overlay\n\nAlso use for the box shadow of raised cards in a dragged state.',
|
|
2034
|
-
exampleValue: '0px 8px 12px #1E1F2126, 0px 0px 1px #1E1F214F'
|
|
3650
|
+
exampleValue: '0px 8px 12px #1E1F2126, 0px 0px 1px #1E1F214F',
|
|
3651
|
+
usageGuidelines: {
|
|
3652
|
+
usage: 'Shadows for showing depth and elevation (e.g. elevation.shadow.raised, elevation.shadow.overlay). Use via the box-shadow property to indicate layer hierarchy',
|
|
3653
|
+
cssProperties: ['box-shadow']
|
|
3654
|
+
}
|
|
2035
3655
|
}, {
|
|
2036
3656
|
name: 'elevation.shadow.raised',
|
|
2037
3657
|
path: ['elevation', 'shadow', 'raised'],
|
|
2038
3658
|
description: 'Use for the box shadow of raised card elements, such as Jira cards on a Kanban board. Combine with elevation.surface.raised',
|
|
2039
|
-
exampleValue: '0px 1px 1px #1E1F2140, 0px 0px 1px #1E1F214F'
|
|
3659
|
+
exampleValue: '0px 1px 1px #1E1F2140, 0px 0px 1px #1E1F214F',
|
|
3660
|
+
usageGuidelines: {
|
|
3661
|
+
usage: 'Shadows for showing depth and elevation (e.g. elevation.shadow.raised, elevation.shadow.overlay). Use via the box-shadow property to indicate layer hierarchy',
|
|
3662
|
+
cssProperties: ['box-shadow']
|
|
3663
|
+
}
|
|
2040
3664
|
}, {
|
|
2041
3665
|
name: 'opacity.disabled',
|
|
2042
3666
|
path: ['opacity', 'disabled'],
|
|
2043
3667
|
description: 'Apply to images when in a disabled state.',
|
|
2044
|
-
exampleValue: 0.4
|
|
3668
|
+
exampleValue: 0.4,
|
|
3669
|
+
usageGuidelines: {
|
|
3670
|
+
usage: 'Controls the transparency of an element (e.g. opacity.disabled, opacity.loading). Used for communication of loading and disabled states',
|
|
3671
|
+
cssProperties: ['opacity']
|
|
3672
|
+
}
|
|
2045
3673
|
}, {
|
|
2046
3674
|
name: 'opacity.loading',
|
|
2047
3675
|
path: ['opacity', 'loading'],
|
|
2048
3676
|
description: 'Apply to content that sits under a loading spinner.',
|
|
2049
|
-
exampleValue: 0.2
|
|
3677
|
+
exampleValue: 0.2,
|
|
3678
|
+
usageGuidelines: {
|
|
3679
|
+
usage: 'Controls the transparency of an element (e.g. opacity.disabled, opacity.loading). Used for communication of loading and disabled states',
|
|
3680
|
+
cssProperties: ['opacity']
|
|
3681
|
+
}
|
|
2050
3682
|
}, {
|
|
2051
3683
|
name: 'utility.UNSAFE.transparent',
|
|
2052
3684
|
path: ['utility', 'UNSAFE', 'transparent'],
|
|
2053
3685
|
description: 'Transparent token used for backwards compatibility between new and old theming solutions',
|
|
2054
|
-
exampleValue: 'transparent'
|
|
3686
|
+
exampleValue: 'transparent',
|
|
3687
|
+
usageGuidelines: {
|
|
3688
|
+
usage: 'Code-specific tokens to aid with migration or enable features such as automatic elevation detection',
|
|
3689
|
+
cssProperties: []
|
|
3690
|
+
}
|
|
2055
3691
|
}, {
|
|
2056
3692
|
name: 'utility.elevation.surface.current',
|
|
2057
3693
|
path: ['utility', 'elevation', 'surface', 'current'],
|
|
2058
3694
|
description: "A dynamic token that represents the current surface color set by a parent element. It defaults to the 'elevation.surface' token value.",
|
|
2059
|
-
exampleValue: '#FFFFFF'
|
|
3695
|
+
exampleValue: '#FFFFFF',
|
|
3696
|
+
usageGuidelines: {
|
|
3697
|
+
usage: 'Code-specific tokens to aid with migration or enable features such as automatic elevation detection',
|
|
3698
|
+
cssProperties: []
|
|
3699
|
+
}
|
|
2060
3700
|
}, {
|
|
2061
3701
|
name: 'space.0',
|
|
2062
3702
|
path: ['space', '0'],
|
|
2063
3703
|
description: 'Equates to `0`. Use for resetting default spacing styles.',
|
|
2064
|
-
exampleValue: '0rem'
|
|
3704
|
+
exampleValue: '0rem',
|
|
3705
|
+
usageGuidelines: {
|
|
3706
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3707
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3708
|
+
}
|
|
2065
3709
|
}, {
|
|
2066
3710
|
name: 'space.025',
|
|
2067
3711
|
path: ['space', '025'],
|
|
2068
3712
|
description: 'Use for small and compact pieces of UI.',
|
|
2069
|
-
exampleValue: '0.125rem'
|
|
3713
|
+
exampleValue: '0.125rem',
|
|
3714
|
+
usageGuidelines: {
|
|
3715
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3716
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3717
|
+
}
|
|
2070
3718
|
}, {
|
|
2071
3719
|
name: 'space.050',
|
|
2072
3720
|
path: ['space', '050'],
|
|
2073
3721
|
description: 'Use for small and compact pieces of UI.',
|
|
2074
|
-
exampleValue: '0.25rem'
|
|
3722
|
+
exampleValue: '0.25rem',
|
|
3723
|
+
usageGuidelines: {
|
|
3724
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3725
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3726
|
+
}
|
|
2075
3727
|
}, {
|
|
2076
3728
|
name: 'space.075',
|
|
2077
3729
|
path: ['space', '075'],
|
|
2078
3730
|
description: 'Use for small and compact pieces of UI.',
|
|
2079
|
-
exampleValue: '0.375rem'
|
|
3731
|
+
exampleValue: '0.375rem',
|
|
3732
|
+
usageGuidelines: {
|
|
3733
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3734
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3735
|
+
}
|
|
2080
3736
|
}, {
|
|
2081
3737
|
name: 'space.100',
|
|
2082
3738
|
path: ['space', '100'],
|
|
2083
3739
|
description: 'Use for small and compact pieces of UI.',
|
|
2084
|
-
exampleValue: '0.5rem'
|
|
3740
|
+
exampleValue: '0.5rem',
|
|
3741
|
+
usageGuidelines: {
|
|
3742
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3743
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3744
|
+
}
|
|
2085
3745
|
}, {
|
|
2086
3746
|
name: 'space.150',
|
|
2087
3747
|
path: ['space', '150'],
|
|
2088
3748
|
description: 'Use for larger and less dense pieces of UI.',
|
|
2089
|
-
exampleValue: '0.75rem'
|
|
3749
|
+
exampleValue: '0.75rem',
|
|
3750
|
+
usageGuidelines: {
|
|
3751
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3752
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3753
|
+
}
|
|
2090
3754
|
}, {
|
|
2091
3755
|
name: 'space.200',
|
|
2092
3756
|
path: ['space', '200'],
|
|
2093
3757
|
description: 'Use for larger and less dense pieces of UI.',
|
|
2094
|
-
exampleValue: '1rem'
|
|
3758
|
+
exampleValue: '1rem',
|
|
3759
|
+
usageGuidelines: {
|
|
3760
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3761
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3762
|
+
}
|
|
2095
3763
|
}, {
|
|
2096
3764
|
name: 'space.250',
|
|
2097
3765
|
path: ['space', '250'],
|
|
2098
3766
|
description: 'Use for larger and less dense pieces of UI.',
|
|
2099
|
-
exampleValue: '1.25rem'
|
|
3767
|
+
exampleValue: '1.25rem',
|
|
3768
|
+
usageGuidelines: {
|
|
3769
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3770
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3771
|
+
}
|
|
2100
3772
|
}, {
|
|
2101
3773
|
name: 'space.300',
|
|
2102
3774
|
path: ['space', '300'],
|
|
2103
3775
|
description: 'Use for larger and less dense pieces of UI.',
|
|
2104
|
-
exampleValue: '1.5rem'
|
|
3776
|
+
exampleValue: '1.5rem',
|
|
3777
|
+
usageGuidelines: {
|
|
3778
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3779
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3780
|
+
}
|
|
2105
3781
|
}, {
|
|
2106
3782
|
name: 'space.400',
|
|
2107
3783
|
path: ['space', '400'],
|
|
2108
3784
|
description: 'Use for the largest pieces of UI and for layout elements.',
|
|
2109
|
-
exampleValue: '2rem'
|
|
3785
|
+
exampleValue: '2rem',
|
|
3786
|
+
usageGuidelines: {
|
|
3787
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3788
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3789
|
+
}
|
|
2110
3790
|
}, {
|
|
2111
3791
|
name: 'space.500',
|
|
2112
3792
|
path: ['space', '500'],
|
|
2113
3793
|
description: 'Use for the largest pieces of UI and for layout elements.',
|
|
2114
|
-
exampleValue: '2.5rem'
|
|
3794
|
+
exampleValue: '2.5rem',
|
|
3795
|
+
usageGuidelines: {
|
|
3796
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3797
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3798
|
+
}
|
|
2115
3799
|
}, {
|
|
2116
3800
|
name: 'space.600',
|
|
2117
3801
|
path: ['space', '600'],
|
|
2118
3802
|
description: 'Use for the largest pieces of UI and for layout elements.',
|
|
2119
|
-
exampleValue: '3rem'
|
|
3803
|
+
exampleValue: '3rem',
|
|
3804
|
+
usageGuidelines: {
|
|
3805
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3806
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3807
|
+
}
|
|
2120
3808
|
}, {
|
|
2121
3809
|
name: 'space.800',
|
|
2122
3810
|
path: ['space', '800'],
|
|
2123
3811
|
description: 'Use for the largest pieces of UI and for layout elements.',
|
|
2124
|
-
exampleValue: '4rem'
|
|
3812
|
+
exampleValue: '4rem',
|
|
3813
|
+
usageGuidelines: {
|
|
3814
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3815
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3816
|
+
}
|
|
2125
3817
|
}, {
|
|
2126
3818
|
name: 'space.1000',
|
|
2127
3819
|
path: ['space', '1000'],
|
|
2128
3820
|
description: 'Use for the largest pieces of UI and for layout elements.',
|
|
2129
|
-
exampleValue: '5rem'
|
|
3821
|
+
exampleValue: '5rem',
|
|
3822
|
+
usageGuidelines: {
|
|
3823
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3824
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3825
|
+
}
|
|
2130
3826
|
}, {
|
|
2131
3827
|
name: 'space.negative.025',
|
|
2132
3828
|
path: ['space', 'negative', '025'],
|
|
2133
3829
|
description: 'Use to negate parent whitespace or overlap small pieces of UI.',
|
|
2134
|
-
exampleValue: '-0.125rem'
|
|
3830
|
+
exampleValue: '-0.125rem',
|
|
3831
|
+
usageGuidelines: {
|
|
3832
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3833
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3834
|
+
}
|
|
2135
3835
|
}, {
|
|
2136
3836
|
name: 'space.negative.050',
|
|
2137
3837
|
path: ['space', 'negative', '050'],
|
|
2138
3838
|
description: 'Use to negate parent whitespace or overlap small pieces of UI.',
|
|
2139
|
-
exampleValue: '-0.25rem'
|
|
3839
|
+
exampleValue: '-0.25rem',
|
|
3840
|
+
usageGuidelines: {
|
|
3841
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3842
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3843
|
+
}
|
|
2140
3844
|
}, {
|
|
2141
3845
|
name: 'space.negative.075',
|
|
2142
3846
|
path: ['space', 'negative', '075'],
|
|
2143
3847
|
description: 'Use to negate parent whitespace or overlap small pieces of UI.',
|
|
2144
|
-
exampleValue: '-0.375rem'
|
|
3848
|
+
exampleValue: '-0.375rem',
|
|
3849
|
+
usageGuidelines: {
|
|
3850
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3851
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3852
|
+
}
|
|
2145
3853
|
}, {
|
|
2146
3854
|
name: 'space.negative.100',
|
|
2147
3855
|
path: ['space', 'negative', '100'],
|
|
2148
3856
|
description: 'Use to negate parent whitespace or overlap small pieces of UI.',
|
|
2149
|
-
exampleValue: '-0.5rem'
|
|
3857
|
+
exampleValue: '-0.5rem',
|
|
3858
|
+
usageGuidelines: {
|
|
3859
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3860
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3861
|
+
}
|
|
2150
3862
|
}, {
|
|
2151
3863
|
name: 'space.negative.150',
|
|
2152
3864
|
path: ['space', 'negative', '150'],
|
|
2153
3865
|
description: 'Use to negate parent whitespace or overlap larger pieces of UI.',
|
|
2154
|
-
exampleValue: '-0.75rem'
|
|
3866
|
+
exampleValue: '-0.75rem',
|
|
3867
|
+
usageGuidelines: {
|
|
3868
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3869
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3870
|
+
}
|
|
2155
3871
|
}, {
|
|
2156
3872
|
name: 'space.negative.200',
|
|
2157
3873
|
path: ['space', 'negative', '200'],
|
|
2158
3874
|
description: 'Use to negate parent whitespace or overlap larger pieces of UI.',
|
|
2159
|
-
exampleValue: '-1rem'
|
|
3875
|
+
exampleValue: '-1rem',
|
|
3876
|
+
usageGuidelines: {
|
|
3877
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3878
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3879
|
+
}
|
|
2160
3880
|
}, {
|
|
2161
3881
|
name: 'space.negative.250',
|
|
2162
3882
|
path: ['space', 'negative', '250'],
|
|
2163
3883
|
description: 'Use to negate parent whitespace or overlap larger pieces of UI.',
|
|
2164
|
-
exampleValue: '-1.25rem'
|
|
3884
|
+
exampleValue: '-1.25rem',
|
|
3885
|
+
usageGuidelines: {
|
|
3886
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3887
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3888
|
+
}
|
|
2165
3889
|
}, {
|
|
2166
3890
|
name: 'space.negative.300',
|
|
2167
3891
|
path: ['space', 'negative', '300'],
|
|
2168
3892
|
description: 'Use to negate parent whitespace or overlap larger pieces of UI.',
|
|
2169
|
-
exampleValue: '-1.5rem'
|
|
3893
|
+
exampleValue: '-1.5rem',
|
|
3894
|
+
usageGuidelines: {
|
|
3895
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3896
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3897
|
+
}
|
|
2170
3898
|
}, {
|
|
2171
3899
|
name: 'space.negative.400',
|
|
2172
3900
|
path: ['space', 'negative', '400'],
|
|
2173
3901
|
description: 'Use to negate parent whitespace or overlap the largest pieces of UI.',
|
|
2174
|
-
exampleValue: '-2rem'
|
|
3902
|
+
exampleValue: '-2rem',
|
|
3903
|
+
usageGuidelines: {
|
|
3904
|
+
usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
|
|
3905
|
+
cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
|
|
3906
|
+
}
|
|
2175
3907
|
}, {
|
|
2176
3908
|
name: 'font.heading.xxlarge',
|
|
2177
3909
|
path: ['font', 'heading', 'xxlarge'],
|
|
2178
3910
|
description: 'For overlapping brand with app promotions, such as marketplace content. Migrate instances of H900 to Heading XXL.',
|
|
2179
|
-
exampleValue: 'normal 653 2rem/2.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
3911
|
+
exampleValue: 'normal 653 2rem/2.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
3912
|
+
usageGuidelines: {
|
|
3913
|
+
usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
|
|
3914
|
+
cssProperties: ['font']
|
|
3915
|
+
}
|
|
2180
3916
|
}, {
|
|
2181
3917
|
name: 'font.heading.xlarge',
|
|
2182
3918
|
path: ['font', 'heading', 'xlarge'],
|
|
2183
3919
|
description: 'For overlapping brand with app promotions, such as marketplace content. Migrate instances of H800 to Heading XL.',
|
|
2184
|
-
exampleValue: 'normal 653 1.75rem/2rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
3920
|
+
exampleValue: 'normal 653 1.75rem/2rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
3921
|
+
usageGuidelines: {
|
|
3922
|
+
usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
|
|
3923
|
+
cssProperties: ['font']
|
|
3924
|
+
}
|
|
2185
3925
|
}, {
|
|
2186
3926
|
name: 'font.heading.large',
|
|
2187
3927
|
path: ['font', 'heading', 'large'],
|
|
2188
3928
|
description: 'App page titles, such as forms. Migrate instances of H700 to Heading L.',
|
|
2189
|
-
exampleValue: 'normal 653 1.5rem/1.75rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
3929
|
+
exampleValue: 'normal 653 1.5rem/1.75rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
3930
|
+
usageGuidelines: {
|
|
3931
|
+
usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
|
|
3932
|
+
cssProperties: ['font']
|
|
3933
|
+
}
|
|
2190
3934
|
}, {
|
|
2191
3935
|
name: 'font.heading.medium',
|
|
2192
3936
|
path: ['font', 'heading', 'medium'],
|
|
2193
3937
|
description: 'Headers in large components, such as modal dialogs. Migrate instances of H600 to Heading M.',
|
|
2194
|
-
exampleValue: 'normal 653 1.25rem/1.5rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
3938
|
+
exampleValue: 'normal 653 1.25rem/1.5rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
3939
|
+
usageGuidelines: {
|
|
3940
|
+
usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
|
|
3941
|
+
cssProperties: ['font']
|
|
3942
|
+
}
|
|
2195
3943
|
}, {
|
|
2196
3944
|
name: 'font.heading.small',
|
|
2197
3945
|
path: ['font', 'heading', 'small'],
|
|
2198
3946
|
description: 'For headers in small components where space is limited. Migrate instances of H500 to Heading S.',
|
|
2199
|
-
exampleValue: 'normal 653 1rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
3947
|
+
exampleValue: 'normal 653 1rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
3948
|
+
usageGuidelines: {
|
|
3949
|
+
usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
|
|
3950
|
+
cssProperties: ['font']
|
|
3951
|
+
}
|
|
2200
3952
|
}, {
|
|
2201
3953
|
name: 'font.heading.xsmall',
|
|
2202
3954
|
path: ['font', 'heading', 'xsmall'],
|
|
2203
3955
|
description: 'For headers in small components where space is limited. Migrate instances of H400 to Heading XS.',
|
|
2204
|
-
exampleValue: 'normal 653 0.875rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
3956
|
+
exampleValue: 'normal 653 0.875rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
3957
|
+
usageGuidelines: {
|
|
3958
|
+
usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
|
|
3959
|
+
cssProperties: ['font']
|
|
3960
|
+
}
|
|
2205
3961
|
}, {
|
|
2206
3962
|
name: 'font.heading.xxsmall',
|
|
2207
3963
|
path: ['font', 'heading', 'xxsmall'],
|
|
2208
3964
|
description: 'For headers in fine print or tight spaces. Use sparingly. Migrate instances of H100, H200 and H300 to Heading XXS.',
|
|
2209
|
-
exampleValue: 'normal 653 0.75rem/1rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
3965
|
+
exampleValue: 'normal 653 0.75rem/1rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
3966
|
+
usageGuidelines: {
|
|
3967
|
+
usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
|
|
3968
|
+
cssProperties: ['font']
|
|
3969
|
+
}
|
|
2210
3970
|
}, {
|
|
2211
3971
|
name: 'font.body.large',
|
|
2212
3972
|
path: ['font', 'body', 'large'],
|
|
2213
3973
|
description: 'For long-form text, such as in blogs.',
|
|
2214
|
-
exampleValue: 'normal 400 1rem/1.5rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
3974
|
+
exampleValue: 'normal 400 1rem/1.5rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
3975
|
+
usageGuidelines: {
|
|
3976
|
+
usage: 'A composite token that applies all font properties for standard body text (e.g. font.body)',
|
|
3977
|
+
cssProperties: ['font']
|
|
3978
|
+
}
|
|
2215
3979
|
}, {
|
|
2216
3980
|
name: 'font.body',
|
|
2217
3981
|
path: ['font', 'body', '[default]'],
|
|
2218
3982
|
description: 'Use in short descriptions or labels. The default size for text in components. Migrate instances of Paragraph Default and UI Text to Body M.',
|
|
2219
|
-
exampleValue: 'normal 400 0.875rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
3983
|
+
exampleValue: 'normal 400 0.875rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
3984
|
+
usageGuidelines: {
|
|
3985
|
+
usage: 'A composite token that applies all font properties for standard body text (e.g. font.body)',
|
|
3986
|
+
cssProperties: ['font']
|
|
3987
|
+
}
|
|
2220
3988
|
}, {
|
|
2221
3989
|
name: 'font.body.small',
|
|
2222
3990
|
path: ['font', 'body', 'small'],
|
|
2223
3991
|
description: 'Use in secondary level content such as fine print or semantic messaging. Use sparingly. Migrate instances of Small text to Body S.',
|
|
2224
|
-
exampleValue: 'normal 400 0.75rem/1rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
3992
|
+
exampleValue: 'normal 400 0.75rem/1rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
3993
|
+
usageGuidelines: {
|
|
3994
|
+
usage: 'A composite token that applies all font properties for standard body text (e.g. font.body)',
|
|
3995
|
+
cssProperties: ['font']
|
|
3996
|
+
}
|
|
2225
3997
|
}, {
|
|
2226
3998
|
name: 'font.body.UNSAFE_small',
|
|
2227
3999
|
path: ['font', 'body', 'UNSAFE_small'],
|
|
2228
4000
|
description: 'UNSAFE - Do not use. Temporary 12px fontsize token. Will be deprecated and replaced with stable small token',
|
|
2229
|
-
exampleValue: 'normal 400 0.75rem/1rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
4001
|
+
exampleValue: 'normal 400 0.75rem/1rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
4002
|
+
usageGuidelines: {
|
|
4003
|
+
usage: 'A composite token that applies all font properties for standard body text (e.g. font.body)',
|
|
4004
|
+
cssProperties: ['font']
|
|
4005
|
+
}
|
|
2230
4006
|
}, {
|
|
2231
4007
|
name: 'font.metric.large',
|
|
2232
4008
|
path: ['font', 'metric', 'large'],
|
|
2233
4009
|
description: 'Use to emphasize a number within a large donut.',
|
|
2234
|
-
exampleValue: 'normal 653 1.75rem/2rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
4010
|
+
exampleValue: 'normal 653 1.75rem/2rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
4011
|
+
usageGuidelines: {
|
|
4012
|
+
usage: 'Font settings for displaying numbers or metrics, ensuring legibility and alignment (e.g. font.metric)',
|
|
4013
|
+
cssProperties: ['font']
|
|
4014
|
+
}
|
|
2235
4015
|
}, {
|
|
2236
4016
|
name: 'font.metric.medium',
|
|
2237
4017
|
path: ['font', 'metric', 'medium'],
|
|
2238
4018
|
description: 'Use to emphasize a number within a medium donut.',
|
|
2239
|
-
exampleValue: 'normal 653 1.5rem/1.75rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
4019
|
+
exampleValue: 'normal 653 1.5rem/1.75rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
4020
|
+
usageGuidelines: {
|
|
4021
|
+
usage: 'Font settings for displaying numbers or metrics, ensuring legibility and alignment (e.g. font.metric)',
|
|
4022
|
+
cssProperties: ['font']
|
|
4023
|
+
}
|
|
2240
4024
|
}, {
|
|
2241
4025
|
name: 'font.metric.small',
|
|
2242
4026
|
path: ['font', 'metric', 'small'],
|
|
2243
4027
|
description: 'Use to emphasize a number and words in single-value tiles, or small donuts.',
|
|
2244
|
-
exampleValue: 'normal 653 1rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
4028
|
+
exampleValue: 'normal 653 1rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
4029
|
+
usageGuidelines: {
|
|
4030
|
+
usage: 'Font settings for displaying numbers or metrics, ensuring legibility and alignment (e.g. font.metric)',
|
|
4031
|
+
cssProperties: ['font']
|
|
4032
|
+
}
|
|
2245
4033
|
}, {
|
|
2246
4034
|
name: 'font.code',
|
|
2247
4035
|
path: ['font', 'code', '[default]'],
|
|
2248
4036
|
description: 'For representing code only, either inline or in code blocks.',
|
|
2249
|
-
exampleValue: 'normal 400 0.875em/1 "Atlassian Mono", ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace'
|
|
4037
|
+
exampleValue: 'normal 400 0.875em/1 "Atlassian Mono", ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace',
|
|
4038
|
+
usageGuidelines: {
|
|
4039
|
+
usage: 'Font settings for inline code and code blocks, enforcing monospace font and sizing (e.g. font.code)',
|
|
4040
|
+
cssProperties: ['font', 'font-family', 'font-size', 'font-weight', 'line-height']
|
|
4041
|
+
}
|
|
2250
4042
|
}, {
|
|
2251
4043
|
name: 'font.weight.regular',
|
|
2252
4044
|
path: ['font', 'weight', 'regular'],
|
|
2253
4045
|
description: 'Default font weight for body text styles.',
|
|
2254
|
-
exampleValue: '400'
|
|
4046
|
+
exampleValue: '400',
|
|
4047
|
+
usageGuidelines: {
|
|
4048
|
+
usage: 'Granular control of font weight (e.g. font.weight.regular, font.weight.semibold). Use only to override the default font tokens for custom typography components beyond what’s supported by Text, MetricText and Heading',
|
|
4049
|
+
cssProperties: ['font-weight']
|
|
4050
|
+
}
|
|
2255
4051
|
}, {
|
|
2256
4052
|
name: 'font.weight.medium',
|
|
2257
4053
|
path: ['font', 'weight', 'medium'],
|
|
2258
4054
|
description: 'For all text that may appear beside iconography, such as in a button.',
|
|
2259
|
-
exampleValue: '500'
|
|
4055
|
+
exampleValue: '500',
|
|
4056
|
+
usageGuidelines: {
|
|
4057
|
+
usage: 'Granular control of font weight (e.g. font.weight.regular, font.weight.semibold). Use only to override the default font tokens for custom typography components beyond what’s supported by Text, MetricText and Heading',
|
|
4058
|
+
cssProperties: ['font-weight']
|
|
4059
|
+
}
|
|
2260
4060
|
}, {
|
|
2261
4061
|
name: 'font.weight.semibold',
|
|
2262
4062
|
path: ['font', 'weight', 'semibold'],
|
|
2263
4063
|
description: 'Use with caution as fallback fonts do not support this font weight and will default to bold weight.',
|
|
2264
|
-
exampleValue: '600'
|
|
4064
|
+
exampleValue: '600',
|
|
4065
|
+
usageGuidelines: {
|
|
4066
|
+
usage: 'Granular control of font weight (e.g. font.weight.regular, font.weight.semibold). Use only to override the default font tokens for custom typography components beyond what’s supported by Text, MetricText and Heading',
|
|
4067
|
+
cssProperties: ['font-weight']
|
|
4068
|
+
}
|
|
2265
4069
|
}, {
|
|
2266
4070
|
name: 'font.weight.bold',
|
|
2267
4071
|
path: ['font', 'weight', 'bold'],
|
|
2268
4072
|
description: 'Use sparingly for emphasising text, such as in a lozenge.',
|
|
2269
|
-
exampleValue: '653'
|
|
4073
|
+
exampleValue: '653',
|
|
4074
|
+
usageGuidelines: {
|
|
4075
|
+
usage: 'Granular control of font weight (e.g. font.weight.regular, font.weight.semibold). Use only to override the default font tokens for custom typography components beyond what’s supported by Text, MetricText and Heading',
|
|
4076
|
+
cssProperties: ['font-weight']
|
|
4077
|
+
}
|
|
2270
4078
|
}, {
|
|
2271
4079
|
name: 'font.family.heading',
|
|
2272
4080
|
path: ['font', 'family', 'heading'],
|
|
2273
4081
|
description: 'For our default UI heading text.',
|
|
2274
|
-
exampleValue: '"Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
4082
|
+
exampleValue: '"Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
4083
|
+
usageGuidelines: {
|
|
4084
|
+
usage: 'Granular control of font family (e.g. font.family.body). Use only when overriding the default in composites',
|
|
4085
|
+
cssProperties: ['font-family']
|
|
4086
|
+
}
|
|
2275
4087
|
}, {
|
|
2276
4088
|
name: 'font.family.body',
|
|
2277
4089
|
path: ['font', 'family', 'body'],
|
|
2278
4090
|
description: 'For our default UI body text.',
|
|
2279
|
-
exampleValue: '"Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
4091
|
+
exampleValue: '"Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
4092
|
+
usageGuidelines: {
|
|
4093
|
+
usage: 'Granular control of font family (e.g. font.family.body). Use only when overriding the default in composites',
|
|
4094
|
+
cssProperties: ['font-family']
|
|
4095
|
+
}
|
|
2280
4096
|
}, {
|
|
2281
4097
|
name: 'font.family.code',
|
|
2282
4098
|
path: ['font', 'family', 'code'],
|
|
2283
4099
|
description: 'For representing code only.',
|
|
2284
|
-
exampleValue: '"Atlassian Mono", ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace'
|
|
4100
|
+
exampleValue: '"Atlassian Mono", ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace',
|
|
4101
|
+
usageGuidelines: {
|
|
4102
|
+
usage: 'Granular control of font family (e.g. font.family.body). Use only when overriding the default in composites',
|
|
4103
|
+
cssProperties: ['font-family']
|
|
4104
|
+
}
|
|
2285
4105
|
}, {
|
|
2286
4106
|
name: 'font.family.brand.heading',
|
|
2287
4107
|
path: ['font', 'family', 'brand', 'heading'],
|
|
2288
4108
|
description: 'For our brand heading text. Uses Charlie Display.',
|
|
2289
|
-
exampleValue: '"Charlie Display", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
4109
|
+
exampleValue: '"Charlie Display", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
4110
|
+
usageGuidelines: {
|
|
4111
|
+
usage: 'Granular control of font family (e.g. font.family.body). Use only when overriding the default in composites',
|
|
4112
|
+
cssProperties: ['font-family']
|
|
4113
|
+
}
|
|
2290
4114
|
}, {
|
|
2291
4115
|
name: 'font.family.brand.body',
|
|
2292
4116
|
path: ['font', 'family', 'brand', 'body'],
|
|
2293
4117
|
description: 'For our brand body text. Uses Charlie Text.',
|
|
2294
|
-
exampleValue: '"Charlie Text", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
|
|
4118
|
+
exampleValue: '"Charlie Text", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
|
|
4119
|
+
usageGuidelines: {
|
|
4120
|
+
usage: 'Granular control of font family (e.g. font.family.body). Use only when overriding the default in composites',
|
|
4121
|
+
cssProperties: ['font-family']
|
|
4122
|
+
}
|
|
2295
4123
|
}, {
|
|
2296
4124
|
name: 'radius.xsmall',
|
|
2297
4125
|
path: ['radius', 'xsmall'],
|
|
2298
4126
|
description: 'Use for small detail elements: badges, checkboxes, avatar labels, keyboard shortcuts.',
|
|
2299
|
-
exampleValue: '0.125rem'
|
|
4127
|
+
exampleValue: '0.125rem',
|
|
4128
|
+
usageGuidelines: {
|
|
4129
|
+
usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
|
|
4130
|
+
cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
|
|
4131
|
+
}
|
|
2300
4132
|
}, {
|
|
2301
4133
|
name: 'radius.small',
|
|
2302
4134
|
path: ['radius', 'small'],
|
|
2303
4135
|
description: 'Use for supporting elements: labels, lozenges, timestamps, tags, dates, tooltip containers, imagery inside a table, compact buttons.',
|
|
2304
|
-
exampleValue: '0.25rem'
|
|
4136
|
+
exampleValue: '0.25rem',
|
|
4137
|
+
usageGuidelines: {
|
|
4138
|
+
usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
|
|
4139
|
+
cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
|
|
4140
|
+
}
|
|
2305
4141
|
}, {
|
|
2306
4142
|
name: 'radius.medium',
|
|
2307
4143
|
path: ['radius', 'medium'],
|
|
2308
4144
|
description: 'Use for interactive elements: buttons, inputs, text areas, selects, navigation items, smart links.',
|
|
2309
|
-
exampleValue: '0.375rem'
|
|
4145
|
+
exampleValue: '0.375rem',
|
|
4146
|
+
usageGuidelines: {
|
|
4147
|
+
usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
|
|
4148
|
+
cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
|
|
4149
|
+
}
|
|
2310
4150
|
}, {
|
|
2311
4151
|
name: 'radius.large',
|
|
2312
4152
|
path: ['radius', 'large'],
|
|
2313
4153
|
description: 'Use for containment elements: cards, in-page containers, floating UI, dropdown menus.',
|
|
2314
|
-
exampleValue: '0.5rem'
|
|
4154
|
+
exampleValue: '0.5rem',
|
|
4155
|
+
usageGuidelines: {
|
|
4156
|
+
usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
|
|
4157
|
+
cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
|
|
4158
|
+
}
|
|
2315
4159
|
}, {
|
|
2316
4160
|
name: 'radius.xlarge',
|
|
2317
4161
|
path: ['radius', 'xlarge'],
|
|
2318
4162
|
description: 'Use for large page elements: full-page containers, large containers, modals, Kanban columns, tables.',
|
|
2319
|
-
exampleValue: '0.75rem'
|
|
4163
|
+
exampleValue: '0.75rem',
|
|
4164
|
+
usageGuidelines: {
|
|
4165
|
+
usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
|
|
4166
|
+
cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
|
|
4167
|
+
}
|
|
2320
4168
|
}, {
|
|
2321
4169
|
name: 'radius.xxlarge',
|
|
2322
4170
|
path: ['radius', 'xxlarge'],
|
|
2323
4171
|
description: 'Use for video player containers.',
|
|
2324
|
-
exampleValue: '1rem'
|
|
4172
|
+
exampleValue: '1rem',
|
|
4173
|
+
usageGuidelines: {
|
|
4174
|
+
usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
|
|
4175
|
+
cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
|
|
4176
|
+
}
|
|
2325
4177
|
}, {
|
|
2326
4178
|
name: 'radius.full',
|
|
2327
4179
|
path: ['radius', 'full'],
|
|
2328
4180
|
description: 'Use for circular elements (user/people related): avatars, names, user-related UI, emoji reactions.',
|
|
2329
|
-
exampleValue: '624.9375rem'
|
|
4181
|
+
exampleValue: '624.9375rem',
|
|
4182
|
+
usageGuidelines: {
|
|
4183
|
+
usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
|
|
4184
|
+
cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
|
|
4185
|
+
}
|
|
2330
4186
|
}, {
|
|
2331
4187
|
name: 'radius.tile',
|
|
2332
4188
|
path: ['radius', 'tile'],
|
|
2333
4189
|
description: 'Use this specific radius token exclusively for the tile component system.',
|
|
2334
|
-
exampleValue: '25%'
|
|
4190
|
+
exampleValue: '25%',
|
|
4191
|
+
usageGuidelines: {
|
|
4192
|
+
usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
|
|
4193
|
+
cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
|
|
4194
|
+
}
|
|
2335
4195
|
}, {
|
|
2336
4196
|
name: 'border.width',
|
|
2337
4197
|
path: ['border', 'width', '[default]'],
|
|
2338
4198
|
description: 'The default width for all standard component borders and dividers.',
|
|
2339
|
-
exampleValue: '0.0625rem'
|
|
4199
|
+
exampleValue: '0.0625rem',
|
|
4200
|
+
usageGuidelines: {
|
|
4201
|
+
usage: 'Controls the thickness of borders/dividers (e.g. border.width, border.width.selected). Use to standardize border widths throughout UI',
|
|
4202
|
+
cssProperties: ['border-width']
|
|
4203
|
+
}
|
|
2340
4204
|
}, {
|
|
2341
4205
|
name: 'border.width.selected',
|
|
2342
4206
|
path: ['border', 'width', 'selected'],
|
|
2343
4207
|
description: 'The width used to indicate a selected element, such as an active tab or a chosen item.',
|
|
2344
|
-
exampleValue: '0.125rem'
|
|
4208
|
+
exampleValue: '0.125rem',
|
|
4209
|
+
usageGuidelines: {
|
|
4210
|
+
usage: 'Controls the thickness of borders/dividers (e.g. border.width, border.width.selected). Use to standardize border widths throughout UI',
|
|
4211
|
+
cssProperties: ['border-width']
|
|
4212
|
+
}
|
|
2345
4213
|
}, {
|
|
2346
4214
|
name: 'border.width.focused',
|
|
2347
4215
|
path: ['border', 'width', 'focused'],
|
|
2348
4216
|
description: 'The width used for the focus ring on interactive elements.',
|
|
2349
|
-
exampleValue: '0.125rem'
|
|
4217
|
+
exampleValue: '0.125rem',
|
|
4218
|
+
usageGuidelines: {
|
|
4219
|
+
usage: 'Controls the thickness of borders/dividers (e.g. border.width, border.width.selected). Use to standardize border widths throughout UI',
|
|
4220
|
+
cssProperties: ['border-width']
|
|
4221
|
+
}
|
|
2350
4222
|
}];
|