@atlaskit/tokens 0.4.0 → 0.6.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.
Files changed (170) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/css/atlassian-dark.css +196 -67
  3. package/css/atlassian-light.css +196 -67
  4. package/dist/cjs/artifacts/rename-mapping.js +321 -1
  5. package/dist/cjs/artifacts/token-default-values.js +196 -67
  6. package/dist/cjs/artifacts/token-names.js +196 -67
  7. package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +3311 -616
  8. package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +3296 -621
  9. package/dist/cjs/artifacts/types-internal.js +5 -0
  10. package/dist/cjs/get-token.js +10 -3
  11. package/dist/cjs/index.js +4 -4
  12. package/dist/cjs/tokens/atlassian-dark/color/accent.js +150 -39
  13. package/dist/cjs/tokens/atlassian-dark/color/background.js +178 -154
  14. package/dist/cjs/tokens/atlassian-dark/color/border.js +26 -2
  15. package/dist/cjs/tokens/atlassian-dark/color/icon.js +49 -0
  16. package/dist/cjs/tokens/atlassian-dark/color/interaction.js +32 -0
  17. package/dist/cjs/tokens/atlassian-dark/color/text.js +25 -23
  18. package/dist/cjs/tokens/atlassian-dark/deprecated/deprecated.js +344 -0
  19. package/dist/cjs/tokens/atlassian-dark/elevation/shadow.js +66 -0
  20. package/dist/cjs/tokens/atlassian-dark/elevation/surface.js +26 -0
  21. package/dist/cjs/tokens/atlassian-light/color/accent.js +150 -39
  22. package/dist/cjs/tokens/atlassian-light/color/background.js +178 -154
  23. package/dist/cjs/tokens/atlassian-light/color/border.js +26 -2
  24. package/dist/cjs/tokens/atlassian-light/color/icon.js +49 -0
  25. package/dist/cjs/tokens/atlassian-light/color/interaction.js +32 -0
  26. package/dist/cjs/tokens/atlassian-light/color/text.js +25 -23
  27. package/dist/cjs/tokens/atlassian-light/deprecated/deprecated.js +330 -0
  28. package/dist/cjs/tokens/atlassian-light/elevation/shadow.js +52 -0
  29. package/dist/cjs/tokens/atlassian-light/elevation/surface.js +26 -0
  30. package/dist/cjs/tokens/default/color/accent.js +306 -87
  31. package/dist/cjs/tokens/default/color/background.js +339 -309
  32. package/dist/cjs/tokens/default/color/border.js +60 -4
  33. package/dist/cjs/tokens/default/color/icon.js +93 -0
  34. package/dist/cjs/tokens/default/color/interaction.js +44 -0
  35. package/dist/cjs/tokens/default/color/text.js +37 -35
  36. package/dist/cjs/tokens/default/deprecated/deprecated.js +698 -0
  37. package/dist/cjs/tokens/default/elevation/shadow.js +28 -0
  38. package/dist/cjs/tokens/default/elevation/surface.js +42 -0
  39. package/dist/cjs/version.json +1 -1
  40. package/dist/es2019/artifacts/rename-mapping.js +321 -1
  41. package/dist/es2019/artifacts/token-default-values.js +196 -67
  42. package/dist/es2019/artifacts/token-names.js +196 -67
  43. package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +3311 -616
  44. package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +3296 -621
  45. package/dist/es2019/artifacts/types-internal.js +1 -0
  46. package/dist/es2019/get-token.js +8 -3
  47. package/dist/es2019/tokens/atlassian-dark/color/accent.js +150 -39
  48. package/dist/es2019/tokens/atlassian-dark/color/background.js +178 -154
  49. package/dist/es2019/tokens/atlassian-dark/color/border.js +26 -2
  50. package/dist/es2019/tokens/atlassian-dark/color/icon.js +42 -0
  51. package/dist/es2019/tokens/atlassian-dark/color/interaction.js +25 -0
  52. package/dist/es2019/tokens/atlassian-dark/color/text.js +25 -23
  53. package/dist/es2019/tokens/atlassian-dark/deprecated/deprecated.js +337 -0
  54. package/dist/es2019/tokens/atlassian-dark/elevation/shadow.js +59 -0
  55. package/dist/es2019/tokens/atlassian-dark/elevation/surface.js +19 -0
  56. package/dist/es2019/tokens/atlassian-light/color/accent.js +150 -39
  57. package/dist/es2019/tokens/atlassian-light/color/background.js +178 -154
  58. package/dist/es2019/tokens/atlassian-light/color/border.js +26 -2
  59. package/dist/es2019/tokens/atlassian-light/color/icon.js +42 -0
  60. package/dist/es2019/tokens/atlassian-light/color/interaction.js +25 -0
  61. package/dist/es2019/tokens/atlassian-light/color/text.js +25 -23
  62. package/dist/es2019/tokens/atlassian-light/deprecated/deprecated.js +323 -0
  63. package/dist/es2019/tokens/atlassian-light/elevation/shadow.js +45 -0
  64. package/dist/es2019/tokens/atlassian-light/elevation/surface.js +19 -0
  65. package/dist/es2019/tokens/default/color/accent.js +306 -87
  66. package/dist/es2019/tokens/default/color/background.js +339 -314
  67. package/dist/es2019/tokens/default/color/border.js +60 -4
  68. package/dist/es2019/tokens/default/color/icon.js +86 -0
  69. package/dist/es2019/tokens/default/color/interaction.js +37 -0
  70. package/dist/es2019/tokens/default/color/text.js +37 -42
  71. package/dist/es2019/tokens/default/deprecated/deprecated.js +729 -0
  72. package/dist/es2019/tokens/default/elevation/shadow.js +23 -0
  73. package/dist/es2019/tokens/default/elevation/surface.js +37 -0
  74. package/dist/es2019/version.json +1 -1
  75. package/dist/esm/artifacts/rename-mapping.js +321 -1
  76. package/dist/esm/artifacts/token-default-values.js +196 -67
  77. package/dist/esm/artifacts/token-names.js +196 -67
  78. package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +3311 -616
  79. package/dist/esm/artifacts/tokens-raw/atlassian-light.js +3296 -621
  80. package/dist/esm/artifacts/types-internal.js +1 -0
  81. package/dist/esm/get-token.js +8 -3
  82. package/dist/esm/tokens/atlassian-dark/color/accent.js +150 -39
  83. package/dist/esm/tokens/atlassian-dark/color/background.js +178 -154
  84. package/dist/esm/tokens/atlassian-dark/color/border.js +26 -2
  85. package/dist/esm/tokens/atlassian-dark/color/icon.js +42 -0
  86. package/dist/esm/tokens/atlassian-dark/color/interaction.js +25 -0
  87. package/dist/esm/tokens/atlassian-dark/color/text.js +25 -23
  88. package/dist/esm/tokens/atlassian-dark/deprecated/deprecated.js +337 -0
  89. package/dist/esm/tokens/atlassian-dark/elevation/shadow.js +59 -0
  90. package/dist/esm/tokens/atlassian-dark/elevation/surface.js +19 -0
  91. package/dist/esm/tokens/atlassian-light/color/accent.js +150 -39
  92. package/dist/esm/tokens/atlassian-light/color/background.js +178 -154
  93. package/dist/esm/tokens/atlassian-light/color/border.js +26 -2
  94. package/dist/esm/tokens/atlassian-light/color/icon.js +42 -0
  95. package/dist/esm/tokens/atlassian-light/color/interaction.js +25 -0
  96. package/dist/esm/tokens/atlassian-light/color/text.js +25 -23
  97. package/dist/esm/tokens/atlassian-light/deprecated/deprecated.js +323 -0
  98. package/dist/esm/tokens/atlassian-light/elevation/shadow.js +45 -0
  99. package/dist/esm/tokens/atlassian-light/elevation/surface.js +19 -0
  100. package/dist/esm/tokens/default/color/accent.js +306 -87
  101. package/dist/esm/tokens/default/color/background.js +339 -309
  102. package/dist/esm/tokens/default/color/border.js +60 -4
  103. package/dist/esm/tokens/default/color/icon.js +86 -0
  104. package/dist/esm/tokens/default/color/interaction.js +37 -0
  105. package/dist/esm/tokens/default/color/text.js +37 -35
  106. package/dist/esm/tokens/default/deprecated/deprecated.js +691 -0
  107. package/dist/esm/tokens/default/elevation/shadow.js +21 -0
  108. package/dist/esm/tokens/default/elevation/surface.js +35 -0
  109. package/dist/esm/version.json +1 -1
  110. package/dist/types/artifacts/rename-mapping.d.ts +6 -2
  111. package/dist/types/artifacts/token-default-values.d.ts +196 -67
  112. package/dist/types/artifacts/token-names.d.ts +392 -134
  113. package/dist/types/artifacts/tokens-raw/atlassian-dark.d.ts +86 -0
  114. package/dist/types/artifacts/tokens-raw/atlassian-light.d.ts +62 -0
  115. package/dist/types/artifacts/types-internal.d.ts +4 -0
  116. package/dist/types/artifacts/types.d.ts +1 -1
  117. package/dist/types/get-token.d.ts +2 -2
  118. package/dist/types/tokens/atlassian-dark/color/icon.d.ts +3 -0
  119. package/dist/types/tokens/atlassian-dark/color/interaction.d.ts +3 -0
  120. package/dist/types/tokens/atlassian-dark/deprecated/deprecated.d.ts +3 -0
  121. package/dist/types/tokens/atlassian-dark/{shadow → elevation}/shadow.d.ts +0 -0
  122. package/dist/types/tokens/atlassian-dark/elevation/surface.d.ts +3 -0
  123. package/dist/types/tokens/atlassian-light/color/icon.d.ts +3 -0
  124. package/dist/types/tokens/atlassian-light/color/interaction.d.ts +3 -0
  125. package/dist/types/tokens/atlassian-light/deprecated/deprecated.d.ts +3 -0
  126. package/dist/types/tokens/atlassian-light/{shadow → elevation}/shadow.d.ts +0 -0
  127. package/dist/types/tokens/atlassian-light/elevation/surface.d.ts +3 -0
  128. package/dist/types/tokens/default/color/icon.d.ts +3 -0
  129. package/dist/types/tokens/default/color/interaction.d.ts +3 -0
  130. package/dist/types/tokens/default/deprecated/deprecated.d.ts +3 -0
  131. package/dist/types/tokens/default/{shadow → elevation}/shadow.d.ts +0 -0
  132. package/dist/types/tokens/default/elevation/surface.d.ts +3 -0
  133. package/dist/types/tokens/default/utility/utility.d.ts +72 -72
  134. package/dist/types/types.d.ts +294 -54
  135. package/package.json +6 -4
  136. package/tokens-browser-extension/atlassian-theme.css +434 -360
  137. package/tokens-browser-extension/manifest.json +1 -2
  138. package/dist/cjs/tokens/atlassian-dark/color/icon-border.js +0 -29
  139. package/dist/cjs/tokens/atlassian-dark/color/overlay.js +0 -20
  140. package/dist/cjs/tokens/atlassian-dark/shadow/shadow.js +0 -64
  141. package/dist/cjs/tokens/atlassian-light/color/icon-border.js +0 -29
  142. package/dist/cjs/tokens/atlassian-light/color/overlay.js +0 -20
  143. package/dist/cjs/tokens/atlassian-light/shadow/shadow.js +0 -50
  144. package/dist/cjs/tokens/default/color/icon-border.js +0 -49
  145. package/dist/cjs/tokens/default/color/overlay.js +0 -28
  146. package/dist/cjs/tokens/default/shadow/shadow.js +0 -26
  147. package/dist/es2019/tokens/atlassian-dark/color/icon-border.js +0 -22
  148. package/dist/es2019/tokens/atlassian-dark/color/overlay.js +0 -13
  149. package/dist/es2019/tokens/atlassian-dark/shadow/shadow.js +0 -57
  150. package/dist/es2019/tokens/atlassian-light/color/icon-border.js +0 -22
  151. package/dist/es2019/tokens/atlassian-light/color/overlay.js +0 -13
  152. package/dist/es2019/tokens/atlassian-light/shadow/shadow.js +0 -43
  153. package/dist/es2019/tokens/default/color/icon-border.js +0 -60
  154. package/dist/es2019/tokens/default/color/overlay.js +0 -21
  155. package/dist/es2019/tokens/default/shadow/shadow.js +0 -27
  156. package/dist/esm/tokens/atlassian-dark/color/icon-border.js +0 -22
  157. package/dist/esm/tokens/atlassian-dark/color/overlay.js +0 -13
  158. package/dist/esm/tokens/atlassian-dark/shadow/shadow.js +0 -57
  159. package/dist/esm/tokens/atlassian-light/color/icon-border.js +0 -22
  160. package/dist/esm/tokens/atlassian-light/color/overlay.js +0 -13
  161. package/dist/esm/tokens/atlassian-light/shadow/shadow.js +0 -43
  162. package/dist/esm/tokens/default/color/icon-border.js +0 -42
  163. package/dist/esm/tokens/default/color/overlay.js +0 -21
  164. package/dist/esm/tokens/default/shadow/shadow.js +0 -19
  165. package/dist/types/tokens/atlassian-dark/color/icon-border.d.ts +0 -3
  166. package/dist/types/tokens/atlassian-dark/color/overlay.d.ts +0 -3
  167. package/dist/types/tokens/atlassian-light/color/icon-border.d.ts +0 -3
  168. package/dist/types/tokens/atlassian-light/color/overlay.d.ts +0 -3
  169. package/dist/types/tokens/default/color/icon-border.d.ts +0 -3
  170. package/dist/types/tokens/default/color/overlay.d.ts +0 -3
