@atlaskit/tokens 0.1.1 → 0.4.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 +39 -0
- package/README.md +28 -0
- package/babel-plugin/package.json +7 -0
- package/css/atlassian-dark.css +89 -88
- package/css/atlassian-light.css +89 -88
- package/dist/cjs/artifacts/rename-mapping.js +23 -0
- package/dist/cjs/artifacts/token-default-values.js +105 -0
- package/dist/cjs/artifacts/token-names.js +101 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +1786 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +1766 -0
- package/dist/cjs/artifacts/types.js +5 -0
- package/dist/cjs/babel-plugin/index.js +15 -0
- package/dist/cjs/babel-plugin/plugin.js +176 -0
- package/dist/cjs/entry-points/rename-mapping.js +1 -1
- package/dist/cjs/entry-points/token-names.js +1 -1
- package/dist/cjs/figma/synchronize-figma-tokens.js +43 -41
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/tokens/atlassian-dark/utility/utility.js +3 -0
- package/dist/cjs/tokens/atlassian-light/utility/utility.js +3 -0
- package/dist/cjs/tokens/default/color/accent.js +26 -13
- package/dist/cjs/tokens/default/color/background.js +98 -49
- package/dist/cjs/tokens/default/color/border.js +4 -2
- package/dist/cjs/tokens/default/color/icon-border.js +10 -5
- package/dist/cjs/tokens/default/color/overlay.js +4 -2
- package/dist/cjs/tokens/default/color/text.js +28 -14
- package/dist/cjs/tokens/default/shadow/shadow.js +4 -2
- package/dist/cjs/tokens/default/utility/utility.js +10 -2
- package/dist/cjs/tokens/palette.js +145 -260
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/artifacts/rename-mapping.js +16 -0
- package/dist/es2019/artifacts/token-default-values.js +98 -0
- package/dist/es2019/artifacts/token-names.js +94 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +1779 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +1759 -0
- package/dist/es2019/artifacts/types.js +1 -0
- package/dist/es2019/babel-plugin/index.js +1 -0
- package/dist/es2019/babel-plugin/plugin.js +151 -0
- package/dist/es2019/entry-points/rename-mapping.js +1 -1
- package/dist/es2019/entry-points/token-names.js +1 -1
- package/dist/es2019/figma/synchronize-figma-tokens.js +43 -41
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/tokens/atlassian-dark/utility/utility.js +3 -0
- package/dist/es2019/tokens/atlassian-light/utility/utility.js +3 -0
- package/dist/es2019/tokens/default/color/accent.js +26 -13
- package/dist/es2019/tokens/default/color/background.js +103 -49
- package/dist/es2019/tokens/default/color/border.js +4 -2
- package/dist/es2019/tokens/default/color/icon-border.js +28 -5
- package/dist/es2019/tokens/default/color/overlay.js +4 -2
- package/dist/es2019/tokens/default/color/text.js +35 -14
- package/dist/es2019/tokens/default/shadow/shadow.js +12 -2
- package/dist/es2019/tokens/default/utility/utility.js +10 -2
- package/dist/es2019/tokens/palette.js +145 -260
- package/dist/es2019/version.json +1 -1
- package/dist/esm/artifacts/rename-mapping.js +16 -0
- package/dist/esm/artifacts/token-default-values.js +98 -0
- package/dist/esm/artifacts/token-names.js +94 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +1779 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-light.js +1759 -0
- package/dist/esm/artifacts/types.js +1 -0
- package/dist/esm/babel-plugin/index.js +1 -0
- package/dist/esm/babel-plugin/plugin.js +158 -0
- package/dist/esm/entry-points/rename-mapping.js +1 -1
- package/dist/esm/entry-points/token-names.js +1 -1
- package/dist/esm/figma/synchronize-figma-tokens.js +43 -41
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/tokens/atlassian-dark/utility/utility.js +3 -0
- package/dist/esm/tokens/atlassian-light/utility/utility.js +3 -0
- package/dist/esm/tokens/default/color/accent.js +26 -13
- package/dist/esm/tokens/default/color/background.js +98 -49
- package/dist/esm/tokens/default/color/border.js +4 -2
- package/dist/esm/tokens/default/color/icon-border.js +10 -5
- package/dist/esm/tokens/default/color/overlay.js +4 -2
- package/dist/esm/tokens/default/color/text.js +28 -14
- package/dist/esm/tokens/default/shadow/shadow.js +4 -2
- package/dist/esm/tokens/default/utility/utility.js +10 -2
- package/dist/esm/tokens/palette.js +145 -260
- package/dist/esm/version.json +1 -1
- package/dist/types/artifacts/rename-mapping.d.ts +17 -0
- package/dist/types/artifacts/token-default-values.d.ts +95 -0
- package/dist/types/artifacts/token-names.d.ts +184 -0
- package/dist/types/artifacts/tokens-raw/atlassian-dark.d.ts +80 -0
- package/dist/types/artifacts/tokens-raw/atlassian-light.d.ts +56 -0
- package/dist/types/artifacts/types.d.ts +4 -0
- package/dist/types/babel-plugin/index.d.ts +1 -0
- package/dist/types/babel-plugin/plugin.d.ts +14 -0
- package/dist/types/entry-points/babel-plugin.d.ts +1 -0
- package/dist/types/entry-points/rename-mapping.d.ts +1 -1
- package/dist/types/entry-points/token-names.d.ts +2 -2
- package/dist/types/get-token.d.ts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/tokens/atlassian-dark/utility/utility.d.ts +10 -2
- package/dist/types/tokens/atlassian-light/utility/utility.d.ts +10 -2
- package/dist/types/tokens/default/utility/utility.d.ts +138 -2
- package/dist/types/types.d.ts +49 -14
- package/package.json +17 -5
- package/tokens-browser-extension/README.md +28 -0
- package/tokens-browser-extension/atlassian-theme.css +375 -0
- package/tokens-browser-extension/background.js +75 -0
- package/tokens-browser-extension/content-script.js +75 -0
- package/tokens-browser-extension/devtools.html +1 -0
- package/tokens-browser-extension/devtools.js +14 -0
- package/tokens-browser-extension/manifest.json +36 -0
- package/tokens-browser-extension/messageback-script.js +10 -0
- package/tokens-browser-extension/messaging.js +36 -0
- package/tokens-browser-extension/panel.html +25 -0
- package/tokens-browser-extension/panel.js +46 -0
- package/tokens-browser-extension/toast.png +0 -0
- package/dist/cjs/tokens/rename-mapping.js +0 -29
- package/dist/cjs/tokens/token-names.js +0 -100
- package/dist/es2019/tokens/rename-mapping.js +0 -21
- package/dist/es2019/tokens/token-names.js +0 -93
- package/dist/esm/tokens/rename-mapping.js +0 -21
- package/dist/esm/tokens/token-names.js +0 -93
- package/dist/types/tokens/rename-mapping.d.ts +0 -24
- package/dist/types/tokens/token-names.d.ts +0 -182
|
@@ -0,0 +1,1779 @@
|
|
|
1
|
+
// THIS IS AN AUTO-GENERATED FILE DO NOT MODIFY DIRECTLY
|
|
2
|
+
// Re-generate by running `yarn build tokens`.
|
|
3
|
+
var tokens = [{
|
|
4
|
+
"attributes": {
|
|
5
|
+
"group": "paint",
|
|
6
|
+
"state": "active",
|
|
7
|
+
"description": "Use for blue backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
8
|
+
},
|
|
9
|
+
"value": "#0C66E4",
|
|
10
|
+
"filePath": "src/tokens/atlassian-dark/color/accent.tsx",
|
|
11
|
+
"isSource": true,
|
|
12
|
+
"original": {
|
|
13
|
+
"attributes": {
|
|
14
|
+
"group": "paint",
|
|
15
|
+
"state": "active",
|
|
16
|
+
"description": "Use for blue backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
17
|
+
},
|
|
18
|
+
"value": "B700"
|
|
19
|
+
},
|
|
20
|
+
"name": "color.accent.boldBlue",
|
|
21
|
+
"path": ["color", "accent", "boldBlue"]
|
|
22
|
+
}, {
|
|
23
|
+
"attributes": {
|
|
24
|
+
"group": "paint",
|
|
25
|
+
"state": "active",
|
|
26
|
+
"description": "Use for green backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
27
|
+
},
|
|
28
|
+
"value": "#1F845A",
|
|
29
|
+
"filePath": "src/tokens/atlassian-dark/color/accent.tsx",
|
|
30
|
+
"isSource": true,
|
|
31
|
+
"original": {
|
|
32
|
+
"attributes": {
|
|
33
|
+
"group": "paint",
|
|
34
|
+
"state": "active",
|
|
35
|
+
"description": "Use for green backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
36
|
+
},
|
|
37
|
+
"value": "G700"
|
|
38
|
+
},
|
|
39
|
+
"name": "color.accent.boldGreen",
|
|
40
|
+
"path": ["color", "accent", "boldGreen"]
|
|
41
|
+
}, {
|
|
42
|
+
"attributes": {
|
|
43
|
+
"group": "paint",
|
|
44
|
+
"state": "active",
|
|
45
|
+
"description": "Use for orange backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
46
|
+
},
|
|
47
|
+
"value": "#B65C02",
|
|
48
|
+
"filePath": "src/tokens/atlassian-dark/color/accent.tsx",
|
|
49
|
+
"isSource": true,
|
|
50
|
+
"original": {
|
|
51
|
+
"attributes": {
|
|
52
|
+
"group": "paint",
|
|
53
|
+
"state": "active",
|
|
54
|
+
"description": "Use for orange backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
55
|
+
},
|
|
56
|
+
"value": "O700"
|
|
57
|
+
},
|
|
58
|
+
"name": "color.accent.boldOrange",
|
|
59
|
+
"path": ["color", "accent", "boldOrange"]
|
|
60
|
+
}, {
|
|
61
|
+
"attributes": {
|
|
62
|
+
"group": "paint",
|
|
63
|
+
"state": "active",
|
|
64
|
+
"description": "Use for purple backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
65
|
+
},
|
|
66
|
+
"value": "#6E5DC6",
|
|
67
|
+
"filePath": "src/tokens/atlassian-dark/color/accent.tsx",
|
|
68
|
+
"isSource": true,
|
|
69
|
+
"original": {
|
|
70
|
+
"attributes": {
|
|
71
|
+
"group": "paint",
|
|
72
|
+
"state": "active",
|
|
73
|
+
"description": "Use for purple backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
74
|
+
},
|
|
75
|
+
"value": "P700"
|
|
76
|
+
},
|
|
77
|
+
"name": "color.accent.boldPurple",
|
|
78
|
+
"path": ["color", "accent", "boldPurple"]
|
|
79
|
+
}, {
|
|
80
|
+
"attributes": {
|
|
81
|
+
"group": "paint",
|
|
82
|
+
"state": "active",
|
|
83
|
+
"description": "Use for red backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
84
|
+
},
|
|
85
|
+
"value": "#CA3521",
|
|
86
|
+
"filePath": "src/tokens/atlassian-dark/color/accent.tsx",
|
|
87
|
+
"isSource": true,
|
|
88
|
+
"original": {
|
|
89
|
+
"attributes": {
|
|
90
|
+
"group": "paint",
|
|
91
|
+
"state": "active",
|
|
92
|
+
"description": "Use for red backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
93
|
+
},
|
|
94
|
+
"value": "R700"
|
|
95
|
+
},
|
|
96
|
+
"name": "color.accent.boldRed",
|
|
97
|
+
"path": ["color", "accent", "boldRed"]
|
|
98
|
+
}, {
|
|
99
|
+
"attributes": {
|
|
100
|
+
"group": "paint",
|
|
101
|
+
"state": "active",
|
|
102
|
+
"description": "Use for teal backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
103
|
+
},
|
|
104
|
+
"value": "#1D7F8C",
|
|
105
|
+
"filePath": "src/tokens/atlassian-dark/color/accent.tsx",
|
|
106
|
+
"isSource": true,
|
|
107
|
+
"original": {
|
|
108
|
+
"attributes": {
|
|
109
|
+
"group": "paint",
|
|
110
|
+
"state": "active",
|
|
111
|
+
"description": "Use for teal backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
112
|
+
},
|
|
113
|
+
"value": "T700"
|
|
114
|
+
},
|
|
115
|
+
"name": "color.accent.boldTeal",
|
|
116
|
+
"path": ["color", "accent", "boldTeal"]
|
|
117
|
+
}, {
|
|
118
|
+
"attributes": {
|
|
119
|
+
"group": "paint",
|
|
120
|
+
"state": "active",
|
|
121
|
+
"description": "Use for blue subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
122
|
+
},
|
|
123
|
+
"value": "#09326C",
|
|
124
|
+
"filePath": "src/tokens/atlassian-dark/color/accent.tsx",
|
|
125
|
+
"isSource": true,
|
|
126
|
+
"original": {
|
|
127
|
+
"attributes": {
|
|
128
|
+
"group": "paint",
|
|
129
|
+
"state": "active",
|
|
130
|
+
"description": "Use for blue subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
131
|
+
},
|
|
132
|
+
"value": "B900"
|
|
133
|
+
},
|
|
134
|
+
"name": "color.accent.subtleBlue",
|
|
135
|
+
"path": ["color", "accent", "subtleBlue"]
|
|
136
|
+
}, {
|
|
137
|
+
"attributes": {
|
|
138
|
+
"group": "paint",
|
|
139
|
+
"state": "active",
|
|
140
|
+
"description": "Use for green subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
141
|
+
},
|
|
142
|
+
"value": "#164B35",
|
|
143
|
+
"filePath": "src/tokens/atlassian-dark/color/accent.tsx",
|
|
144
|
+
"isSource": true,
|
|
145
|
+
"original": {
|
|
146
|
+
"attributes": {
|
|
147
|
+
"group": "paint",
|
|
148
|
+
"state": "active",
|
|
149
|
+
"description": "Use for green subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
150
|
+
},
|
|
151
|
+
"value": "G900"
|
|
152
|
+
},
|
|
153
|
+
"name": "color.accent.subtleGreen",
|
|
154
|
+
"path": ["color", "accent", "subtleGreen"]
|
|
155
|
+
}, {
|
|
156
|
+
"attributes": {
|
|
157
|
+
"group": "paint",
|
|
158
|
+
"state": "active",
|
|
159
|
+
"description": "Use for magenta subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
160
|
+
},
|
|
161
|
+
"value": "#50253F",
|
|
162
|
+
"filePath": "src/tokens/atlassian-dark/color/accent.tsx",
|
|
163
|
+
"isSource": true,
|
|
164
|
+
"original": {
|
|
165
|
+
"attributes": {
|
|
166
|
+
"group": "paint",
|
|
167
|
+
"state": "active",
|
|
168
|
+
"description": "Use for magenta subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
169
|
+
},
|
|
170
|
+
"value": "M900"
|
|
171
|
+
},
|
|
172
|
+
"name": "color.accent.subtleMagenta",
|
|
173
|
+
"path": ["color", "accent", "subtleMagenta"]
|
|
174
|
+
}, {
|
|
175
|
+
"attributes": {
|
|
176
|
+
"group": "paint",
|
|
177
|
+
"state": "active",
|
|
178
|
+
"description": "Use for orange subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
179
|
+
},
|
|
180
|
+
"value": "#5F3811",
|
|
181
|
+
"filePath": "src/tokens/atlassian-dark/color/accent.tsx",
|
|
182
|
+
"isSource": true,
|
|
183
|
+
"original": {
|
|
184
|
+
"attributes": {
|
|
185
|
+
"group": "paint",
|
|
186
|
+
"state": "active",
|
|
187
|
+
"description": "Use for orange subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
188
|
+
},
|
|
189
|
+
"value": "O900"
|
|
190
|
+
},
|
|
191
|
+
"name": "color.accent.subtleOrange",
|
|
192
|
+
"path": ["color", "accent", "subtleOrange"]
|
|
193
|
+
}, {
|
|
194
|
+
"attributes": {
|
|
195
|
+
"group": "paint",
|
|
196
|
+
"state": "active",
|
|
197
|
+
"description": "Use for purple subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
198
|
+
},
|
|
199
|
+
"value": "#352C63",
|
|
200
|
+
"filePath": "src/tokens/atlassian-dark/color/accent.tsx",
|
|
201
|
+
"isSource": true,
|
|
202
|
+
"original": {
|
|
203
|
+
"attributes": {
|
|
204
|
+
"group": "paint",
|
|
205
|
+
"state": "active",
|
|
206
|
+
"description": "Use for purple subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
207
|
+
},
|
|
208
|
+
"value": "P900"
|
|
209
|
+
},
|
|
210
|
+
"name": "color.accent.subtlePurple",
|
|
211
|
+
"path": ["color", "accent", "subtlePurple"]
|
|
212
|
+
}, {
|
|
213
|
+
"attributes": {
|
|
214
|
+
"group": "paint",
|
|
215
|
+
"state": "active",
|
|
216
|
+
"description": "Use for red subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
217
|
+
},
|
|
218
|
+
"value": "#601E16",
|
|
219
|
+
"filePath": "src/tokens/atlassian-dark/color/accent.tsx",
|
|
220
|
+
"isSource": true,
|
|
221
|
+
"original": {
|
|
222
|
+
"attributes": {
|
|
223
|
+
"group": "paint",
|
|
224
|
+
"state": "active",
|
|
225
|
+
"description": "Use for red subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
226
|
+
},
|
|
227
|
+
"value": "R900"
|
|
228
|
+
},
|
|
229
|
+
"name": "color.accent.subtleRed",
|
|
230
|
+
"path": ["color", "accent", "subtleRed"]
|
|
231
|
+
}, {
|
|
232
|
+
"attributes": {
|
|
233
|
+
"group": "paint",
|
|
234
|
+
"state": "active",
|
|
235
|
+
"description": "Use for teal subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
236
|
+
},
|
|
237
|
+
"value": "#1D474C",
|
|
238
|
+
"filePath": "src/tokens/atlassian-dark/color/accent.tsx",
|
|
239
|
+
"isSource": true,
|
|
240
|
+
"original": {
|
|
241
|
+
"attributes": {
|
|
242
|
+
"group": "paint",
|
|
243
|
+
"state": "active",
|
|
244
|
+
"description": "Use for teal subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
245
|
+
},
|
|
246
|
+
"value": "T900"
|
|
247
|
+
},
|
|
248
|
+
"name": "color.accent.subtleTeal",
|
|
249
|
+
"path": ["color", "accent", "subtleTeal"]
|
|
250
|
+
}, {
|
|
251
|
+
"attributes": {
|
|
252
|
+
"group": "paint",
|
|
253
|
+
"state": "active",
|
|
254
|
+
"description": "Use as a secondary background for the UI"
|
|
255
|
+
},
|
|
256
|
+
"value": "#03040442",
|
|
257
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
258
|
+
"isSource": true,
|
|
259
|
+
"original": {
|
|
260
|
+
"attributes": {
|
|
261
|
+
"group": "paint",
|
|
262
|
+
"state": "active",
|
|
263
|
+
"description": "Use as a secondary background for the UI"
|
|
264
|
+
},
|
|
265
|
+
"value": "DN-100A"
|
|
266
|
+
},
|
|
267
|
+
"name": "color.background.sunken",
|
|
268
|
+
"path": ["color", "background", "sunken"]
|
|
269
|
+
}, {
|
|
270
|
+
"attributes": {
|
|
271
|
+
"group": "paint",
|
|
272
|
+
"state": "active",
|
|
273
|
+
"description": "Use as the primary background for the UI"
|
|
274
|
+
},
|
|
275
|
+
"value": "#161A1D",
|
|
276
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
277
|
+
"isSource": true,
|
|
278
|
+
"original": {
|
|
279
|
+
"attributes": {
|
|
280
|
+
"group": "paint",
|
|
281
|
+
"state": "active",
|
|
282
|
+
"description": "Use as the primary background for the UI"
|
|
283
|
+
},
|
|
284
|
+
"value": "DN0"
|
|
285
|
+
},
|
|
286
|
+
"name": "color.background.default",
|
|
287
|
+
"path": ["color", "background", "default"]
|
|
288
|
+
}, {
|
|
289
|
+
"attributes": {
|
|
290
|
+
"group": "paint",
|
|
291
|
+
"state": "active",
|
|
292
|
+
"description": "Use for the background of raised cards, such as Jira cards on a Kanban board.\nCombine with shadow.card."
|
|
293
|
+
},
|
|
294
|
+
"value": "#1D2125",
|
|
295
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
296
|
+
"isSource": true,
|
|
297
|
+
"original": {
|
|
298
|
+
"attributes": {
|
|
299
|
+
"group": "paint",
|
|
300
|
+
"state": "active",
|
|
301
|
+
"description": "Use for the background of raised cards, such as Jira cards on a Kanban board.\nCombine with shadow.card."
|
|
302
|
+
},
|
|
303
|
+
"value": "DN100"
|
|
304
|
+
},
|
|
305
|
+
"name": "color.background.card",
|
|
306
|
+
"path": ["color", "background", "card"]
|
|
307
|
+
}, {
|
|
308
|
+
"attributes": {
|
|
309
|
+
"group": "paint",
|
|
310
|
+
"state": "active",
|
|
311
|
+
"description": "\nUse for the background of overlay elements, such as modals, dropdown menus, flags, and inline dialogs (i.e. elements that sit on top of the UI).\n\nAlso use for the background of raised cards in a dragged state.\n\nCombine with shadow.overlay."
|
|
312
|
+
},
|
|
313
|
+
"value": "#22272B",
|
|
314
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
315
|
+
"isSource": true,
|
|
316
|
+
"original": {
|
|
317
|
+
"attributes": {
|
|
318
|
+
"group": "paint",
|
|
319
|
+
"state": "active",
|
|
320
|
+
"description": "\nUse for the background of overlay elements, such as modals, dropdown menus, flags, and inline dialogs (i.e. elements that sit on top of the UI).\n\nAlso use for the background of raised cards in a dragged state.\n\nCombine with shadow.overlay."
|
|
321
|
+
},
|
|
322
|
+
"value": "DN200"
|
|
323
|
+
},
|
|
324
|
+
"name": "color.background.overlay",
|
|
325
|
+
"path": ["color", "background", "overlay"]
|
|
326
|
+
}, {
|
|
327
|
+
"attributes": {
|
|
328
|
+
"group": "paint",
|
|
329
|
+
"state": "active",
|
|
330
|
+
"description": "Use for backgrounds of elements in a selected state"
|
|
331
|
+
},
|
|
332
|
+
"value": "#A1BDD914",
|
|
333
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
334
|
+
"isSource": true,
|
|
335
|
+
"original": {
|
|
336
|
+
"attributes": {
|
|
337
|
+
"group": "paint",
|
|
338
|
+
"state": "active",
|
|
339
|
+
"description": "Use for backgrounds of elements in a selected state"
|
|
340
|
+
},
|
|
341
|
+
"value": "DN200A"
|
|
342
|
+
},
|
|
343
|
+
"name": "color.background.selected.resting",
|
|
344
|
+
"path": ["color", "background", "selected", "resting"]
|
|
345
|
+
}, {
|
|
346
|
+
"attributes": {
|
|
347
|
+
"group": "paint",
|
|
348
|
+
"state": "active",
|
|
349
|
+
"description": "Hover state of background.selected"
|
|
350
|
+
},
|
|
351
|
+
"value": "#A6C5E229",
|
|
352
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
353
|
+
"isSource": true,
|
|
354
|
+
"original": {
|
|
355
|
+
"attributes": {
|
|
356
|
+
"group": "paint",
|
|
357
|
+
"state": "active",
|
|
358
|
+
"description": "Hover state of background.selected"
|
|
359
|
+
},
|
|
360
|
+
"value": "DN300A"
|
|
361
|
+
},
|
|
362
|
+
"name": "color.background.selected.hover",
|
|
363
|
+
"path": ["color", "background", "selected", "hover"]
|
|
364
|
+
}, {
|
|
365
|
+
"attributes": {
|
|
366
|
+
"group": "paint",
|
|
367
|
+
"state": "active",
|
|
368
|
+
"description": "Pressed state of background.selected"
|
|
369
|
+
},
|
|
370
|
+
"value": "#BFDBF847",
|
|
371
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
372
|
+
"isSource": true,
|
|
373
|
+
"original": {
|
|
374
|
+
"attributes": {
|
|
375
|
+
"group": "paint",
|
|
376
|
+
"state": "active",
|
|
377
|
+
"description": "Pressed state of background.selected"
|
|
378
|
+
},
|
|
379
|
+
"value": "DN400A"
|
|
380
|
+
},
|
|
381
|
+
"name": "color.background.selected.pressed",
|
|
382
|
+
"path": ["color", "background", "selected", "pressed"]
|
|
383
|
+
}, {
|
|
384
|
+
"attributes": {
|
|
385
|
+
"group": "paint",
|
|
386
|
+
"state": "active",
|
|
387
|
+
"description": "Use for the screen overlay that appears with modal dialogs"
|
|
388
|
+
},
|
|
389
|
+
"value": "#03040442",
|
|
390
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
391
|
+
"isSource": true,
|
|
392
|
+
"original": {
|
|
393
|
+
"attributes": {
|
|
394
|
+
"group": "paint",
|
|
395
|
+
"state": "active",
|
|
396
|
+
"description": "Use for the screen overlay that appears with modal dialogs"
|
|
397
|
+
},
|
|
398
|
+
"value": "DN-100A"
|
|
399
|
+
},
|
|
400
|
+
"name": "color.background.blanket",
|
|
401
|
+
"path": ["color", "background", "blanket"]
|
|
402
|
+
}, {
|
|
403
|
+
"attributes": {
|
|
404
|
+
"group": "paint",
|
|
405
|
+
"state": "active",
|
|
406
|
+
"description": "Use for backgrounds of elements in a disabled state"
|
|
407
|
+
},
|
|
408
|
+
"value": "#A1BDD914",
|
|
409
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
410
|
+
"isSource": true,
|
|
411
|
+
"original": {
|
|
412
|
+
"attributes": {
|
|
413
|
+
"group": "paint",
|
|
414
|
+
"state": "active",
|
|
415
|
+
"description": "Use for backgrounds of elements in a disabled state"
|
|
416
|
+
},
|
|
417
|
+
"value": "DN200A"
|
|
418
|
+
},
|
|
419
|
+
"name": "color.background.disabled",
|
|
420
|
+
"path": ["color", "background", "disabled"]
|
|
421
|
+
}, {
|
|
422
|
+
"attributes": {
|
|
423
|
+
"group": "paint",
|
|
424
|
+
"state": "active",
|
|
425
|
+
"description": "A vibrant background for small UI elements like primary buttons and bold in progress lozenges."
|
|
426
|
+
},
|
|
427
|
+
"value": "#579DFF",
|
|
428
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
429
|
+
"isSource": true,
|
|
430
|
+
"original": {
|
|
431
|
+
"attributes": {
|
|
432
|
+
"group": "paint",
|
|
433
|
+
"state": "active",
|
|
434
|
+
"description": "A vibrant background for small UI elements like primary buttons and bold in progress lozenges."
|
|
435
|
+
},
|
|
436
|
+
"value": "B400"
|
|
437
|
+
},
|
|
438
|
+
"name": "color.background.boldBrand.resting",
|
|
439
|
+
"path": ["color", "background", "boldBrand", "resting"]
|
|
440
|
+
}, {
|
|
441
|
+
"attributes": {
|
|
442
|
+
"group": "paint",
|
|
443
|
+
"state": "active",
|
|
444
|
+
"description": "Hover state of background.boldBrand"
|
|
445
|
+
},
|
|
446
|
+
"value": "#85B8FF",
|
|
447
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
448
|
+
"isSource": true,
|
|
449
|
+
"original": {
|
|
450
|
+
"attributes": {
|
|
451
|
+
"group": "paint",
|
|
452
|
+
"state": "active",
|
|
453
|
+
"description": "Hover state of background.boldBrand"
|
|
454
|
+
},
|
|
455
|
+
"value": "B300"
|
|
456
|
+
},
|
|
457
|
+
"name": "color.background.boldBrand.hover",
|
|
458
|
+
"path": ["color", "background", "boldBrand", "hover"]
|
|
459
|
+
}, {
|
|
460
|
+
"attributes": {
|
|
461
|
+
"group": "paint",
|
|
462
|
+
"state": "active",
|
|
463
|
+
"description": "Pressed state of background.boldBrand"
|
|
464
|
+
},
|
|
465
|
+
"value": "#CCE0FF",
|
|
466
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
467
|
+
"isSource": true,
|
|
468
|
+
"original": {
|
|
469
|
+
"attributes": {
|
|
470
|
+
"group": "paint",
|
|
471
|
+
"state": "active",
|
|
472
|
+
"description": "Pressed state of background.boldBrand"
|
|
473
|
+
},
|
|
474
|
+
"value": "B200"
|
|
475
|
+
},
|
|
476
|
+
"name": "color.background.boldBrand.pressed",
|
|
477
|
+
"path": ["color", "background", "boldBrand", "pressed"]
|
|
478
|
+
}, {
|
|
479
|
+
"attributes": {
|
|
480
|
+
"group": "paint",
|
|
481
|
+
"state": "active",
|
|
482
|
+
"description": "Use for subdued backgrounds of UI elements like information section messages and in progress lozenges."
|
|
483
|
+
},
|
|
484
|
+
"value": "#082145",
|
|
485
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
486
|
+
"isSource": true,
|
|
487
|
+
"original": {
|
|
488
|
+
"attributes": {
|
|
489
|
+
"group": "paint",
|
|
490
|
+
"state": "active",
|
|
491
|
+
"description": "Use for subdued backgrounds of UI elements like information section messages and in progress lozenges."
|
|
492
|
+
},
|
|
493
|
+
"value": "B1000"
|
|
494
|
+
},
|
|
495
|
+
"name": "color.background.subtleBrand.resting",
|
|
496
|
+
"path": ["color", "background", "subtleBrand", "resting"]
|
|
497
|
+
}, {
|
|
498
|
+
"attributes": {
|
|
499
|
+
"group": "paint",
|
|
500
|
+
"state": "active",
|
|
501
|
+
"description": "Hover state for background.subtleBrand"
|
|
502
|
+
},
|
|
503
|
+
"value": "#09326C",
|
|
504
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
505
|
+
"isSource": true,
|
|
506
|
+
"original": {
|
|
507
|
+
"attributes": {
|
|
508
|
+
"group": "paint",
|
|
509
|
+
"state": "active",
|
|
510
|
+
"description": "Hover state for background.subtleBrand"
|
|
511
|
+
},
|
|
512
|
+
"value": "B900"
|
|
513
|
+
},
|
|
514
|
+
"name": "color.background.subtleBrand.hover",
|
|
515
|
+
"path": ["color", "background", "subtleBrand", "hover"]
|
|
516
|
+
}, {
|
|
517
|
+
"attributes": {
|
|
518
|
+
"group": "paint",
|
|
519
|
+
"state": "active",
|
|
520
|
+
"description": "Pressed state for background.subtleBrand"
|
|
521
|
+
},
|
|
522
|
+
"value": "#0055CC",
|
|
523
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
524
|
+
"isSource": true,
|
|
525
|
+
"original": {
|
|
526
|
+
"attributes": {
|
|
527
|
+
"group": "paint",
|
|
528
|
+
"state": "active",
|
|
529
|
+
"description": "Pressed state for background.subtleBrand"
|
|
530
|
+
},
|
|
531
|
+
"value": "B800"
|
|
532
|
+
},
|
|
533
|
+
"name": "color.background.subtleBrand.pressed",
|
|
534
|
+
"path": ["color", "background", "subtleBrand", "pressed"]
|
|
535
|
+
}, {
|
|
536
|
+
"attributes": {
|
|
537
|
+
"group": "paint",
|
|
538
|
+
"state": "active",
|
|
539
|
+
"description": "A vibrant background for small UI elements like danger buttons and bold removed lozenges."
|
|
540
|
+
},
|
|
541
|
+
"value": "#F87462",
|
|
542
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
543
|
+
"isSource": true,
|
|
544
|
+
"original": {
|
|
545
|
+
"attributes": {
|
|
546
|
+
"group": "paint",
|
|
547
|
+
"state": "active",
|
|
548
|
+
"description": "A vibrant background for small UI elements like danger buttons and bold removed lozenges."
|
|
549
|
+
},
|
|
550
|
+
"value": "R400"
|
|
551
|
+
},
|
|
552
|
+
"name": "color.background.boldDanger.resting",
|
|
553
|
+
"path": ["color", "background", "boldDanger", "resting"]
|
|
554
|
+
}, {
|
|
555
|
+
"attributes": {
|
|
556
|
+
"group": "paint",
|
|
557
|
+
"state": "active",
|
|
558
|
+
"description": "Hover state of background.boldDanger"
|
|
559
|
+
},
|
|
560
|
+
"value": "#FF9C8F",
|
|
561
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
562
|
+
"isSource": true,
|
|
563
|
+
"original": {
|
|
564
|
+
"attributes": {
|
|
565
|
+
"group": "paint",
|
|
566
|
+
"state": "active",
|
|
567
|
+
"description": "Hover state of background.boldDanger"
|
|
568
|
+
},
|
|
569
|
+
"value": "R300"
|
|
570
|
+
},
|
|
571
|
+
"name": "color.background.boldDanger.hover",
|
|
572
|
+
"path": ["color", "background", "boldDanger", "hover"]
|
|
573
|
+
}, {
|
|
574
|
+
"attributes": {
|
|
575
|
+
"group": "paint",
|
|
576
|
+
"state": "active",
|
|
577
|
+
"description": "Pressed state of background.boldDanger"
|
|
578
|
+
},
|
|
579
|
+
"value": "#FFD2CC",
|
|
580
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
581
|
+
"isSource": true,
|
|
582
|
+
"original": {
|
|
583
|
+
"attributes": {
|
|
584
|
+
"group": "paint",
|
|
585
|
+
"state": "active",
|
|
586
|
+
"description": "Pressed state of background.boldDanger"
|
|
587
|
+
},
|
|
588
|
+
"value": "R200"
|
|
589
|
+
},
|
|
590
|
+
"name": "color.background.boldDanger.pressed",
|
|
591
|
+
"path": ["color", "background", "boldDanger", "pressed"]
|
|
592
|
+
}, {
|
|
593
|
+
"attributes": {
|
|
594
|
+
"group": "paint",
|
|
595
|
+
"state": "active",
|
|
596
|
+
"description": "Use for subdued backgrounds of UI elements like error section messages and removed lozenges."
|
|
597
|
+
},
|
|
598
|
+
"value": "#391813",
|
|
599
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
600
|
+
"isSource": true,
|
|
601
|
+
"original": {
|
|
602
|
+
"attributes": {
|
|
603
|
+
"group": "paint",
|
|
604
|
+
"state": "active",
|
|
605
|
+
"description": "Use for subdued backgrounds of UI elements like error section messages and removed lozenges."
|
|
606
|
+
},
|
|
607
|
+
"value": "R1000"
|
|
608
|
+
},
|
|
609
|
+
"name": "color.background.subtleDanger.resting",
|
|
610
|
+
"path": ["color", "background", "subtleDanger", "resting"]
|
|
611
|
+
}, {
|
|
612
|
+
"attributes": {
|
|
613
|
+
"group": "paint",
|
|
614
|
+
"state": "active",
|
|
615
|
+
"description": "Hover state for background.subtleDanger"
|
|
616
|
+
},
|
|
617
|
+
"value": "#601E16",
|
|
618
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
619
|
+
"isSource": true,
|
|
620
|
+
"original": {
|
|
621
|
+
"attributes": {
|
|
622
|
+
"group": "paint",
|
|
623
|
+
"state": "active",
|
|
624
|
+
"description": "Hover state for background.subtleDanger"
|
|
625
|
+
},
|
|
626
|
+
"value": "R900"
|
|
627
|
+
},
|
|
628
|
+
"name": "color.background.subtleDanger.hover",
|
|
629
|
+
"path": ["color", "background", "subtleDanger", "hover"]
|
|
630
|
+
}, {
|
|
631
|
+
"attributes": {
|
|
632
|
+
"group": "paint",
|
|
633
|
+
"state": "active",
|
|
634
|
+
"description": "Pressed state for background.subtleDanger"
|
|
635
|
+
},
|
|
636
|
+
"value": "#AE2A19",
|
|
637
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
638
|
+
"isSource": true,
|
|
639
|
+
"original": {
|
|
640
|
+
"attributes": {
|
|
641
|
+
"group": "paint",
|
|
642
|
+
"state": "active",
|
|
643
|
+
"description": "Pressed state for background.subtleDanger"
|
|
644
|
+
},
|
|
645
|
+
"value": "R800"
|
|
646
|
+
},
|
|
647
|
+
"name": "color.background.subtleDanger.pressed",
|
|
648
|
+
"path": ["color", "background", "subtleDanger", "pressed"]
|
|
649
|
+
}, {
|
|
650
|
+
"attributes": {
|
|
651
|
+
"group": "paint",
|
|
652
|
+
"state": "active",
|
|
653
|
+
"description": "A vibrant background for small UI elements like warning buttons and bold moved lozenges."
|
|
654
|
+
},
|
|
655
|
+
"value": "#E2B203",
|
|
656
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
657
|
+
"isSource": true,
|
|
658
|
+
"original": {
|
|
659
|
+
"attributes": {
|
|
660
|
+
"group": "paint",
|
|
661
|
+
"state": "active",
|
|
662
|
+
"description": "A vibrant background for small UI elements like warning buttons and bold moved lozenges."
|
|
663
|
+
},
|
|
664
|
+
"value": "Y400"
|
|
665
|
+
},
|
|
666
|
+
"name": "color.background.boldWarning.resting",
|
|
667
|
+
"path": ["color", "background", "boldWarning", "resting"]
|
|
668
|
+
}, {
|
|
669
|
+
"attributes": {
|
|
670
|
+
"group": "paint",
|
|
671
|
+
"state": "active",
|
|
672
|
+
"description": "Hover state of background.boldWarning"
|
|
673
|
+
},
|
|
674
|
+
"value": "#F5CD47",
|
|
675
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
676
|
+
"isSource": true,
|
|
677
|
+
"original": {
|
|
678
|
+
"attributes": {
|
|
679
|
+
"group": "paint",
|
|
680
|
+
"state": "active",
|
|
681
|
+
"description": "Hover state of background.boldWarning"
|
|
682
|
+
},
|
|
683
|
+
"value": "Y300"
|
|
684
|
+
},
|
|
685
|
+
"name": "color.background.boldWarning.hover",
|
|
686
|
+
"path": ["color", "background", "boldWarning", "hover"]
|
|
687
|
+
}, {
|
|
688
|
+
"attributes": {
|
|
689
|
+
"group": "paint",
|
|
690
|
+
"state": "active",
|
|
691
|
+
"description": "Pressed state of background.boldWarning"
|
|
692
|
+
},
|
|
693
|
+
"value": "#F8E6A0",
|
|
694
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
695
|
+
"isSource": true,
|
|
696
|
+
"original": {
|
|
697
|
+
"attributes": {
|
|
698
|
+
"group": "paint",
|
|
699
|
+
"state": "active",
|
|
700
|
+
"description": "Pressed state of background.boldWarning"
|
|
701
|
+
},
|
|
702
|
+
"value": "Y200"
|
|
703
|
+
},
|
|
704
|
+
"name": "color.background.boldWarning.pressed",
|
|
705
|
+
"path": ["color", "background", "boldWarning", "pressed"]
|
|
706
|
+
}, {
|
|
707
|
+
"attributes": {
|
|
708
|
+
"group": "paint",
|
|
709
|
+
"state": "active",
|
|
710
|
+
"description": "Use for subdued backgrounds of UI elements like warning section messages and moved lozenges."
|
|
711
|
+
},
|
|
712
|
+
"value": "#3D2E00",
|
|
713
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
714
|
+
"isSource": true,
|
|
715
|
+
"original": {
|
|
716
|
+
"attributes": {
|
|
717
|
+
"group": "paint",
|
|
718
|
+
"state": "active",
|
|
719
|
+
"description": "Use for subdued backgrounds of UI elements like warning section messages and moved lozenges."
|
|
720
|
+
},
|
|
721
|
+
"value": "Y1000"
|
|
722
|
+
},
|
|
723
|
+
"name": "color.background.subtleWarning.resting",
|
|
724
|
+
"path": ["color", "background", "subtleWarning", "resting"]
|
|
725
|
+
}, {
|
|
726
|
+
"attributes": {
|
|
727
|
+
"group": "paint",
|
|
728
|
+
"state": "active",
|
|
729
|
+
"description": "Hover state for background.subtleWarning"
|
|
730
|
+
},
|
|
731
|
+
"value": "#533F04",
|
|
732
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
733
|
+
"isSource": true,
|
|
734
|
+
"original": {
|
|
735
|
+
"attributes": {
|
|
736
|
+
"group": "paint",
|
|
737
|
+
"state": "active",
|
|
738
|
+
"description": "Hover state for background.subtleWarning"
|
|
739
|
+
},
|
|
740
|
+
"value": "Y900"
|
|
741
|
+
},
|
|
742
|
+
"name": "color.background.subtleWarning.hover",
|
|
743
|
+
"path": ["color", "background", "subtleWarning", "hover"]
|
|
744
|
+
}, {
|
|
745
|
+
"attributes": {
|
|
746
|
+
"group": "paint",
|
|
747
|
+
"state": "active",
|
|
748
|
+
"description": "Pressed state for background.subtleWarning"
|
|
749
|
+
},
|
|
750
|
+
"value": "#7F5F01",
|
|
751
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
752
|
+
"isSource": true,
|
|
753
|
+
"original": {
|
|
754
|
+
"attributes": {
|
|
755
|
+
"group": "paint",
|
|
756
|
+
"state": "active",
|
|
757
|
+
"description": "Pressed state for background.subtleWarning"
|
|
758
|
+
},
|
|
759
|
+
"value": "Y800"
|
|
760
|
+
},
|
|
761
|
+
"name": "color.background.subtleWarning.pressed",
|
|
762
|
+
"path": ["color", "background", "subtleWarning", "pressed"]
|
|
763
|
+
}, {
|
|
764
|
+
"attributes": {
|
|
765
|
+
"group": "paint",
|
|
766
|
+
"state": "active",
|
|
767
|
+
"description": "A vibrant background for small UI elements like checked toggles and bold success lozenges."
|
|
768
|
+
},
|
|
769
|
+
"value": "#4BCE97",
|
|
770
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
771
|
+
"isSource": true,
|
|
772
|
+
"original": {
|
|
773
|
+
"attributes": {
|
|
774
|
+
"group": "paint",
|
|
775
|
+
"state": "active",
|
|
776
|
+
"description": "A vibrant background for small UI elements like checked toggles and bold success lozenges."
|
|
777
|
+
},
|
|
778
|
+
"value": "G400"
|
|
779
|
+
},
|
|
780
|
+
"name": "color.background.boldSuccess.resting",
|
|
781
|
+
"path": ["color", "background", "boldSuccess", "resting"]
|
|
782
|
+
}, {
|
|
783
|
+
"attributes": {
|
|
784
|
+
"group": "paint",
|
|
785
|
+
"state": "active",
|
|
786
|
+
"description": "Hover state of background.boldSuccess"
|
|
787
|
+
},
|
|
788
|
+
"value": "#7EE2B8",
|
|
789
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
790
|
+
"isSource": true,
|
|
791
|
+
"original": {
|
|
792
|
+
"attributes": {
|
|
793
|
+
"group": "paint",
|
|
794
|
+
"state": "active",
|
|
795
|
+
"description": "Hover state of background.boldSuccess"
|
|
796
|
+
},
|
|
797
|
+
"value": "G300"
|
|
798
|
+
},
|
|
799
|
+
"name": "color.background.boldSuccess.hover",
|
|
800
|
+
"path": ["color", "background", "boldSuccess", "hover"]
|
|
801
|
+
}, {
|
|
802
|
+
"attributes": {
|
|
803
|
+
"group": "paint",
|
|
804
|
+
"state": "active",
|
|
805
|
+
"description": "Pressed state of background.boldSuccess"
|
|
806
|
+
},
|
|
807
|
+
"value": "#BAF3DB",
|
|
808
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
809
|
+
"isSource": true,
|
|
810
|
+
"original": {
|
|
811
|
+
"attributes": {
|
|
812
|
+
"group": "paint",
|
|
813
|
+
"state": "active",
|
|
814
|
+
"description": "Pressed state of background.boldSuccess"
|
|
815
|
+
},
|
|
816
|
+
"value": "G200"
|
|
817
|
+
},
|
|
818
|
+
"name": "color.background.boldSuccess.pressed",
|
|
819
|
+
"path": ["color", "background", "boldSuccess", "pressed"]
|
|
820
|
+
}, {
|
|
821
|
+
"attributes": {
|
|
822
|
+
"group": "paint",
|
|
823
|
+
"state": "active",
|
|
824
|
+
"description": "Use for subdued backgrounds of UI elements like success section messages and success lozenges. "
|
|
825
|
+
},
|
|
826
|
+
"value": "#133527",
|
|
827
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
828
|
+
"isSource": true,
|
|
829
|
+
"original": {
|
|
830
|
+
"attributes": {
|
|
831
|
+
"group": "paint",
|
|
832
|
+
"state": "active",
|
|
833
|
+
"description": "Use for subdued backgrounds of UI elements like success section messages and success lozenges. "
|
|
834
|
+
},
|
|
835
|
+
"value": "G1000"
|
|
836
|
+
},
|
|
837
|
+
"name": "color.background.subtleSuccess.resting",
|
|
838
|
+
"path": ["color", "background", "subtleSuccess", "resting"]
|
|
839
|
+
}, {
|
|
840
|
+
"attributes": {
|
|
841
|
+
"group": "paint",
|
|
842
|
+
"state": "active",
|
|
843
|
+
"description": "Hover state for background.subtleSuccess"
|
|
844
|
+
},
|
|
845
|
+
"value": "#164B35",
|
|
846
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
847
|
+
"isSource": true,
|
|
848
|
+
"original": {
|
|
849
|
+
"attributes": {
|
|
850
|
+
"group": "paint",
|
|
851
|
+
"state": "active",
|
|
852
|
+
"description": "Hover state for background.subtleSuccess"
|
|
853
|
+
},
|
|
854
|
+
"value": "G900"
|
|
855
|
+
},
|
|
856
|
+
"name": "color.background.subtleSuccess.hover",
|
|
857
|
+
"path": ["color", "background", "subtleSuccess", "hover"]
|
|
858
|
+
}, {
|
|
859
|
+
"attributes": {
|
|
860
|
+
"group": "paint",
|
|
861
|
+
"state": "active",
|
|
862
|
+
"description": "Pressed state for background.subtleSuccess"
|
|
863
|
+
},
|
|
864
|
+
"value": "#216E4E",
|
|
865
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
866
|
+
"isSource": true,
|
|
867
|
+
"original": {
|
|
868
|
+
"attributes": {
|
|
869
|
+
"group": "paint",
|
|
870
|
+
"state": "active",
|
|
871
|
+
"description": "Pressed state for background.subtleSuccess"
|
|
872
|
+
},
|
|
873
|
+
"value": "G800"
|
|
874
|
+
},
|
|
875
|
+
"name": "color.background.subtleSuccess.pressed",
|
|
876
|
+
"path": ["color", "background", "subtleSuccess", "pressed"]
|
|
877
|
+
}, {
|
|
878
|
+
"attributes": {
|
|
879
|
+
"group": "paint",
|
|
880
|
+
"state": "active",
|
|
881
|
+
"description": "A vibrant background for small UI elements like onboarding buttons and bold new lozenges."
|
|
882
|
+
},
|
|
883
|
+
"value": "#9F8FEF",
|
|
884
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
885
|
+
"isSource": true,
|
|
886
|
+
"original": {
|
|
887
|
+
"attributes": {
|
|
888
|
+
"group": "paint",
|
|
889
|
+
"state": "active",
|
|
890
|
+
"description": "A vibrant background for small UI elements like onboarding buttons and bold new lozenges."
|
|
891
|
+
},
|
|
892
|
+
"value": "P400"
|
|
893
|
+
},
|
|
894
|
+
"name": "color.background.boldDiscovery.resting",
|
|
895
|
+
"path": ["color", "background", "boldDiscovery", "resting"]
|
|
896
|
+
}, {
|
|
897
|
+
"attributes": {
|
|
898
|
+
"group": "paint",
|
|
899
|
+
"state": "active",
|
|
900
|
+
"description": "Hover state of background.boldDiscovery"
|
|
901
|
+
},
|
|
902
|
+
"value": "#B8ACF6",
|
|
903
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
904
|
+
"isSource": true,
|
|
905
|
+
"original": {
|
|
906
|
+
"attributes": {
|
|
907
|
+
"group": "paint",
|
|
908
|
+
"state": "active",
|
|
909
|
+
"description": "Hover state of background.boldDiscovery"
|
|
910
|
+
},
|
|
911
|
+
"value": "P300"
|
|
912
|
+
},
|
|
913
|
+
"name": "color.background.boldDiscovery.hover",
|
|
914
|
+
"path": ["color", "background", "boldDiscovery", "hover"]
|
|
915
|
+
}, {
|
|
916
|
+
"attributes": {
|
|
917
|
+
"group": "paint",
|
|
918
|
+
"state": "active",
|
|
919
|
+
"description": "Pressed state of background.boldDiscovery"
|
|
920
|
+
},
|
|
921
|
+
"value": "#DFD8FD",
|
|
922
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
923
|
+
"isSource": true,
|
|
924
|
+
"original": {
|
|
925
|
+
"attributes": {
|
|
926
|
+
"group": "paint",
|
|
927
|
+
"state": "active",
|
|
928
|
+
"description": "Pressed state of background.boldDiscovery"
|
|
929
|
+
},
|
|
930
|
+
"value": "P200"
|
|
931
|
+
},
|
|
932
|
+
"name": "color.background.boldDiscovery.pressed",
|
|
933
|
+
"path": ["color", "background", "boldDiscovery", "pressed"]
|
|
934
|
+
}, {
|
|
935
|
+
"attributes": {
|
|
936
|
+
"group": "paint",
|
|
937
|
+
"state": "active",
|
|
938
|
+
"description": "Use for subdued backgrounds of UI elements like discovery section messages and new lozenges."
|
|
939
|
+
},
|
|
940
|
+
"value": "#231C3F",
|
|
941
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
942
|
+
"isSource": true,
|
|
943
|
+
"original": {
|
|
944
|
+
"attributes": {
|
|
945
|
+
"group": "paint",
|
|
946
|
+
"state": "active",
|
|
947
|
+
"description": "Use for subdued backgrounds of UI elements like discovery section messages and new lozenges."
|
|
948
|
+
},
|
|
949
|
+
"value": "P1000"
|
|
950
|
+
},
|
|
951
|
+
"name": "color.background.subtleDiscovery.resting",
|
|
952
|
+
"path": ["color", "background", "subtleDiscovery", "resting"]
|
|
953
|
+
}, {
|
|
954
|
+
"attributes": {
|
|
955
|
+
"group": "paint",
|
|
956
|
+
"state": "active",
|
|
957
|
+
"description": "Hover state for background.subtleDiscovery"
|
|
958
|
+
},
|
|
959
|
+
"value": "#352C63",
|
|
960
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
961
|
+
"isSource": true,
|
|
962
|
+
"original": {
|
|
963
|
+
"attributes": {
|
|
964
|
+
"group": "paint",
|
|
965
|
+
"state": "active",
|
|
966
|
+
"description": "Hover state for background.subtleDiscovery"
|
|
967
|
+
},
|
|
968
|
+
"value": "P900"
|
|
969
|
+
},
|
|
970
|
+
"name": "color.background.subtleDiscovery.hover",
|
|
971
|
+
"path": ["color", "background", "subtleDiscovery", "hover"]
|
|
972
|
+
}, {
|
|
973
|
+
"attributes": {
|
|
974
|
+
"group": "paint",
|
|
975
|
+
"state": "active",
|
|
976
|
+
"description": "Pressed state for background.subtleDiscovery"
|
|
977
|
+
},
|
|
978
|
+
"value": "#5E4DB2",
|
|
979
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
980
|
+
"isSource": true,
|
|
981
|
+
"original": {
|
|
982
|
+
"attributes": {
|
|
983
|
+
"group": "paint",
|
|
984
|
+
"state": "active",
|
|
985
|
+
"description": "Pressed state for background.subtleDiscovery"
|
|
986
|
+
},
|
|
987
|
+
"value": "P800"
|
|
988
|
+
},
|
|
989
|
+
"name": "color.background.subtleDiscovery.pressed",
|
|
990
|
+
"path": ["color", "background", "subtleDiscovery", "pressed"]
|
|
991
|
+
}, {
|
|
992
|
+
"attributes": {
|
|
993
|
+
"group": "paint",
|
|
994
|
+
"state": "active",
|
|
995
|
+
"description": "A vibrant background for small UI elements like unchecked toggles and bold default lozenges."
|
|
996
|
+
},
|
|
997
|
+
"value": "#9FADBC",
|
|
998
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
999
|
+
"isSource": true,
|
|
1000
|
+
"original": {
|
|
1001
|
+
"attributes": {
|
|
1002
|
+
"group": "paint",
|
|
1003
|
+
"state": "active",
|
|
1004
|
+
"description": "A vibrant background for small UI elements like unchecked toggles and bold default lozenges."
|
|
1005
|
+
},
|
|
1006
|
+
"value": "DN800"
|
|
1007
|
+
},
|
|
1008
|
+
"name": "color.background.boldNeutral.resting",
|
|
1009
|
+
"path": ["color", "background", "boldNeutral", "resting"]
|
|
1010
|
+
}, {
|
|
1011
|
+
"attributes": {
|
|
1012
|
+
"group": "paint",
|
|
1013
|
+
"state": "active",
|
|
1014
|
+
"description": "Hover state of background.boldNeutral"
|
|
1015
|
+
},
|
|
1016
|
+
"value": "#B6C2CF",
|
|
1017
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
1018
|
+
"isSource": true,
|
|
1019
|
+
"original": {
|
|
1020
|
+
"attributes": {
|
|
1021
|
+
"group": "paint",
|
|
1022
|
+
"state": "active",
|
|
1023
|
+
"description": "Hover state of background.boldNeutral"
|
|
1024
|
+
},
|
|
1025
|
+
"value": "DN900"
|
|
1026
|
+
},
|
|
1027
|
+
"name": "color.background.boldNeutral.hover",
|
|
1028
|
+
"path": ["color", "background", "boldNeutral", "hover"]
|
|
1029
|
+
}, {
|
|
1030
|
+
"attributes": {
|
|
1031
|
+
"group": "paint",
|
|
1032
|
+
"state": "active",
|
|
1033
|
+
"description": "Pressed state of background.boldNeutral"
|
|
1034
|
+
},
|
|
1035
|
+
"value": "#C7D1DB",
|
|
1036
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
1037
|
+
"isSource": true,
|
|
1038
|
+
"original": {
|
|
1039
|
+
"attributes": {
|
|
1040
|
+
"group": "paint",
|
|
1041
|
+
"state": "active",
|
|
1042
|
+
"description": "Pressed state of background.boldNeutral"
|
|
1043
|
+
},
|
|
1044
|
+
"value": "DN1000"
|
|
1045
|
+
},
|
|
1046
|
+
"name": "color.background.boldNeutral.pressed",
|
|
1047
|
+
"path": ["color", "background", "boldNeutral", "pressed"]
|
|
1048
|
+
}, {
|
|
1049
|
+
"attributes": {
|
|
1050
|
+
"group": "paint",
|
|
1051
|
+
"state": "active",
|
|
1052
|
+
"description": "Hover state for UIs that don’t have a default background, such as menu items or subtle buttons."
|
|
1053
|
+
},
|
|
1054
|
+
"value": "#A1BDD914",
|
|
1055
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
1056
|
+
"isSource": true,
|
|
1057
|
+
"original": {
|
|
1058
|
+
"attributes": {
|
|
1059
|
+
"group": "paint",
|
|
1060
|
+
"state": "active",
|
|
1061
|
+
"description": "Hover state for UIs that don’t have a default background, such as menu items or subtle buttons."
|
|
1062
|
+
},
|
|
1063
|
+
"value": "DN200A"
|
|
1064
|
+
},
|
|
1065
|
+
"name": "color.background.transparentNeutral.hover",
|
|
1066
|
+
"path": ["color", "background", "transparentNeutral", "hover"]
|
|
1067
|
+
}, {
|
|
1068
|
+
"attributes": {
|
|
1069
|
+
"group": "paint",
|
|
1070
|
+
"state": "active",
|
|
1071
|
+
"description": "Pressed state for UIs that don’t have a default background, such as menu items or subtle buttons."
|
|
1072
|
+
},
|
|
1073
|
+
"value": "#A6C5E229",
|
|
1074
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
1075
|
+
"isSource": true,
|
|
1076
|
+
"original": {
|
|
1077
|
+
"attributes": {
|
|
1078
|
+
"group": "paint",
|
|
1079
|
+
"state": "active",
|
|
1080
|
+
"description": "Pressed state for UIs that don’t have a default background, such as menu items or subtle buttons."
|
|
1081
|
+
},
|
|
1082
|
+
"value": "DN300A"
|
|
1083
|
+
},
|
|
1084
|
+
"name": "color.background.transparentNeutral.pressed",
|
|
1085
|
+
"path": ["color", "background", "transparentNeutral", "pressed"]
|
|
1086
|
+
}, {
|
|
1087
|
+
"attributes": {
|
|
1088
|
+
"group": "paint",
|
|
1089
|
+
"state": "active",
|
|
1090
|
+
"description": "Use as the default background of UI elements like buttons, lozenges, and tags."
|
|
1091
|
+
},
|
|
1092
|
+
"value": "#A1BDD914",
|
|
1093
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
1094
|
+
"isSource": true,
|
|
1095
|
+
"original": {
|
|
1096
|
+
"attributes": {
|
|
1097
|
+
"group": "paint",
|
|
1098
|
+
"state": "active",
|
|
1099
|
+
"description": "Use as the default background of UI elements like buttons, lozenges, and tags."
|
|
1100
|
+
},
|
|
1101
|
+
"value": "DN200A"
|
|
1102
|
+
},
|
|
1103
|
+
"name": "color.background.subtleNeutral.resting",
|
|
1104
|
+
"path": ["color", "background", "subtleNeutral", "resting"]
|
|
1105
|
+
}, {
|
|
1106
|
+
"attributes": {
|
|
1107
|
+
"group": "paint",
|
|
1108
|
+
"state": "active",
|
|
1109
|
+
"description": "Hover state for background.subtleNeutral"
|
|
1110
|
+
},
|
|
1111
|
+
"value": "#A6C5E229",
|
|
1112
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
1113
|
+
"isSource": true,
|
|
1114
|
+
"original": {
|
|
1115
|
+
"attributes": {
|
|
1116
|
+
"group": "paint",
|
|
1117
|
+
"state": "active",
|
|
1118
|
+
"description": "Hover state for background.subtleNeutral"
|
|
1119
|
+
},
|
|
1120
|
+
"value": "DN300A"
|
|
1121
|
+
},
|
|
1122
|
+
"name": "color.background.subtleNeutral.hover",
|
|
1123
|
+
"path": ["color", "background", "subtleNeutral", "hover"]
|
|
1124
|
+
}, {
|
|
1125
|
+
"attributes": {
|
|
1126
|
+
"group": "paint",
|
|
1127
|
+
"state": "active",
|
|
1128
|
+
"description": "Pressed state for background.subtleNeutral"
|
|
1129
|
+
},
|
|
1130
|
+
"value": "#BFDBF847",
|
|
1131
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
1132
|
+
"isSource": true,
|
|
1133
|
+
"original": {
|
|
1134
|
+
"attributes": {
|
|
1135
|
+
"group": "paint",
|
|
1136
|
+
"state": "active",
|
|
1137
|
+
"description": "Pressed state for background.subtleNeutral"
|
|
1138
|
+
},
|
|
1139
|
+
"value": "DN400A"
|
|
1140
|
+
},
|
|
1141
|
+
"name": "color.background.subtleNeutral.pressed",
|
|
1142
|
+
"path": ["color", "background", "subtleNeutral", "pressed"]
|
|
1143
|
+
}, {
|
|
1144
|
+
"attributes": {
|
|
1145
|
+
"group": "paint",
|
|
1146
|
+
"state": "active",
|
|
1147
|
+
"description": "Hover state for background.subtleBorderedNeutral"
|
|
1148
|
+
},
|
|
1149
|
+
"value": "#BCD6F00A",
|
|
1150
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
1151
|
+
"isSource": true,
|
|
1152
|
+
"original": {
|
|
1153
|
+
"attributes": {
|
|
1154
|
+
"group": "paint",
|
|
1155
|
+
"state": "active",
|
|
1156
|
+
"description": "Hover state for background.subtleBorderedNeutral"
|
|
1157
|
+
},
|
|
1158
|
+
"value": "DN100A"
|
|
1159
|
+
},
|
|
1160
|
+
"name": "color.background.subtleBorderedNeutral.resting",
|
|
1161
|
+
"path": ["color", "background", "subtleBorderedNeutral", "resting"]
|
|
1162
|
+
}, {
|
|
1163
|
+
"attributes": {
|
|
1164
|
+
"group": "paint",
|
|
1165
|
+
"state": "active",
|
|
1166
|
+
"description": "Pressed state for background.subtleBorderedNeutral"
|
|
1167
|
+
},
|
|
1168
|
+
"value": "#A1BDD914",
|
|
1169
|
+
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
1170
|
+
"isSource": true,
|
|
1171
|
+
"original": {
|
|
1172
|
+
"attributes": {
|
|
1173
|
+
"group": "paint",
|
|
1174
|
+
"state": "active",
|
|
1175
|
+
"description": "Pressed state for background.subtleBorderedNeutral"
|
|
1176
|
+
},
|
|
1177
|
+
"value": "DN200A"
|
|
1178
|
+
},
|
|
1179
|
+
"name": "color.background.subtleBorderedNeutral.pressed",
|
|
1180
|
+
"path": ["color", "background", "subtleBorderedNeutral", "pressed"]
|
|
1181
|
+
}, {
|
|
1182
|
+
"attributes": {
|
|
1183
|
+
"group": "paint",
|
|
1184
|
+
"state": "active",
|
|
1185
|
+
"description": "Use for focus rings of elements in a focus state"
|
|
1186
|
+
},
|
|
1187
|
+
"value": "#85B8FF",
|
|
1188
|
+
"filePath": "src/tokens/atlassian-dark/color/border.tsx",
|
|
1189
|
+
"isSource": true,
|
|
1190
|
+
"original": {
|
|
1191
|
+
"attributes": {
|
|
1192
|
+
"group": "paint",
|
|
1193
|
+
"state": "active",
|
|
1194
|
+
"description": "Use for focus rings of elements in a focus state"
|
|
1195
|
+
},
|
|
1196
|
+
"value": "B300"
|
|
1197
|
+
},
|
|
1198
|
+
"name": "color.border.focus",
|
|
1199
|
+
"path": ["color", "border", "focus"]
|
|
1200
|
+
}, {
|
|
1201
|
+
"attributes": {
|
|
1202
|
+
"group": "paint",
|
|
1203
|
+
"state": "active",
|
|
1204
|
+
"description": "Use to create borders around UI elements such as text fields, checkboxes, and radio buttons, or to visually group or separate UI elements, such as flat cards or side panel dividers"
|
|
1205
|
+
},
|
|
1206
|
+
"value": "#A6C5E229",
|
|
1207
|
+
"filePath": "src/tokens/atlassian-dark/color/border.tsx",
|
|
1208
|
+
"isSource": true,
|
|
1209
|
+
"original": {
|
|
1210
|
+
"attributes": {
|
|
1211
|
+
"group": "paint",
|
|
1212
|
+
"state": "active",
|
|
1213
|
+
"description": "Use to create borders around UI elements such as text fields, checkboxes, and radio buttons, or to visually group or separate UI elements, such as flat cards or side panel dividers"
|
|
1214
|
+
},
|
|
1215
|
+
"value": "DN300A"
|
|
1216
|
+
},
|
|
1217
|
+
"name": "color.border.neutral",
|
|
1218
|
+
"path": ["color", "border", "neutral"]
|
|
1219
|
+
}, {
|
|
1220
|
+
"attributes": {
|
|
1221
|
+
"group": "paint",
|
|
1222
|
+
"state": "active",
|
|
1223
|
+
"description": "\nUse rarely for icons or borders representing brand, in-progress, or information, such as the icons in information sections messages.\n\nAlso use for blue icons or borders when there is no meaning tied to the color, such as file type icons."
|
|
1224
|
+
},
|
|
1225
|
+
"value": "#388BFF",
|
|
1226
|
+
"filePath": "src/tokens/atlassian-dark/color/icon-border.tsx",
|
|
1227
|
+
"isSource": true,
|
|
1228
|
+
"original": {
|
|
1229
|
+
"attributes": {
|
|
1230
|
+
"group": "paint",
|
|
1231
|
+
"state": "active",
|
|
1232
|
+
"description": "\nUse rarely for icons or borders representing brand, in-progress, or information, such as the icons in information sections messages.\n\nAlso use for blue icons or borders when there is no meaning tied to the color, such as file type icons."
|
|
1233
|
+
},
|
|
1234
|
+
"value": "B500"
|
|
1235
|
+
},
|
|
1236
|
+
"name": "color.iconBorder.brand",
|
|
1237
|
+
"path": ["color", "iconBorder", "brand"]
|
|
1238
|
+
}, {
|
|
1239
|
+
"attributes": {
|
|
1240
|
+
"group": "paint",
|
|
1241
|
+
"state": "active",
|
|
1242
|
+
"description": "\nUse rarely for icons and borders representing critical information, such the icons in error section messages or the borders on invalid text fields.\n\nAlso use for red icons or borders when there is no meaning tied to the color, such as file type icons."
|
|
1243
|
+
},
|
|
1244
|
+
"value": "#EF5C48",
|
|
1245
|
+
"filePath": "src/tokens/atlassian-dark/color/icon-border.tsx",
|
|
1246
|
+
"isSource": true,
|
|
1247
|
+
"original": {
|
|
1248
|
+
"attributes": {
|
|
1249
|
+
"group": "paint",
|
|
1250
|
+
"state": "active",
|
|
1251
|
+
"description": "\nUse rarely for icons and borders representing critical information, such the icons in error section messages or the borders on invalid text fields.\n\nAlso use for red icons or borders when there is no meaning tied to the color, such as file type icons."
|
|
1252
|
+
},
|
|
1253
|
+
"value": "R500"
|
|
1254
|
+
},
|
|
1255
|
+
"name": "color.iconBorder.danger",
|
|
1256
|
+
"path": ["color", "iconBorder", "danger"]
|
|
1257
|
+
}, {
|
|
1258
|
+
"attributes": {
|
|
1259
|
+
"group": "paint",
|
|
1260
|
+
"state": "active",
|
|
1261
|
+
"description": "\nUse rarely for icons and borders representing semi-urgent information, such as the icons in warning section messages.\n\nAlso use for yellow icons or borders when there is no meaning tied to the color, such as file type icons.\n"
|
|
1262
|
+
},
|
|
1263
|
+
"value": "#CF9F02",
|
|
1264
|
+
"filePath": "src/tokens/atlassian-dark/color/icon-border.tsx",
|
|
1265
|
+
"isSource": true,
|
|
1266
|
+
"original": {
|
|
1267
|
+
"attributes": {
|
|
1268
|
+
"group": "paint",
|
|
1269
|
+
"state": "active",
|
|
1270
|
+
"description": "\nUse rarely for icons and borders representing semi-urgent information, such as the icons in warning section messages.\n\nAlso use for yellow icons or borders when there is no meaning tied to the color, such as file type icons.\n"
|
|
1271
|
+
},
|
|
1272
|
+
"value": "Y500"
|
|
1273
|
+
},
|
|
1274
|
+
"name": "color.iconBorder.warning",
|
|
1275
|
+
"path": ["color", "iconBorder", "warning"]
|
|
1276
|
+
}, {
|
|
1277
|
+
"attributes": {
|
|
1278
|
+
"group": "paint",
|
|
1279
|
+
"state": "active",
|
|
1280
|
+
"description": "\nUse rarely for icons and borders representing positive information, such as the icons in success section messages or the borders on validated text fields.\n\nAlso use for green icons or borders when there is no meaning tied to the color, such as file type icons.\n"
|
|
1281
|
+
},
|
|
1282
|
+
"value": "#2ABB7F",
|
|
1283
|
+
"filePath": "src/tokens/atlassian-dark/color/icon-border.tsx",
|
|
1284
|
+
"isSource": true,
|
|
1285
|
+
"original": {
|
|
1286
|
+
"attributes": {
|
|
1287
|
+
"group": "paint",
|
|
1288
|
+
"state": "active",
|
|
1289
|
+
"description": "\nUse rarely for icons and borders representing positive information, such as the icons in success section messages or the borders on validated text fields.\n\nAlso use for green icons or borders when there is no meaning tied to the color, such as file type icons.\n"
|
|
1290
|
+
},
|
|
1291
|
+
"value": "G500"
|
|
1292
|
+
},
|
|
1293
|
+
"name": "color.iconBorder.success",
|
|
1294
|
+
"path": ["color", "iconBorder", "success"]
|
|
1295
|
+
}, {
|
|
1296
|
+
"attributes": {
|
|
1297
|
+
"group": "paint",
|
|
1298
|
+
"state": "active",
|
|
1299
|
+
"description": "\nUse rarely for icons and borders representing new information, such as the icons in discovery section mesages or the borders in onboarding spotlights.\n\nAlso use for purple icons or borders when there is no meaning tied to the color, such as file type icons.\n"
|
|
1300
|
+
},
|
|
1301
|
+
"value": "#8F7EE7",
|
|
1302
|
+
"filePath": "src/tokens/atlassian-dark/color/icon-border.tsx",
|
|
1303
|
+
"isSource": true,
|
|
1304
|
+
"original": {
|
|
1305
|
+
"attributes": {
|
|
1306
|
+
"group": "paint",
|
|
1307
|
+
"state": "active",
|
|
1308
|
+
"description": "\nUse rarely for icons and borders representing new information, such as the icons in discovery section mesages or the borders in onboarding spotlights.\n\nAlso use for purple icons or borders when there is no meaning tied to the color, such as file type icons.\n"
|
|
1309
|
+
},
|
|
1310
|
+
"value": "P500"
|
|
1311
|
+
},
|
|
1312
|
+
"name": "color.iconBorder.discovery",
|
|
1313
|
+
"path": ["color", "iconBorder", "discovery"]
|
|
1314
|
+
}, {
|
|
1315
|
+
"attributes": {
|
|
1316
|
+
"group": "paint",
|
|
1317
|
+
"state": "active",
|
|
1318
|
+
"description": "Use as a background overlay for elements in a hover state when their background color cannot change, such as avatars."
|
|
1319
|
+
},
|
|
1320
|
+
"value": "#BFDBF847",
|
|
1321
|
+
"filePath": "src/tokens/atlassian-dark/color/overlay.tsx",
|
|
1322
|
+
"isSource": true,
|
|
1323
|
+
"original": {
|
|
1324
|
+
"attributes": {
|
|
1325
|
+
"group": "paint",
|
|
1326
|
+
"state": "active",
|
|
1327
|
+
"description": "Use as a background overlay for elements in a hover state when their background color cannot change, such as avatars."
|
|
1328
|
+
},
|
|
1329
|
+
"value": "DN400A"
|
|
1330
|
+
},
|
|
1331
|
+
"name": "color.overlay.hover",
|
|
1332
|
+
"path": ["color", "overlay", "hover"]
|
|
1333
|
+
}, {
|
|
1334
|
+
"attributes": {
|
|
1335
|
+
"group": "paint",
|
|
1336
|
+
"state": "active",
|
|
1337
|
+
"description": "Use as a background overlay for elements in a pressed state when their background color cannot change, such as avatars."
|
|
1338
|
+
},
|
|
1339
|
+
"value": "#A9C5DF7A",
|
|
1340
|
+
"filePath": "src/tokens/atlassian-dark/color/overlay.tsx",
|
|
1341
|
+
"isSource": true,
|
|
1342
|
+
"original": {
|
|
1343
|
+
"attributes": {
|
|
1344
|
+
"group": "paint",
|
|
1345
|
+
"state": "active",
|
|
1346
|
+
"description": "Use as a background overlay for elements in a pressed state when their background color cannot change, such as avatars."
|
|
1347
|
+
},
|
|
1348
|
+
"value": "DN500A"
|
|
1349
|
+
},
|
|
1350
|
+
"name": "color.overlay.pressed",
|
|
1351
|
+
"path": ["color", "overlay", "pressed"]
|
|
1352
|
+
}, {
|
|
1353
|
+
"attributes": {
|
|
1354
|
+
"group": "paint",
|
|
1355
|
+
"state": "active",
|
|
1356
|
+
"description": "Use for text, icons, borders, or other visual indicators in selected states"
|
|
1357
|
+
},
|
|
1358
|
+
"value": "#579DFF",
|
|
1359
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1360
|
+
"isSource": true,
|
|
1361
|
+
"original": {
|
|
1362
|
+
"attributes": {
|
|
1363
|
+
"group": "paint",
|
|
1364
|
+
"state": "active",
|
|
1365
|
+
"description": "Use for text, icons, borders, or other visual indicators in selected states"
|
|
1366
|
+
},
|
|
1367
|
+
"value": "B400"
|
|
1368
|
+
},
|
|
1369
|
+
"name": "color.text.selected",
|
|
1370
|
+
"path": ["color", "text", "selected"]
|
|
1371
|
+
}, {
|
|
1372
|
+
"attributes": {
|
|
1373
|
+
"group": "paint",
|
|
1374
|
+
"state": "active",
|
|
1375
|
+
"description": "Use for primary text, such as body copy, sentence case headers, and buttons"
|
|
1376
|
+
},
|
|
1377
|
+
"value": "#C7D1DB",
|
|
1378
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1379
|
+
"isSource": true,
|
|
1380
|
+
"original": {
|
|
1381
|
+
"attributes": {
|
|
1382
|
+
"group": "paint",
|
|
1383
|
+
"state": "active",
|
|
1384
|
+
"description": "Use for primary text, such as body copy, sentence case headers, and buttons"
|
|
1385
|
+
},
|
|
1386
|
+
"value": "DN1000"
|
|
1387
|
+
},
|
|
1388
|
+
"name": "color.text.highEmphasis",
|
|
1389
|
+
"path": ["color", "text", "highEmphasis"]
|
|
1390
|
+
}, {
|
|
1391
|
+
"attributes": {
|
|
1392
|
+
"group": "paint",
|
|
1393
|
+
"state": "active",
|
|
1394
|
+
"description": "\nUse for secondary text, such navigation, subtle button links, input field labels, and all caps subheadings.\n\nUse for icon-only buttons, or icons paired with text.highEmphasis text\n "
|
|
1395
|
+
},
|
|
1396
|
+
"value": "#9FADBC",
|
|
1397
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1398
|
+
"isSource": true,
|
|
1399
|
+
"original": {
|
|
1400
|
+
"attributes": {
|
|
1401
|
+
"group": "paint",
|
|
1402
|
+
"state": "active",
|
|
1403
|
+
"description": "\nUse for secondary text, such navigation, subtle button links, input field labels, and all caps subheadings.\n\nUse for icon-only buttons, or icons paired with text.highEmphasis text\n "
|
|
1404
|
+
},
|
|
1405
|
+
"value": "DN800"
|
|
1406
|
+
},
|
|
1407
|
+
"name": "color.text.mediumEmphasis",
|
|
1408
|
+
"path": ["color", "text", "mediumEmphasis"]
|
|
1409
|
+
}, {
|
|
1410
|
+
"attributes": {
|
|
1411
|
+
"group": "paint",
|
|
1412
|
+
"state": "active",
|
|
1413
|
+
"description": "\nUse for tertiary text, such as meta-data, breadcrumbs, input field placeholder and helper text.\n\nUse for icons that are paired with text.medEmphasis text"
|
|
1414
|
+
},
|
|
1415
|
+
"value": "#8696A7",
|
|
1416
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1417
|
+
"isSource": true,
|
|
1418
|
+
"original": {
|
|
1419
|
+
"attributes": {
|
|
1420
|
+
"group": "paint",
|
|
1421
|
+
"state": "active",
|
|
1422
|
+
"description": "\nUse for tertiary text, such as meta-data, breadcrumbs, input field placeholder and helper text.\n\nUse for icons that are paired with text.medEmphasis text"
|
|
1423
|
+
},
|
|
1424
|
+
"value": "DN700"
|
|
1425
|
+
},
|
|
1426
|
+
"name": "color.text.lowEmphasis",
|
|
1427
|
+
"path": ["color", "text", "lowEmphasis"]
|
|
1428
|
+
}, {
|
|
1429
|
+
"attributes": {
|
|
1430
|
+
"group": "paint",
|
|
1431
|
+
"state": "active",
|
|
1432
|
+
"description": "Use for text and icons when on bold backgrounds"
|
|
1433
|
+
},
|
|
1434
|
+
"value": "#161A1D",
|
|
1435
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1436
|
+
"isSource": true,
|
|
1437
|
+
"original": {
|
|
1438
|
+
"attributes": {
|
|
1439
|
+
"group": "paint",
|
|
1440
|
+
"state": "active",
|
|
1441
|
+
"description": "Use for text and icons when on bold backgrounds"
|
|
1442
|
+
},
|
|
1443
|
+
"value": "DN0"
|
|
1444
|
+
},
|
|
1445
|
+
"name": "color.text.onBold",
|
|
1446
|
+
"path": ["color", "text", "onBold"]
|
|
1447
|
+
}, {
|
|
1448
|
+
"attributes": {
|
|
1449
|
+
"group": "paint",
|
|
1450
|
+
"state": "active",
|
|
1451
|
+
"description": "Use for text and icons when on bold warning backgrounds"
|
|
1452
|
+
},
|
|
1453
|
+
"value": "#161A1D",
|
|
1454
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1455
|
+
"isSource": true,
|
|
1456
|
+
"original": {
|
|
1457
|
+
"attributes": {
|
|
1458
|
+
"group": "paint",
|
|
1459
|
+
"state": "active",
|
|
1460
|
+
"description": "Use for text and icons when on bold warning backgrounds"
|
|
1461
|
+
},
|
|
1462
|
+
"value": "DN0"
|
|
1463
|
+
},
|
|
1464
|
+
"name": "color.text.onBoldWarning",
|
|
1465
|
+
"path": ["color", "text", "onBoldWarning"]
|
|
1466
|
+
}, {
|
|
1467
|
+
"attributes": {
|
|
1468
|
+
"group": "paint",
|
|
1469
|
+
"state": "active",
|
|
1470
|
+
"description": "Use for links in a resting or hover state. Add an underline for hover states"
|
|
1471
|
+
},
|
|
1472
|
+
"value": "#579DFF",
|
|
1473
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1474
|
+
"isSource": true,
|
|
1475
|
+
"original": {
|
|
1476
|
+
"attributes": {
|
|
1477
|
+
"group": "paint",
|
|
1478
|
+
"state": "active",
|
|
1479
|
+
"description": "Use for links in a resting or hover state. Add an underline for hover states"
|
|
1480
|
+
},
|
|
1481
|
+
"value": "B400"
|
|
1482
|
+
},
|
|
1483
|
+
"name": "color.text.link.resting",
|
|
1484
|
+
"path": ["color", "text", "link", "resting"]
|
|
1485
|
+
}, {
|
|
1486
|
+
"attributes": {
|
|
1487
|
+
"group": "paint",
|
|
1488
|
+
"state": "active",
|
|
1489
|
+
"description": "Use for links in a pressed state"
|
|
1490
|
+
},
|
|
1491
|
+
"value": "#85B8FF",
|
|
1492
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1493
|
+
"isSource": true,
|
|
1494
|
+
"original": {
|
|
1495
|
+
"attributes": {
|
|
1496
|
+
"group": "paint",
|
|
1497
|
+
"state": "active",
|
|
1498
|
+
"description": "Use for links in a pressed state"
|
|
1499
|
+
},
|
|
1500
|
+
"value": "B300"
|
|
1501
|
+
},
|
|
1502
|
+
"name": "color.text.link.pressed",
|
|
1503
|
+
"path": ["color", "text", "link", "pressed"]
|
|
1504
|
+
}, {
|
|
1505
|
+
"attributes": {
|
|
1506
|
+
"group": "paint",
|
|
1507
|
+
"state": "active",
|
|
1508
|
+
"description": "Use rarely for text on subtle brand backgrounds, such as in progress lozenges, or on subtle blue accent backgrounds, such as colored tags."
|
|
1509
|
+
},
|
|
1510
|
+
"value": "#85B8FF",
|
|
1511
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1512
|
+
"isSource": true,
|
|
1513
|
+
"original": {
|
|
1514
|
+
"attributes": {
|
|
1515
|
+
"group": "paint",
|
|
1516
|
+
"state": "active",
|
|
1517
|
+
"description": "Use rarely for text on subtle brand backgrounds, such as in progress lozenges, or on subtle blue accent backgrounds, such as colored tags."
|
|
1518
|
+
},
|
|
1519
|
+
"value": "B300"
|
|
1520
|
+
},
|
|
1521
|
+
"name": "color.text.brand",
|
|
1522
|
+
"path": ["color", "text", "brand"]
|
|
1523
|
+
}, {
|
|
1524
|
+
"attributes": {
|
|
1525
|
+
"group": "paint",
|
|
1526
|
+
"state": "active",
|
|
1527
|
+
"description": "Use rarely for text on subtle warning backgrounds, such as in lozenges, or text on subtle warning backgrounds, such as in moved lozenges"
|
|
1528
|
+
},
|
|
1529
|
+
"value": "#F5CD47",
|
|
1530
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1531
|
+
"isSource": true,
|
|
1532
|
+
"original": {
|
|
1533
|
+
"attributes": {
|
|
1534
|
+
"group": "paint",
|
|
1535
|
+
"state": "active",
|
|
1536
|
+
"description": "Use rarely for text on subtle warning backgrounds, such as in lozenges, or text on subtle warning backgrounds, such as in moved lozenges"
|
|
1537
|
+
},
|
|
1538
|
+
"value": "Y300"
|
|
1539
|
+
},
|
|
1540
|
+
"name": "color.text.warning",
|
|
1541
|
+
"path": ["color", "text", "warning"]
|
|
1542
|
+
}, {
|
|
1543
|
+
"attributes": {
|
|
1544
|
+
"group": "paint",
|
|
1545
|
+
"state": "active",
|
|
1546
|
+
"description": "Use rarely for critical text, such as input field error messaging, or text on subtle danger backgrounds, such as in removed lozenges, or text on subtle red accent backgrounds, such as colored tags."
|
|
1547
|
+
},
|
|
1548
|
+
"value": "#FF9C8F",
|
|
1549
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1550
|
+
"isSource": true,
|
|
1551
|
+
"original": {
|
|
1552
|
+
"attributes": {
|
|
1553
|
+
"group": "paint",
|
|
1554
|
+
"state": "active",
|
|
1555
|
+
"description": "Use rarely for critical text, such as input field error messaging, or text on subtle danger backgrounds, such as in removed lozenges, or text on subtle red accent backgrounds, such as colored tags."
|
|
1556
|
+
},
|
|
1557
|
+
"value": "R300"
|
|
1558
|
+
},
|
|
1559
|
+
"name": "color.text.danger",
|
|
1560
|
+
"path": ["color", "text", "danger"]
|
|
1561
|
+
}, {
|
|
1562
|
+
"attributes": {
|
|
1563
|
+
"group": "paint",
|
|
1564
|
+
"state": "active",
|
|
1565
|
+
"description": "Use rarely for positive text, such as input field success messaging, or text on subtle success backgrounds, such as in success lozenges, or text on subtle green accent backgrounds, such as colored tags."
|
|
1566
|
+
},
|
|
1567
|
+
"value": "#7EE2B8",
|
|
1568
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1569
|
+
"isSource": true,
|
|
1570
|
+
"original": {
|
|
1571
|
+
"attributes": {
|
|
1572
|
+
"group": "paint",
|
|
1573
|
+
"state": "active",
|
|
1574
|
+
"description": "Use rarely for positive text, such as input field success messaging, or text on subtle success backgrounds, such as in success lozenges, or text on subtle green accent backgrounds, such as colored tags."
|
|
1575
|
+
},
|
|
1576
|
+
"value": "G300"
|
|
1577
|
+
},
|
|
1578
|
+
"name": "color.text.success",
|
|
1579
|
+
"path": ["color", "text", "success"]
|
|
1580
|
+
}, {
|
|
1581
|
+
"attributes": {
|
|
1582
|
+
"group": "paint",
|
|
1583
|
+
"state": "active",
|
|
1584
|
+
"description": "Use rarely for text on subtle discovery backgrounds, such as in new lozenges, or text on subtle purple accent backgrounds, such as colored tags."
|
|
1585
|
+
},
|
|
1586
|
+
"value": "#B8ACF6",
|
|
1587
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1588
|
+
"isSource": true,
|
|
1589
|
+
"original": {
|
|
1590
|
+
"attributes": {
|
|
1591
|
+
"group": "paint",
|
|
1592
|
+
"state": "active",
|
|
1593
|
+
"description": "Use rarely for text on subtle discovery backgrounds, such as in new lozenges, or text on subtle purple accent backgrounds, such as colored tags."
|
|
1594
|
+
},
|
|
1595
|
+
"value": "P300"
|
|
1596
|
+
},
|
|
1597
|
+
"name": "color.text.discovery",
|
|
1598
|
+
"path": ["color", "text", "discovery"]
|
|
1599
|
+
}, {
|
|
1600
|
+
"attributes": {
|
|
1601
|
+
"group": "paint",
|
|
1602
|
+
"state": "active",
|
|
1603
|
+
"description": "Use for text and icons in disabled states"
|
|
1604
|
+
},
|
|
1605
|
+
"value": "#5C6C7A",
|
|
1606
|
+
"filePath": "src/tokens/atlassian-dark/color/text.tsx",
|
|
1607
|
+
"isSource": true,
|
|
1608
|
+
"original": {
|
|
1609
|
+
"attributes": {
|
|
1610
|
+
"group": "paint",
|
|
1611
|
+
"state": "active",
|
|
1612
|
+
"description": "Use for text and icons in disabled states"
|
|
1613
|
+
},
|
|
1614
|
+
"value": "DN500"
|
|
1615
|
+
},
|
|
1616
|
+
"name": "color.text.disabled",
|
|
1617
|
+
"path": ["color", "text", "disabled"]
|
|
1618
|
+
}, {
|
|
1619
|
+
"attributes": {
|
|
1620
|
+
"group": "shadow",
|
|
1621
|
+
"state": "active",
|
|
1622
|
+
"description": "\nUse for the box shadow of raised card elements, such as Jira cards on a Kanban board.\n\nCombine with background.overlay"
|
|
1623
|
+
},
|
|
1624
|
+
"value": [{
|
|
1625
|
+
"radius": 1,
|
|
1626
|
+
"offset": {
|
|
1627
|
+
"x": 0,
|
|
1628
|
+
"y": 1
|
|
1629
|
+
},
|
|
1630
|
+
"color": "#03040442",
|
|
1631
|
+
"opacity": 0.5
|
|
1632
|
+
}, {
|
|
1633
|
+
"radius": 1,
|
|
1634
|
+
"offset": {
|
|
1635
|
+
"x": 0,
|
|
1636
|
+
"y": 0
|
|
1637
|
+
},
|
|
1638
|
+
"color": "#03040442",
|
|
1639
|
+
"opacity": 0.5
|
|
1640
|
+
}],
|
|
1641
|
+
"filePath": "src/tokens/atlassian-dark/shadow/shadow.tsx",
|
|
1642
|
+
"isSource": true,
|
|
1643
|
+
"original": {
|
|
1644
|
+
"attributes": {
|
|
1645
|
+
"group": "shadow",
|
|
1646
|
+
"state": "active",
|
|
1647
|
+
"description": "\nUse for the box shadow of raised card elements, such as Jira cards on a Kanban board.\n\nCombine with background.overlay"
|
|
1648
|
+
},
|
|
1649
|
+
"value": [{
|
|
1650
|
+
"radius": 1,
|
|
1651
|
+
"offset": {
|
|
1652
|
+
"x": 0,
|
|
1653
|
+
"y": 1
|
|
1654
|
+
},
|
|
1655
|
+
"color": "DN-100A",
|
|
1656
|
+
"opacity": 0.5
|
|
1657
|
+
}, {
|
|
1658
|
+
"radius": 1,
|
|
1659
|
+
"offset": {
|
|
1660
|
+
"x": 0,
|
|
1661
|
+
"y": 0
|
|
1662
|
+
},
|
|
1663
|
+
"color": "DN-100A",
|
|
1664
|
+
"opacity": 0.5
|
|
1665
|
+
}]
|
|
1666
|
+
},
|
|
1667
|
+
"name": "shadow.card",
|
|
1668
|
+
"path": ["shadow", "card"]
|
|
1669
|
+
}, {
|
|
1670
|
+
"attributes": {
|
|
1671
|
+
"group": "shadow",
|
|
1672
|
+
"state": "active",
|
|
1673
|
+
"description": "\nUse for the box shadow of overlay elements, such as modals, dropdown menus, flags, and inline dialogs (i.e. elements that sit on top of the UI).\n\nAlso use for the box shadow of raised cards in a dragged state.\n\nCombine with background.overlay"
|
|
1674
|
+
},
|
|
1675
|
+
"value": [{
|
|
1676
|
+
"radius": 0,
|
|
1677
|
+
"spread": 1,
|
|
1678
|
+
"color": "#BCD6F00A",
|
|
1679
|
+
"offset": {
|
|
1680
|
+
"x": 0,
|
|
1681
|
+
"y": 0
|
|
1682
|
+
},
|
|
1683
|
+
"opacity": 0.04,
|
|
1684
|
+
"inset": true
|
|
1685
|
+
}, {
|
|
1686
|
+
"radius": 12,
|
|
1687
|
+
"offset": {
|
|
1688
|
+
"x": 0,
|
|
1689
|
+
"y": 8
|
|
1690
|
+
},
|
|
1691
|
+
"color": "#03040442",
|
|
1692
|
+
"opacity": 0.36
|
|
1693
|
+
}, {
|
|
1694
|
+
"radius": 1,
|
|
1695
|
+
"offset": {
|
|
1696
|
+
"x": 0,
|
|
1697
|
+
"y": 0
|
|
1698
|
+
},
|
|
1699
|
+
"color": "#03040442",
|
|
1700
|
+
"opacity": 0.5
|
|
1701
|
+
}],
|
|
1702
|
+
"filePath": "src/tokens/atlassian-dark/shadow/shadow.tsx",
|
|
1703
|
+
"isSource": true,
|
|
1704
|
+
"original": {
|
|
1705
|
+
"attributes": {
|
|
1706
|
+
"group": "shadow",
|
|
1707
|
+
"state": "active",
|
|
1708
|
+
"description": "\nUse for the box shadow of overlay elements, such as modals, dropdown menus, flags, and inline dialogs (i.e. elements that sit on top of the UI).\n\nAlso use for the box shadow of raised cards in a dragged state.\n\nCombine with background.overlay"
|
|
1709
|
+
},
|
|
1710
|
+
"value": [{
|
|
1711
|
+
"radius": 0,
|
|
1712
|
+
"spread": 1,
|
|
1713
|
+
"color": "DN100A",
|
|
1714
|
+
"offset": {
|
|
1715
|
+
"x": 0,
|
|
1716
|
+
"y": 0
|
|
1717
|
+
},
|
|
1718
|
+
"opacity": 0.04,
|
|
1719
|
+
"inset": true
|
|
1720
|
+
}, {
|
|
1721
|
+
"radius": 12,
|
|
1722
|
+
"offset": {
|
|
1723
|
+
"x": 0,
|
|
1724
|
+
"y": 8
|
|
1725
|
+
},
|
|
1726
|
+
"color": "DN-100A",
|
|
1727
|
+
"opacity": 0.36
|
|
1728
|
+
}, {
|
|
1729
|
+
"radius": 1,
|
|
1730
|
+
"offset": {
|
|
1731
|
+
"x": 0,
|
|
1732
|
+
"y": 0
|
|
1733
|
+
},
|
|
1734
|
+
"color": "DN-100A",
|
|
1735
|
+
"opacity": 0.5
|
|
1736
|
+
}]
|
|
1737
|
+
},
|
|
1738
|
+
"name": "shadow.overlay",
|
|
1739
|
+
"path": ["shadow", "overlay"]
|
|
1740
|
+
}, {
|
|
1741
|
+
"attributes": {
|
|
1742
|
+
"group": "raw",
|
|
1743
|
+
"state": "active",
|
|
1744
|
+
"description": "Transparent token used for backwards compatibility between new and old theming solutions"
|
|
1745
|
+
},
|
|
1746
|
+
"value": "transparent",
|
|
1747
|
+
"filePath": "src/tokens/atlassian-dark/utility/utility.tsx",
|
|
1748
|
+
"isSource": true,
|
|
1749
|
+
"original": {
|
|
1750
|
+
"attributes": {
|
|
1751
|
+
"group": "raw",
|
|
1752
|
+
"state": "active",
|
|
1753
|
+
"description": "Transparent token used for backwards compatibility between new and old theming solutions"
|
|
1754
|
+
},
|
|
1755
|
+
"value": "transparent"
|
|
1756
|
+
},
|
|
1757
|
+
"name": "utility.UNSAFE_util.transparent",
|
|
1758
|
+
"path": ["utility", "UNSAFE_util", "transparent"]
|
|
1759
|
+
}, {
|
|
1760
|
+
"attributes": {
|
|
1761
|
+
"group": "raw",
|
|
1762
|
+
"state": "active",
|
|
1763
|
+
"description": "Used as a placeholder when a suitable token does not exist"
|
|
1764
|
+
},
|
|
1765
|
+
"value": "#FA11F2",
|
|
1766
|
+
"filePath": "src/tokens/atlassian-dark/utility/utility.tsx",
|
|
1767
|
+
"isSource": true,
|
|
1768
|
+
"original": {
|
|
1769
|
+
"attributes": {
|
|
1770
|
+
"group": "raw",
|
|
1771
|
+
"state": "active",
|
|
1772
|
+
"description": "Used as a placeholder when a suitable token does not exist"
|
|
1773
|
+
},
|
|
1774
|
+
"value": "#FA11F2"
|
|
1775
|
+
},
|
|
1776
|
+
"name": "utility.UNSAFE_util.MISSING_TOKEN",
|
|
1777
|
+
"path": ["utility", "UNSAFE_util", "MISSING_TOKEN"]
|
|
1778
|
+
}];
|
|
1779
|
+
export default tokens;
|