@atlaskit/tokens 0.5.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 (167) hide show
  1. package/CHANGELOG.md +12 -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/tokens/atlassian-dark/color/accent.js +150 -39
  12. package/dist/cjs/tokens/atlassian-dark/color/background.js +178 -154
  13. package/dist/cjs/tokens/atlassian-dark/color/border.js +26 -2
  14. package/dist/cjs/tokens/atlassian-dark/color/icon.js +49 -0
  15. package/dist/cjs/tokens/atlassian-dark/color/interaction.js +32 -0
  16. package/dist/cjs/tokens/atlassian-dark/color/text.js +25 -23
  17. package/dist/cjs/tokens/atlassian-dark/deprecated/deprecated.js +344 -0
  18. package/dist/cjs/tokens/atlassian-dark/elevation/shadow.js +66 -0
  19. package/dist/cjs/tokens/atlassian-dark/elevation/surface.js +26 -0
  20. package/dist/cjs/tokens/atlassian-light/color/accent.js +150 -39
  21. package/dist/cjs/tokens/atlassian-light/color/background.js +178 -154
  22. package/dist/cjs/tokens/atlassian-light/color/border.js +26 -2
  23. package/dist/cjs/tokens/atlassian-light/color/icon.js +49 -0
  24. package/dist/cjs/tokens/atlassian-light/color/interaction.js +32 -0
  25. package/dist/cjs/tokens/atlassian-light/color/text.js +25 -23
  26. package/dist/cjs/tokens/atlassian-light/deprecated/deprecated.js +330 -0
  27. package/dist/cjs/tokens/atlassian-light/elevation/shadow.js +52 -0
  28. package/dist/cjs/tokens/atlassian-light/elevation/surface.js +26 -0
  29. package/dist/cjs/tokens/default/color/accent.js +306 -87
  30. package/dist/cjs/tokens/default/color/background.js +339 -309
  31. package/dist/cjs/tokens/default/color/border.js +60 -4
  32. package/dist/cjs/tokens/default/color/icon.js +93 -0
  33. package/dist/cjs/tokens/default/color/interaction.js +44 -0
  34. package/dist/cjs/tokens/default/color/text.js +37 -35
  35. package/dist/cjs/tokens/default/deprecated/deprecated.js +698 -0
  36. package/dist/cjs/tokens/default/elevation/shadow.js +28 -0
  37. package/dist/cjs/tokens/default/elevation/surface.js +42 -0
  38. package/dist/cjs/version.json +1 -1
  39. package/dist/es2019/artifacts/rename-mapping.js +321 -1
  40. package/dist/es2019/artifacts/token-default-values.js +196 -67
  41. package/dist/es2019/artifacts/token-names.js +196 -67
  42. package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +3311 -616
  43. package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +3296 -621
  44. package/dist/es2019/artifacts/types-internal.js +1 -0
  45. package/dist/es2019/get-token.js +8 -3
  46. package/dist/es2019/tokens/atlassian-dark/color/accent.js +150 -39
  47. package/dist/es2019/tokens/atlassian-dark/color/background.js +178 -154
  48. package/dist/es2019/tokens/atlassian-dark/color/border.js +26 -2
  49. package/dist/es2019/tokens/atlassian-dark/color/icon.js +42 -0
  50. package/dist/es2019/tokens/atlassian-dark/color/interaction.js +25 -0
  51. package/dist/es2019/tokens/atlassian-dark/color/text.js +25 -23
  52. package/dist/es2019/tokens/atlassian-dark/deprecated/deprecated.js +337 -0
  53. package/dist/es2019/tokens/atlassian-dark/elevation/shadow.js +59 -0
  54. package/dist/es2019/tokens/atlassian-dark/elevation/surface.js +19 -0
  55. package/dist/es2019/tokens/atlassian-light/color/accent.js +150 -39
  56. package/dist/es2019/tokens/atlassian-light/color/background.js +178 -154
  57. package/dist/es2019/tokens/atlassian-light/color/border.js +26 -2
  58. package/dist/es2019/tokens/atlassian-light/color/icon.js +42 -0
  59. package/dist/es2019/tokens/atlassian-light/color/interaction.js +25 -0
  60. package/dist/es2019/tokens/atlassian-light/color/text.js +25 -23
  61. package/dist/es2019/tokens/atlassian-light/deprecated/deprecated.js +323 -0
  62. package/dist/es2019/tokens/atlassian-light/elevation/shadow.js +45 -0
  63. package/dist/es2019/tokens/atlassian-light/elevation/surface.js +19 -0
  64. package/dist/es2019/tokens/default/color/accent.js +306 -87
  65. package/dist/es2019/tokens/default/color/background.js +339 -314
  66. package/dist/es2019/tokens/default/color/border.js +60 -4
  67. package/dist/es2019/tokens/default/color/icon.js +86 -0
  68. package/dist/es2019/tokens/default/color/interaction.js +37 -0
  69. package/dist/es2019/tokens/default/color/text.js +37 -42
  70. package/dist/es2019/tokens/default/deprecated/deprecated.js +729 -0
  71. package/dist/es2019/tokens/default/elevation/shadow.js +23 -0
  72. package/dist/es2019/tokens/default/elevation/surface.js +37 -0
  73. package/dist/es2019/version.json +1 -1
  74. package/dist/esm/artifacts/rename-mapping.js +321 -1
  75. package/dist/esm/artifacts/token-default-values.js +196 -67
  76. package/dist/esm/artifacts/token-names.js +196 -67
  77. package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +3311 -616
  78. package/dist/esm/artifacts/tokens-raw/atlassian-light.js +3296 -621
  79. package/dist/esm/artifacts/types-internal.js +1 -0
  80. package/dist/esm/get-token.js +8 -3
  81. package/dist/esm/tokens/atlassian-dark/color/accent.js +150 -39
  82. package/dist/esm/tokens/atlassian-dark/color/background.js +178 -154
  83. package/dist/esm/tokens/atlassian-dark/color/border.js +26 -2
  84. package/dist/esm/tokens/atlassian-dark/color/icon.js +42 -0
  85. package/dist/esm/tokens/atlassian-dark/color/interaction.js +25 -0
  86. package/dist/esm/tokens/atlassian-dark/color/text.js +25 -23
  87. package/dist/esm/tokens/atlassian-dark/deprecated/deprecated.js +337 -0
  88. package/dist/esm/tokens/atlassian-dark/elevation/shadow.js +59 -0
  89. package/dist/esm/tokens/atlassian-dark/elevation/surface.js +19 -0
  90. package/dist/esm/tokens/atlassian-light/color/accent.js +150 -39
  91. package/dist/esm/tokens/atlassian-light/color/background.js +178 -154
  92. package/dist/esm/tokens/atlassian-light/color/border.js +26 -2
  93. package/dist/esm/tokens/atlassian-light/color/icon.js +42 -0
  94. package/dist/esm/tokens/atlassian-light/color/interaction.js +25 -0
  95. package/dist/esm/tokens/atlassian-light/color/text.js +25 -23
  96. package/dist/esm/tokens/atlassian-light/deprecated/deprecated.js +323 -0
  97. package/dist/esm/tokens/atlassian-light/elevation/shadow.js +45 -0
  98. package/dist/esm/tokens/atlassian-light/elevation/surface.js +19 -0
  99. package/dist/esm/tokens/default/color/accent.js +306 -87
  100. package/dist/esm/tokens/default/color/background.js +339 -309
  101. package/dist/esm/tokens/default/color/border.js +60 -4
  102. package/dist/esm/tokens/default/color/icon.js +86 -0
  103. package/dist/esm/tokens/default/color/interaction.js +37 -0
  104. package/dist/esm/tokens/default/color/text.js +37 -35
  105. package/dist/esm/tokens/default/deprecated/deprecated.js +691 -0
  106. package/dist/esm/tokens/default/elevation/shadow.js +21 -0
  107. package/dist/esm/tokens/default/elevation/surface.js +35 -0
  108. package/dist/esm/version.json +1 -1
  109. package/dist/types/artifacts/token-default-values.d.ts +196 -67
  110. package/dist/types/artifacts/token-names.d.ts +392 -134
  111. package/dist/types/artifacts/tokens-raw/atlassian-dark.d.ts +86 -0
  112. package/dist/types/artifacts/tokens-raw/atlassian-light.d.ts +62 -0
  113. package/dist/types/artifacts/types-internal.d.ts +4 -0
  114. package/dist/types/artifacts/types.d.ts +1 -1
  115. package/dist/types/get-token.d.ts +2 -2
  116. package/dist/types/tokens/atlassian-dark/color/icon.d.ts +3 -0
  117. package/dist/types/tokens/atlassian-dark/color/interaction.d.ts +3 -0
  118. package/dist/types/tokens/atlassian-dark/deprecated/deprecated.d.ts +3 -0
  119. package/dist/types/tokens/atlassian-dark/{shadow → elevation}/shadow.d.ts +0 -0
  120. package/dist/types/tokens/atlassian-dark/elevation/surface.d.ts +3 -0
  121. package/dist/types/tokens/atlassian-light/color/icon.d.ts +3 -0
  122. package/dist/types/tokens/atlassian-light/color/interaction.d.ts +3 -0
  123. package/dist/types/tokens/atlassian-light/deprecated/deprecated.d.ts +3 -0
  124. package/dist/types/tokens/atlassian-light/{shadow → elevation}/shadow.d.ts +0 -0
  125. package/dist/types/tokens/atlassian-light/elevation/surface.d.ts +3 -0
  126. package/dist/types/tokens/default/color/icon.d.ts +3 -0
  127. package/dist/types/tokens/default/color/interaction.d.ts +3 -0
  128. package/dist/types/tokens/default/deprecated/deprecated.d.ts +3 -0
  129. package/dist/types/tokens/default/{shadow → elevation}/shadow.d.ts +0 -0
  130. package/dist/types/tokens/default/elevation/surface.d.ts +3 -0
  131. package/dist/types/tokens/default/utility/utility.d.ts +72 -72
  132. package/dist/types/types.d.ts +294 -54
  133. package/package.json +2 -1
  134. package/tokens-browser-extension/manifest.json +1 -2
  135. package/dist/cjs/tokens/atlassian-dark/color/icon-border.js +0 -29
  136. package/dist/cjs/tokens/atlassian-dark/color/overlay.js +0 -20
  137. package/dist/cjs/tokens/atlassian-dark/shadow/shadow.js +0 -64
  138. package/dist/cjs/tokens/atlassian-light/color/icon-border.js +0 -29
  139. package/dist/cjs/tokens/atlassian-light/color/overlay.js +0 -20
  140. package/dist/cjs/tokens/atlassian-light/shadow/shadow.js +0 -50
  141. package/dist/cjs/tokens/default/color/icon-border.js +0 -49
  142. package/dist/cjs/tokens/default/color/overlay.js +0 -28
  143. package/dist/cjs/tokens/default/shadow/shadow.js +0 -26
  144. package/dist/es2019/tokens/atlassian-dark/color/icon-border.js +0 -22
  145. package/dist/es2019/tokens/atlassian-dark/color/overlay.js +0 -13
  146. package/dist/es2019/tokens/atlassian-dark/shadow/shadow.js +0 -57
  147. package/dist/es2019/tokens/atlassian-light/color/icon-border.js +0 -22
  148. package/dist/es2019/tokens/atlassian-light/color/overlay.js +0 -13
  149. package/dist/es2019/tokens/atlassian-light/shadow/shadow.js +0 -43
  150. package/dist/es2019/tokens/default/color/icon-border.js +0 -60
  151. package/dist/es2019/tokens/default/color/overlay.js +0 -21
  152. package/dist/es2019/tokens/default/shadow/shadow.js +0 -27
  153. package/dist/esm/tokens/atlassian-dark/color/icon-border.js +0 -22
  154. package/dist/esm/tokens/atlassian-dark/color/overlay.js +0 -13
  155. package/dist/esm/tokens/atlassian-dark/shadow/shadow.js +0 -57
  156. package/dist/esm/tokens/atlassian-light/color/icon-border.js +0 -22
  157. package/dist/esm/tokens/atlassian-light/color/overlay.js +0 -13
  158. package/dist/esm/tokens/atlassian-light/shadow/shadow.js +0 -43
  159. package/dist/esm/tokens/default/color/icon-border.js +0 -42
  160. package/dist/esm/tokens/default/color/overlay.js +0 -21
  161. package/dist/esm/tokens/default/shadow/shadow.js +0 -19
  162. package/dist/types/tokens/atlassian-dark/color/icon-border.d.ts +0 -3
  163. package/dist/types/tokens/atlassian-dark/color/overlay.d.ts +0 -3
  164. package/dist/types/tokens/atlassian-light/color/icon-border.d.ts +0 -3
  165. package/dist/types/tokens/atlassian-light/color/overlay.d.ts +0 -3
  166. package/dist/types/tokens/default/color/icon-border.d.ts +0 -3
  167. package/dist/types/tokens/default/color/overlay.d.ts +0 -3
@@ -1,95 +1,314 @@
1
1
  const 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
  }