@@ -1,95 +1,314 @@
1
1
  var color = {
2
2
  color: {
3
- accent: {
4
- boldBlue: {
5
- attributes: {
6
- group: 'paint',
7
- state: 'active',
8
- description: 'Use for blue backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags.'
3
+ text: {
4
+ accent: {
5
+ blue: {
6
+ attributes: {
7
+ group: 'paint',
8
+ state: 'active',
9
+ description: 'Use for blue text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
10
+ }
11
+ },
12
+ red: {
13
+ attributes: {
14
+ group: 'paint',
15
+ state: 'active',
16
+ description: 'Use for red text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
17
+ }
18
+ },
19
+ orange: {
20
+ attributes: {
21
+ group: 'paint',
22
+ state: 'active',
23
+ description: 'Use for orange text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
24
+ }
25
+ },
26
+ yellow: {
27
+ attributes: {
28
+ group: 'paint',
29
+ state: 'active',
30
+ description: 'Use for yellow text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
31
+ }
32
+ },
33
+ green: {
34
+ attributes: {
35
+ group: 'paint',
36
+ state: 'active',
37
+ description: 'Use for green text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
38
+ }
39
+ },
40
+ purple: {
41
+ attributes: {
42
+ group: 'paint',
43
+ state: 'active',
44
+ description: 'Use for purple text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
45
+ }
46
+ },
47
+ teal: {
48
+ attributes: {
49
+ group: 'paint',
50
+ state: 'active',
51
+ description: 'Use for teal text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
52
+ }
53
+ },
54
+ magenta: {
55
+ attributes: {
56
+ group: 'paint',
57
+ state: 'active',
58
+ description: 'Use for megenta text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
59
+ }
9
60
  }
10
- },
11
- boldGreen: {
12
- attributes: {
13
- group: 'paint',
14
- state: 'active',
15
- description: 'Use for green backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags.'
16
- }
17
- },
18
- boldOrange: {
19
- attributes: {
20
- group: 'paint',
21
- state: 'active',
22
- description: 'Use for orange backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags.'
23
- }
24
- },
25
- boldPurple: {
26
- attributes: {
27
- group: 'paint',
28
- state: 'active',
29
- description: 'Use for purple backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags.'
30
- }
31
- },
32
- boldRed: {
33
- attributes: {
34
- group: 'paint',
35
- state: 'active',
36
- description: 'Use for red backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags.'
37
- }
38
- },
39
- boldTeal: {
40
- attributes: {
41
- group: 'paint',
42
- state: 'active',
43
- description: 'Use for teal backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags.'
44
- }
45
- },
46
- subtleBlue: {
47
- attributes: {
48
- group: 'paint',
49
- state: 'active',
50
- description: 'Use for blue subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
51
- }
52
- },
53
- subtleGreen: {
54
- attributes: {
55
- group: 'paint',
56
- state: 'active',
57
- description: 'Use for green subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
58
- }
59
- },
60
- subtleMagenta: {
61
- attributes: {
62
- group: 'paint',
63
- state: 'active',
64
- description: 'Use for magenta subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
65
- }
66
- },
67
- subtleOrange: {
68
- attributes: {
69
- group: 'paint',
70
- state: 'active',
71
- description: 'Use for orange subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
72
- }
73
- },
74
- subtlePurple: {
75
- attributes: {
76
- group: 'paint',
77
- state: 'active',
78
- description: 'Use for purple subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
61
+ }
62
+ },
63
+ icon: {
64
+ accent: {
65
+ blue: {
66
+ attributes: {
67
+ group: 'paint',
68
+ state: 'active',
69
+ description: 'Use for blue icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
70
+ }
71
+ },
72
+ red: {
73
+ attributes: {
74
+ group: 'paint',
75
+ state: 'active',
76
+ description: 'Use for red icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
77
+ }
78
+ },
79
+ orange: {
80
+ attributes: {
81
+ group: 'paint',
82
+ state: 'active',
83
+ description: 'Use for orange icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
84
+ }
85
+ },
86
+ yellow: {
87
+ attributes: {
88
+ group: 'paint',
89
+ state: 'active',
90
+ description: 'Use for yellow icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
91
+ }
92
+ },
93
+ green: {
94
+ attributes: {
95
+ group: 'paint',
96
+ state: 'active',
97
+ description: 'Use for green icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
98
+ }
99
+ },
100
+ purple: {
101
+ attributes: {
102
+ group: 'paint',
103
+ state: 'active',
104
+ description: 'Use for purple icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
105
+ }
106
+ },
107
+ teal: {
108
+ attributes: {
109
+ group: 'paint',
110
+ state: 'active',
111
+ description: 'Use for teal icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
112
+ }
113
+ },
114
+ magenta: {
115
+ attributes: {
116
+ group: 'paint',
117
+ state: 'active',
118
+ description: 'Use for magenta icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
119
+ }
79
120
  }
80
- },
81
- subtleRed: {
82
- attributes: {
83
- group: 'paint',
84
- state: 'active',
85
- description: 'Use for red subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
121
+ }
122
+ },
123
+ border: {
124
+ accent: {
125
+ blue: {
126
+ attributes: {
127
+ group: 'paint',
128
+ state: 'active',
129
+ description: 'Use for blue borders on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
130
+ }
131
+ },
132
+ red: {
133
+ attributes: {
134
+ group: 'paint',
135
+ state: 'active',
136
+ description: 'Use for red borders on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
137
+ }
138
+ },
139
+ orange: {
140
+ attributes: {
141
+ group: 'paint',
142
+ state: 'active',
143
+ description: 'Use for orange borders on non-bold backgrounds when there is no meaning tied to the color.'
144
+ }
145
+ },
146
+ yellow: {
147
+ attributes: {
148
+ group: 'paint',
149
+ state: 'active',
150
+ description: 'Use for yellow borders on non-bold backgrounds when there is no meaning tied to the color.'
151
+ }
152
+ },
153
+ green: {
154
+ attributes: {
155
+ group: 'paint',
156
+ state: 'active',
157
+ description: 'Use for green borders on non-bold backgrounds when there is no meaning tied to the color.'
158
+ }
159
+ },
160
+ purple: {
161
+ attributes: {
162
+ group: 'paint',
163
+ state: 'active',
164
+ description: 'Use for purple borders on non-bold backgrounds when there is no meaning tied to the color.'
165
+ }
166
+ },
167
+ teal: {
168
+ attributes: {
169
+ group: 'paint',
170
+ state: 'active',
171
+ description: 'Use for teal borders on non-bold backgrounds when there is no meaning tied to the color.'
172
+ }
173
+ },
174
+ magenta: {
175
+ attributes: {
176
+ group: 'paint',
177
+ state: 'active',
178
+ description: 'Use for magenta borders on non-bold backgrounds when there is no meaning tied to the color.'
179
+ }
86
180
  }
87
- },
88
- subtleTeal: {
89
- attributes: {
90
- group: 'paint',
91
- state: 'active',
92
- description: 'Use for teal subdued backgrounds when there is no meaning tied to the color, such as colored tags.'
181
+ }
182
+ },
183
+ background: {
184
+ accent: {
185
+ blue: {
186
+ '[default]': {
187
+ attributes: {
188
+ group: 'paint',
189
+ state: 'active',
190
+ description: 'Use for blue backgrounds when there is no meaning tied to the color, such as coloured tags.'
191
+ }
192
+ },
193
+ bold: {
194
+ attributes: {
195
+ group: 'paint',
196
+ state: 'active',
197
+ description: 'Use for vibrant blue backgrounds when there is no meaning tied to the color, such as coloured tags.'
198
+ }
199
+ }
200
+ },
201
+ red: {
202
+ '[default]': {
203
+ attributes: {
204
+ group: 'paint',
205
+ state: 'active',
206
+ description: 'Use for red backgrounds when there is no meaning tied to the color, such as colored tags.'
207
+ }
208
+ },
209
+ bold: {
210
+ attributes: {
211
+ group: 'paint',
212
+ state: 'active',
213
+ description: 'Use for vibrant red backgrounds when there is no meaning tied to the color, such as colored tags.'
214
+ }
215
+ }
216
+ },
217
+ orange: {
218
+ '[default]': {
219
+ attributes: {
220
+ group: 'paint',
221
+ state: 'active',
222
+ description: 'Use for orange backgrounds when there is no meaning tied to the color, such as colored tags.'
223
+ }
224
+ },
225
+ bold: {
226
+ attributes: {
227
+ group: 'paint',
228
+ state: 'active',
229
+ description: 'Use for vibrant orange backgrounds when there is no meaning tied to the color, such as colored tags.'
230
+ }
231
+ }
232
+ },
233
+ yellow: {
234
+ '[default]': {
235
+ attributes: {
236
+ group: 'paint',
237
+ state: 'active',
238
+ description: 'Use for yellow backgrounds when there is no meaning tied to the color, such as colored tags.'
239
+ }
240
+ },
241
+ bold: {
242
+ attributes: {
243
+ group: 'paint',
244
+ state: 'active',
245
+ description: 'Use for vibrant yellow backgrounds when there is no meaning tied to the color, such as colored tags.'
246
+ }
247
+ }
248
+ },
249
+ green: {
250
+ '[default]': {
251
+ attributes: {
252
+ group: 'paint',
253
+ state: 'active',
254
+ description: 'Use for green backgrounds when there is no meaning tied to the color, such as colored tags.'
255
+ }
256
+ },
257
+ bold: {
258
+ attributes: {
259
+ group: 'paint',
260
+ state: 'active',
261
+ description: 'Use for vibrant green backgrounds when there is no meaning tied to the color, such as colored tags.'
262
+ }
263
+ }
264
+ },
265
+ teal: {
266
+ '[default]': {
267
+ attributes: {
268
+ group: 'paint',
269
+ state: 'active',
270
+ description: 'Use for teal backgrounds when there is no meaning tied to the color, such as colored tags.'
271
+ }
272
+ },
273
+ bold: {
274
+ attributes: {
275
+ group: 'paint',
276
+ state: 'active',
277
+ description: 'Use for vibrant teal backgrounds when there is no meaning tied to the color, such as colored tags.'
278
+ }
279
+ }
280
+ },
281
+ purple: {
282
+ '[default]': {
283
+ attributes: {
284
+ group: 'paint',
285
+ state: 'active',
286
+ description: 'Use for purple backgrounds when there is no meaning tied to the color, such as colored tags.'
287
+ }
288
+ },
289
+ bold: {
290
+ attributes: {
291
+ group: 'paint',
292
+ state: 'active',
293
+ description: 'Use for vibrant purple backgrounds when there is no meaning tied to the color, such as colored tags.'
294
+ }
295
+ }
296
+ },
297
+ magenta: {
298
+ '[default]': {
299
+ attributes: {
300
+ group: 'paint',
301
+ state: 'active',
302
+ description: 'Use for magenta backgrounds when there is no meaning tied to the color, such as colored tags.'
303
+ }
304
+ },
305
+ bold: {
306
+ attributes: {
307
+ group: 'paint',
308
+ state: 'active',
309
+ description: 'Use for vibrant magenta backgrounds when there is no meaning tied to the color, such as colored tags.'
310
+ }
311
+ }
93
312
  }
94
313
  }
95
314
  }