@carbon/colors 10.17.0-rc.0 → 10.18.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/README.md +7 -0
- package/package.json +6 -6
- package/scss/colors.scss +1 -1
- package/scss/index.scss +1 -1
- package/scss/mixins.scss +1 -1
- package/scss/module.scss +705 -0
package/README.md
CHANGED
|
@@ -143,6 +143,13 @@ If you're looking for `@carbon/colors` API documentation, check out:
|
|
|
143
143
|
|
|
144
144
|
- [Sass](./docs/sass.md)
|
|
145
145
|
|
|
146
|
+
## 📚 Examples
|
|
147
|
+
|
|
148
|
+
If you're looking for more examples on how to use `@carbon/colors`, we have some
|
|
149
|
+
examples that you can check out:
|
|
150
|
+
|
|
151
|
+
- [sass-modules](./examples/sass-modules)
|
|
152
|
+
|
|
146
153
|
## 🙌 Contributing
|
|
147
154
|
|
|
148
155
|
We're always looking for contributors to help us fix bugs, build new features,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/colors",
|
|
3
3
|
"description": "Colors for digital and software products using the Carbon Design System",
|
|
4
|
-
"version": "10.
|
|
4
|
+
"version": "10.18.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"module": "es/index.js",
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"clean": "rimraf css es lib umd scss"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@carbon/bundler": "^10.
|
|
39
|
-
"@carbon/cli-reporter": "^10.4.0
|
|
40
|
-
"@carbon/scss-generator": "^10.11.0
|
|
41
|
-
"@carbon/test-utils": "^10.13.0
|
|
38
|
+
"@carbon/bundler": "^10.11.0",
|
|
39
|
+
"@carbon/cli-reporter": "^10.4.0",
|
|
40
|
+
"@carbon/scss-generator": "^10.11.0",
|
|
41
|
+
"@carbon/test-utils": "^10.13.0",
|
|
42
42
|
"change-case": "^4.1.1",
|
|
43
43
|
"core-js": "^3.6.5",
|
|
44
44
|
"fs-extra": "^8.1.0",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"sassDir": "scss",
|
|
52
52
|
"needs": "^1.3.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "d41f538ce43d6acb8174e262532c5e4c23faf6a6"
|
|
55
55
|
}
|
package/scss/colors.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Code generated by @carbon/colors. DO NOT EDIT.
|
|
2
2
|
//
|
|
3
|
-
// Copyright IBM Corp. 2018,
|
|
3
|
+
// Copyright IBM Corp. 2018, 2020
|
|
4
4
|
//
|
|
5
5
|
// This source code is licensed under the Apache-2.0 license found in the
|
|
6
6
|
// LICENSE file in the root directory of this source tree.
|
package/scss/index.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Code generated by @carbon/colors. DO NOT EDIT.
|
|
2
2
|
//
|
|
3
|
-
// Copyright IBM Corp. 2018,
|
|
3
|
+
// Copyright IBM Corp. 2018, 2020
|
|
4
4
|
//
|
|
5
5
|
// This source code is licensed under the Apache-2.0 license found in the
|
|
6
6
|
// LICENSE file in the root directory of this source tree.
|
package/scss/mixins.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Code generated by @carbon/colors. DO NOT EDIT.
|
|
2
2
|
//
|
|
3
|
-
// Copyright IBM Corp. 2018,
|
|
3
|
+
// Copyright IBM Corp. 2018, 2020
|
|
4
4
|
//
|
|
5
5
|
// This source code is licensed under the Apache-2.0 license found in the
|
|
6
6
|
// LICENSE file in the root directory of this source tree.
|
package/scss/module.scss
ADDED
|
@@ -0,0 +1,705 @@
|
|
|
1
|
+
// Code generated by @carbon/colors. DO NOT EDIT.
|
|
2
|
+
//
|
|
3
|
+
// Copyright IBM Corp. 2018, 2020
|
|
4
|
+
//
|
|
5
|
+
// This source code is licensed under the Apache-2.0 license found in the
|
|
6
|
+
// LICENSE file in the root directory of this source tree.
|
|
7
|
+
//
|
|
8
|
+
|
|
9
|
+
/// Value for black
|
|
10
|
+
/// @access public
|
|
11
|
+
/// @group @carbon/colors
|
|
12
|
+
$black: #000000 !default;
|
|
13
|
+
|
|
14
|
+
/// Value for white
|
|
15
|
+
/// @access public
|
|
16
|
+
/// @group @carbon/colors
|
|
17
|
+
$white: #ffffff !default;
|
|
18
|
+
|
|
19
|
+
/// Value for black-100 from the IBM Design Language
|
|
20
|
+
/// @access public
|
|
21
|
+
/// @group @carbon/colors
|
|
22
|
+
$black-100: #000000 !default;
|
|
23
|
+
|
|
24
|
+
/// Value for blue-10 from the IBM Design Language
|
|
25
|
+
/// @access public
|
|
26
|
+
/// @group @carbon/colors
|
|
27
|
+
$blue-10: #edf5ff !default;
|
|
28
|
+
|
|
29
|
+
/// Value for blue-20 from the IBM Design Language
|
|
30
|
+
/// @access public
|
|
31
|
+
/// @group @carbon/colors
|
|
32
|
+
$blue-20: #d0e2ff !default;
|
|
33
|
+
|
|
34
|
+
/// Value for blue-30 from the IBM Design Language
|
|
35
|
+
/// @access public
|
|
36
|
+
/// @group @carbon/colors
|
|
37
|
+
$blue-30: #a6c8ff !default;
|
|
38
|
+
|
|
39
|
+
/// Value for blue-40 from the IBM Design Language
|
|
40
|
+
/// @access public
|
|
41
|
+
/// @group @carbon/colors
|
|
42
|
+
$blue-40: #78a9ff !default;
|
|
43
|
+
|
|
44
|
+
/// Value for blue-50 from the IBM Design Language
|
|
45
|
+
/// @access public
|
|
46
|
+
/// @group @carbon/colors
|
|
47
|
+
$blue-50: #4589ff !default;
|
|
48
|
+
|
|
49
|
+
/// Value for blue-60 from the IBM Design Language
|
|
50
|
+
/// @access public
|
|
51
|
+
/// @group @carbon/colors
|
|
52
|
+
$blue-60: #0f62fe !default;
|
|
53
|
+
|
|
54
|
+
/// Value for blue-70 from the IBM Design Language
|
|
55
|
+
/// @access public
|
|
56
|
+
/// @group @carbon/colors
|
|
57
|
+
$blue-70: #0043ce !default;
|
|
58
|
+
|
|
59
|
+
/// Value for blue-80 from the IBM Design Language
|
|
60
|
+
/// @access public
|
|
61
|
+
/// @group @carbon/colors
|
|
62
|
+
$blue-80: #002d9c !default;
|
|
63
|
+
|
|
64
|
+
/// Value for blue-90 from the IBM Design Language
|
|
65
|
+
/// @access public
|
|
66
|
+
/// @group @carbon/colors
|
|
67
|
+
$blue-90: #001d6c !default;
|
|
68
|
+
|
|
69
|
+
/// Value for blue-100 from the IBM Design Language
|
|
70
|
+
/// @access public
|
|
71
|
+
/// @group @carbon/colors
|
|
72
|
+
$blue-100: #001141 !default;
|
|
73
|
+
|
|
74
|
+
/// Value for cool-gray-10 from the IBM Design Language
|
|
75
|
+
/// @access public
|
|
76
|
+
/// @group @carbon/colors
|
|
77
|
+
$cool-gray-10: #f2f4f8 !default;
|
|
78
|
+
|
|
79
|
+
/// Value for cool-gray-20 from the IBM Design Language
|
|
80
|
+
/// @access public
|
|
81
|
+
/// @group @carbon/colors
|
|
82
|
+
$cool-gray-20: #dde1e6 !default;
|
|
83
|
+
|
|
84
|
+
/// Value for cool-gray-30 from the IBM Design Language
|
|
85
|
+
/// @access public
|
|
86
|
+
/// @group @carbon/colors
|
|
87
|
+
$cool-gray-30: #c1c7cd !default;
|
|
88
|
+
|
|
89
|
+
/// Value for cool-gray-40 from the IBM Design Language
|
|
90
|
+
/// @access public
|
|
91
|
+
/// @group @carbon/colors
|
|
92
|
+
$cool-gray-40: #a2a9b0 !default;
|
|
93
|
+
|
|
94
|
+
/// Value for cool-gray-50 from the IBM Design Language
|
|
95
|
+
/// @access public
|
|
96
|
+
/// @group @carbon/colors
|
|
97
|
+
$cool-gray-50: #878d96 !default;
|
|
98
|
+
|
|
99
|
+
/// Value for cool-gray-60 from the IBM Design Language
|
|
100
|
+
/// @access public
|
|
101
|
+
/// @group @carbon/colors
|
|
102
|
+
$cool-gray-60: #697077 !default;
|
|
103
|
+
|
|
104
|
+
/// Value for cool-gray-70 from the IBM Design Language
|
|
105
|
+
/// @access public
|
|
106
|
+
/// @group @carbon/colors
|
|
107
|
+
$cool-gray-70: #4d5358 !default;
|
|
108
|
+
|
|
109
|
+
/// Value for cool-gray-80 from the IBM Design Language
|
|
110
|
+
/// @access public
|
|
111
|
+
/// @group @carbon/colors
|
|
112
|
+
$cool-gray-80: #343a3f !default;
|
|
113
|
+
|
|
114
|
+
/// Value for cool-gray-90 from the IBM Design Language
|
|
115
|
+
/// @access public
|
|
116
|
+
/// @group @carbon/colors
|
|
117
|
+
$cool-gray-90: #21272a !default;
|
|
118
|
+
|
|
119
|
+
/// Value for cool-gray-100 from the IBM Design Language
|
|
120
|
+
/// @access public
|
|
121
|
+
/// @group @carbon/colors
|
|
122
|
+
$cool-gray-100: #121619 !default;
|
|
123
|
+
|
|
124
|
+
/// Value for cyan-10 from the IBM Design Language
|
|
125
|
+
/// @access public
|
|
126
|
+
/// @group @carbon/colors
|
|
127
|
+
$cyan-10: #e5f6ff !default;
|
|
128
|
+
|
|
129
|
+
/// Value for cyan-20 from the IBM Design Language
|
|
130
|
+
/// @access public
|
|
131
|
+
/// @group @carbon/colors
|
|
132
|
+
$cyan-20: #bae6ff !default;
|
|
133
|
+
|
|
134
|
+
/// Value for cyan-30 from the IBM Design Language
|
|
135
|
+
/// @access public
|
|
136
|
+
/// @group @carbon/colors
|
|
137
|
+
$cyan-30: #82cfff !default;
|
|
138
|
+
|
|
139
|
+
/// Value for cyan-40 from the IBM Design Language
|
|
140
|
+
/// @access public
|
|
141
|
+
/// @group @carbon/colors
|
|
142
|
+
$cyan-40: #33b1ff !default;
|
|
143
|
+
|
|
144
|
+
/// Value for cyan-50 from the IBM Design Language
|
|
145
|
+
/// @access public
|
|
146
|
+
/// @group @carbon/colors
|
|
147
|
+
$cyan-50: #1192e8 !default;
|
|
148
|
+
|
|
149
|
+
/// Value for cyan-60 from the IBM Design Language
|
|
150
|
+
/// @access public
|
|
151
|
+
/// @group @carbon/colors
|
|
152
|
+
$cyan-60: #0072c3 !default;
|
|
153
|
+
|
|
154
|
+
/// Value for cyan-70 from the IBM Design Language
|
|
155
|
+
/// @access public
|
|
156
|
+
/// @group @carbon/colors
|
|
157
|
+
$cyan-70: #00539a !default;
|
|
158
|
+
|
|
159
|
+
/// Value for cyan-80 from the IBM Design Language
|
|
160
|
+
/// @access public
|
|
161
|
+
/// @group @carbon/colors
|
|
162
|
+
$cyan-80: #003a6d !default;
|
|
163
|
+
|
|
164
|
+
/// Value for cyan-90 from the IBM Design Language
|
|
165
|
+
/// @access public
|
|
166
|
+
/// @group @carbon/colors
|
|
167
|
+
$cyan-90: #012749 !default;
|
|
168
|
+
|
|
169
|
+
/// Value for cyan-100 from the IBM Design Language
|
|
170
|
+
/// @access public
|
|
171
|
+
/// @group @carbon/colors
|
|
172
|
+
$cyan-100: #061727 !default;
|
|
173
|
+
|
|
174
|
+
/// Value for gray-10 from the IBM Design Language
|
|
175
|
+
/// @access public
|
|
176
|
+
/// @group @carbon/colors
|
|
177
|
+
$gray-10: #f4f4f4 !default;
|
|
178
|
+
|
|
179
|
+
/// Value for gray-20 from the IBM Design Language
|
|
180
|
+
/// @access public
|
|
181
|
+
/// @group @carbon/colors
|
|
182
|
+
$gray-20: #e0e0e0 !default;
|
|
183
|
+
|
|
184
|
+
/// Value for gray-30 from the IBM Design Language
|
|
185
|
+
/// @access public
|
|
186
|
+
/// @group @carbon/colors
|
|
187
|
+
$gray-30: #c6c6c6 !default;
|
|
188
|
+
|
|
189
|
+
/// Value for gray-40 from the IBM Design Language
|
|
190
|
+
/// @access public
|
|
191
|
+
/// @group @carbon/colors
|
|
192
|
+
$gray-40: #a8a8a8 !default;
|
|
193
|
+
|
|
194
|
+
/// Value for gray-50 from the IBM Design Language
|
|
195
|
+
/// @access public
|
|
196
|
+
/// @group @carbon/colors
|
|
197
|
+
$gray-50: #8d8d8d !default;
|
|
198
|
+
|
|
199
|
+
/// Value for gray-60 from the IBM Design Language
|
|
200
|
+
/// @access public
|
|
201
|
+
/// @group @carbon/colors
|
|
202
|
+
$gray-60: #6f6f6f !default;
|
|
203
|
+
|
|
204
|
+
/// Value for gray-70 from the IBM Design Language
|
|
205
|
+
/// @access public
|
|
206
|
+
/// @group @carbon/colors
|
|
207
|
+
$gray-70: #525252 !default;
|
|
208
|
+
|
|
209
|
+
/// Value for gray-80 from the IBM Design Language
|
|
210
|
+
/// @access public
|
|
211
|
+
/// @group @carbon/colors
|
|
212
|
+
$gray-80: #393939 !default;
|
|
213
|
+
|
|
214
|
+
/// Value for gray-90 from the IBM Design Language
|
|
215
|
+
/// @access public
|
|
216
|
+
/// @group @carbon/colors
|
|
217
|
+
$gray-90: #262626 !default;
|
|
218
|
+
|
|
219
|
+
/// Value for gray-100 from the IBM Design Language
|
|
220
|
+
/// @access public
|
|
221
|
+
/// @group @carbon/colors
|
|
222
|
+
$gray-100: #161616 !default;
|
|
223
|
+
|
|
224
|
+
/// Value for green-10 from the IBM Design Language
|
|
225
|
+
/// @access public
|
|
226
|
+
/// @group @carbon/colors
|
|
227
|
+
$green-10: #defbe6 !default;
|
|
228
|
+
|
|
229
|
+
/// Value for green-20 from the IBM Design Language
|
|
230
|
+
/// @access public
|
|
231
|
+
/// @group @carbon/colors
|
|
232
|
+
$green-20: #a7f0ba !default;
|
|
233
|
+
|
|
234
|
+
/// Value for green-30 from the IBM Design Language
|
|
235
|
+
/// @access public
|
|
236
|
+
/// @group @carbon/colors
|
|
237
|
+
$green-30: #6fdc8c !default;
|
|
238
|
+
|
|
239
|
+
/// Value for green-40 from the IBM Design Language
|
|
240
|
+
/// @access public
|
|
241
|
+
/// @group @carbon/colors
|
|
242
|
+
$green-40: #42be65 !default;
|
|
243
|
+
|
|
244
|
+
/// Value for green-50 from the IBM Design Language
|
|
245
|
+
/// @access public
|
|
246
|
+
/// @group @carbon/colors
|
|
247
|
+
$green-50: #24a148 !default;
|
|
248
|
+
|
|
249
|
+
/// Value for green-60 from the IBM Design Language
|
|
250
|
+
/// @access public
|
|
251
|
+
/// @group @carbon/colors
|
|
252
|
+
$green-60: #198038 !default;
|
|
253
|
+
|
|
254
|
+
/// Value for green-70 from the IBM Design Language
|
|
255
|
+
/// @access public
|
|
256
|
+
/// @group @carbon/colors
|
|
257
|
+
$green-70: #0e6027 !default;
|
|
258
|
+
|
|
259
|
+
/// Value for green-80 from the IBM Design Language
|
|
260
|
+
/// @access public
|
|
261
|
+
/// @group @carbon/colors
|
|
262
|
+
$green-80: #044317 !default;
|
|
263
|
+
|
|
264
|
+
/// Value for green-90 from the IBM Design Language
|
|
265
|
+
/// @access public
|
|
266
|
+
/// @group @carbon/colors
|
|
267
|
+
$green-90: #022d0d !default;
|
|
268
|
+
|
|
269
|
+
/// Value for green-100 from the IBM Design Language
|
|
270
|
+
/// @access public
|
|
271
|
+
/// @group @carbon/colors
|
|
272
|
+
$green-100: #071908 !default;
|
|
273
|
+
|
|
274
|
+
/// Value for magenta-10 from the IBM Design Language
|
|
275
|
+
/// @access public
|
|
276
|
+
/// @group @carbon/colors
|
|
277
|
+
$magenta-10: #fff0f7 !default;
|
|
278
|
+
|
|
279
|
+
/// Value for magenta-20 from the IBM Design Language
|
|
280
|
+
/// @access public
|
|
281
|
+
/// @group @carbon/colors
|
|
282
|
+
$magenta-20: #ffd6e8 !default;
|
|
283
|
+
|
|
284
|
+
/// Value for magenta-30 from the IBM Design Language
|
|
285
|
+
/// @access public
|
|
286
|
+
/// @group @carbon/colors
|
|
287
|
+
$magenta-30: #ffafd2 !default;
|
|
288
|
+
|
|
289
|
+
/// Value for magenta-40 from the IBM Design Language
|
|
290
|
+
/// @access public
|
|
291
|
+
/// @group @carbon/colors
|
|
292
|
+
$magenta-40: #ff7eb6 !default;
|
|
293
|
+
|
|
294
|
+
/// Value for magenta-50 from the IBM Design Language
|
|
295
|
+
/// @access public
|
|
296
|
+
/// @group @carbon/colors
|
|
297
|
+
$magenta-50: #ee5396 !default;
|
|
298
|
+
|
|
299
|
+
/// Value for magenta-60 from the IBM Design Language
|
|
300
|
+
/// @access public
|
|
301
|
+
/// @group @carbon/colors
|
|
302
|
+
$magenta-60: #d02670 !default;
|
|
303
|
+
|
|
304
|
+
/// Value for magenta-70 from the IBM Design Language
|
|
305
|
+
/// @access public
|
|
306
|
+
/// @group @carbon/colors
|
|
307
|
+
$magenta-70: #9f1853 !default;
|
|
308
|
+
|
|
309
|
+
/// Value for magenta-80 from the IBM Design Language
|
|
310
|
+
/// @access public
|
|
311
|
+
/// @group @carbon/colors
|
|
312
|
+
$magenta-80: #740937 !default;
|
|
313
|
+
|
|
314
|
+
/// Value for magenta-90 from the IBM Design Language
|
|
315
|
+
/// @access public
|
|
316
|
+
/// @group @carbon/colors
|
|
317
|
+
$magenta-90: #510224 !default;
|
|
318
|
+
|
|
319
|
+
/// Value for magenta-100 from the IBM Design Language
|
|
320
|
+
/// @access public
|
|
321
|
+
/// @group @carbon/colors
|
|
322
|
+
$magenta-100: #2a0a18 !default;
|
|
323
|
+
|
|
324
|
+
/// Value for orange-40 from the IBM Design Language
|
|
325
|
+
/// @access public
|
|
326
|
+
/// @group @carbon/colors
|
|
327
|
+
$orange-40: #ff832b !default;
|
|
328
|
+
|
|
329
|
+
/// Value for orange-60 from the IBM Design Language
|
|
330
|
+
/// @access public
|
|
331
|
+
/// @group @carbon/colors
|
|
332
|
+
$orange-60: #ba4e00 !default;
|
|
333
|
+
|
|
334
|
+
/// Value for orange-70 from the IBM Design Language
|
|
335
|
+
/// @access public
|
|
336
|
+
/// @group @carbon/colors
|
|
337
|
+
$orange-70: #8a3800 !default;
|
|
338
|
+
|
|
339
|
+
/// Value for purple-10 from the IBM Design Language
|
|
340
|
+
/// @access public
|
|
341
|
+
/// @group @carbon/colors
|
|
342
|
+
$purple-10: #f6f2ff !default;
|
|
343
|
+
|
|
344
|
+
/// Value for purple-20 from the IBM Design Language
|
|
345
|
+
/// @access public
|
|
346
|
+
/// @group @carbon/colors
|
|
347
|
+
$purple-20: #e8daff !default;
|
|
348
|
+
|
|
349
|
+
/// Value for purple-30 from the IBM Design Language
|
|
350
|
+
/// @access public
|
|
351
|
+
/// @group @carbon/colors
|
|
352
|
+
$purple-30: #d4bbff !default;
|
|
353
|
+
|
|
354
|
+
/// Value for purple-40 from the IBM Design Language
|
|
355
|
+
/// @access public
|
|
356
|
+
/// @group @carbon/colors
|
|
357
|
+
$purple-40: #be95ff !default;
|
|
358
|
+
|
|
359
|
+
/// Value for purple-50 from the IBM Design Language
|
|
360
|
+
/// @access public
|
|
361
|
+
/// @group @carbon/colors
|
|
362
|
+
$purple-50: #a56eff !default;
|
|
363
|
+
|
|
364
|
+
/// Value for purple-60 from the IBM Design Language
|
|
365
|
+
/// @access public
|
|
366
|
+
/// @group @carbon/colors
|
|
367
|
+
$purple-60: #8a3ffc !default;
|
|
368
|
+
|
|
369
|
+
/// Value for purple-70 from the IBM Design Language
|
|
370
|
+
/// @access public
|
|
371
|
+
/// @group @carbon/colors
|
|
372
|
+
$purple-70: #6929c4 !default;
|
|
373
|
+
|
|
374
|
+
/// Value for purple-80 from the IBM Design Language
|
|
375
|
+
/// @access public
|
|
376
|
+
/// @group @carbon/colors
|
|
377
|
+
$purple-80: #491d8b !default;
|
|
378
|
+
|
|
379
|
+
/// Value for purple-90 from the IBM Design Language
|
|
380
|
+
/// @access public
|
|
381
|
+
/// @group @carbon/colors
|
|
382
|
+
$purple-90: #31135e !default;
|
|
383
|
+
|
|
384
|
+
/// Value for purple-100 from the IBM Design Language
|
|
385
|
+
/// @access public
|
|
386
|
+
/// @group @carbon/colors
|
|
387
|
+
$purple-100: #1c0f30 !default;
|
|
388
|
+
|
|
389
|
+
/// Value for red-10 from the IBM Design Language
|
|
390
|
+
/// @access public
|
|
391
|
+
/// @group @carbon/colors
|
|
392
|
+
$red-10: #fff1f1 !default;
|
|
393
|
+
|
|
394
|
+
/// Value for red-20 from the IBM Design Language
|
|
395
|
+
/// @access public
|
|
396
|
+
/// @group @carbon/colors
|
|
397
|
+
$red-20: #ffd7d9 !default;
|
|
398
|
+
|
|
399
|
+
/// Value for red-30 from the IBM Design Language
|
|
400
|
+
/// @access public
|
|
401
|
+
/// @group @carbon/colors
|
|
402
|
+
$red-30: #ffb3b8 !default;
|
|
403
|
+
|
|
404
|
+
/// Value for red-40 from the IBM Design Language
|
|
405
|
+
/// @access public
|
|
406
|
+
/// @group @carbon/colors
|
|
407
|
+
$red-40: #ff8389 !default;
|
|
408
|
+
|
|
409
|
+
/// Value for red-50 from the IBM Design Language
|
|
410
|
+
/// @access public
|
|
411
|
+
/// @group @carbon/colors
|
|
412
|
+
$red-50: #fa4d56 !default;
|
|
413
|
+
|
|
414
|
+
/// Value for red-60 from the IBM Design Language
|
|
415
|
+
/// @access public
|
|
416
|
+
/// @group @carbon/colors
|
|
417
|
+
$red-60: #da1e28 !default;
|
|
418
|
+
|
|
419
|
+
/// Value for red-70 from the IBM Design Language
|
|
420
|
+
/// @access public
|
|
421
|
+
/// @group @carbon/colors
|
|
422
|
+
$red-70: #a2191f !default;
|
|
423
|
+
|
|
424
|
+
/// Value for red-80 from the IBM Design Language
|
|
425
|
+
/// @access public
|
|
426
|
+
/// @group @carbon/colors
|
|
427
|
+
$red-80: #750e13 !default;
|
|
428
|
+
|
|
429
|
+
/// Value for red-90 from the IBM Design Language
|
|
430
|
+
/// @access public
|
|
431
|
+
/// @group @carbon/colors
|
|
432
|
+
$red-90: #520408 !default;
|
|
433
|
+
|
|
434
|
+
/// Value for red-100 from the IBM Design Language
|
|
435
|
+
/// @access public
|
|
436
|
+
/// @group @carbon/colors
|
|
437
|
+
$red-100: #2d0709 !default;
|
|
438
|
+
|
|
439
|
+
/// Value for teal-10 from the IBM Design Language
|
|
440
|
+
/// @access public
|
|
441
|
+
/// @group @carbon/colors
|
|
442
|
+
$teal-10: #d9fbfb !default;
|
|
443
|
+
|
|
444
|
+
/// Value for teal-20 from the IBM Design Language
|
|
445
|
+
/// @access public
|
|
446
|
+
/// @group @carbon/colors
|
|
447
|
+
$teal-20: #9ef0f0 !default;
|
|
448
|
+
|
|
449
|
+
/// Value for teal-30 from the IBM Design Language
|
|
450
|
+
/// @access public
|
|
451
|
+
/// @group @carbon/colors
|
|
452
|
+
$teal-30: #3ddbd9 !default;
|
|
453
|
+
|
|
454
|
+
/// Value for teal-40 from the IBM Design Language
|
|
455
|
+
/// @access public
|
|
456
|
+
/// @group @carbon/colors
|
|
457
|
+
$teal-40: #08bdba !default;
|
|
458
|
+
|
|
459
|
+
/// Value for teal-50 from the IBM Design Language
|
|
460
|
+
/// @access public
|
|
461
|
+
/// @group @carbon/colors
|
|
462
|
+
$teal-50: #009d9a !default;
|
|
463
|
+
|
|
464
|
+
/// Value for teal-60 from the IBM Design Language
|
|
465
|
+
/// @access public
|
|
466
|
+
/// @group @carbon/colors
|
|
467
|
+
$teal-60: #007d79 !default;
|
|
468
|
+
|
|
469
|
+
/// Value for teal-70 from the IBM Design Language
|
|
470
|
+
/// @access public
|
|
471
|
+
/// @group @carbon/colors
|
|
472
|
+
$teal-70: #005d5d !default;
|
|
473
|
+
|
|
474
|
+
/// Value for teal-80 from the IBM Design Language
|
|
475
|
+
/// @access public
|
|
476
|
+
/// @group @carbon/colors
|
|
477
|
+
$teal-80: #004144 !default;
|
|
478
|
+
|
|
479
|
+
/// Value for teal-90 from the IBM Design Language
|
|
480
|
+
/// @access public
|
|
481
|
+
/// @group @carbon/colors
|
|
482
|
+
$teal-90: #022b30 !default;
|
|
483
|
+
|
|
484
|
+
/// Value for teal-100 from the IBM Design Language
|
|
485
|
+
/// @access public
|
|
486
|
+
/// @group @carbon/colors
|
|
487
|
+
$teal-100: #081a1c !default;
|
|
488
|
+
|
|
489
|
+
/// Value for warm-gray-10 from the IBM Design Language
|
|
490
|
+
/// @access public
|
|
491
|
+
/// @group @carbon/colors
|
|
492
|
+
$warm-gray-10: #f7f3f2 !default;
|
|
493
|
+
|
|
494
|
+
/// Value for warm-gray-20 from the IBM Design Language
|
|
495
|
+
/// @access public
|
|
496
|
+
/// @group @carbon/colors
|
|
497
|
+
$warm-gray-20: #e5e0df !default;
|
|
498
|
+
|
|
499
|
+
/// Value for warm-gray-30 from the IBM Design Language
|
|
500
|
+
/// @access public
|
|
501
|
+
/// @group @carbon/colors
|
|
502
|
+
$warm-gray-30: #cac5c4 !default;
|
|
503
|
+
|
|
504
|
+
/// Value for warm-gray-40 from the IBM Design Language
|
|
505
|
+
/// @access public
|
|
506
|
+
/// @group @carbon/colors
|
|
507
|
+
$warm-gray-40: #ada8a8 !default;
|
|
508
|
+
|
|
509
|
+
/// Value for warm-gray-50 from the IBM Design Language
|
|
510
|
+
/// @access public
|
|
511
|
+
/// @group @carbon/colors
|
|
512
|
+
$warm-gray-50: #8f8b8b !default;
|
|
513
|
+
|
|
514
|
+
/// Value for warm-gray-60 from the IBM Design Language
|
|
515
|
+
/// @access public
|
|
516
|
+
/// @group @carbon/colors
|
|
517
|
+
$warm-gray-60: #726e6e !default;
|
|
518
|
+
|
|
519
|
+
/// Value for warm-gray-70 from the IBM Design Language
|
|
520
|
+
/// @access public
|
|
521
|
+
/// @group @carbon/colors
|
|
522
|
+
$warm-gray-70: #565151 !default;
|
|
523
|
+
|
|
524
|
+
/// Value for warm-gray-80 from the IBM Design Language
|
|
525
|
+
/// @access public
|
|
526
|
+
/// @group @carbon/colors
|
|
527
|
+
$warm-gray-80: #3c3838 !default;
|
|
528
|
+
|
|
529
|
+
/// Value for warm-gray-90 from the IBM Design Language
|
|
530
|
+
/// @access public
|
|
531
|
+
/// @group @carbon/colors
|
|
532
|
+
$warm-gray-90: #272525 !default;
|
|
533
|
+
|
|
534
|
+
/// Value for warm-gray-100 from the IBM Design Language
|
|
535
|
+
/// @access public
|
|
536
|
+
/// @group @carbon/colors
|
|
537
|
+
$warm-gray-100: #171414 !default;
|
|
538
|
+
|
|
539
|
+
/// Value for white-0 from the IBM Design Language
|
|
540
|
+
/// @access public
|
|
541
|
+
/// @group @carbon/colors
|
|
542
|
+
$white-0: #ffffff !default;
|
|
543
|
+
|
|
544
|
+
/// Value for yellow-20 from the IBM Design Language
|
|
545
|
+
/// @access public
|
|
546
|
+
/// @group @carbon/colors
|
|
547
|
+
$yellow-20: #fdd13a !default;
|
|
548
|
+
|
|
549
|
+
/// Value for yellow-30 from the IBM Design Language
|
|
550
|
+
/// @access public
|
|
551
|
+
/// @group @carbon/colors
|
|
552
|
+
$yellow-30: #f1c21b !default;
|
|
553
|
+
|
|
554
|
+
/// Value for yellow-40 from the IBM Design Language
|
|
555
|
+
/// @access public
|
|
556
|
+
/// @group @carbon/colors
|
|
557
|
+
$yellow-40: #d2a106 !default;
|
|
558
|
+
|
|
559
|
+
/// Value for yellow-50 from the IBM Design Language
|
|
560
|
+
/// @access public
|
|
561
|
+
/// @group @carbon/colors
|
|
562
|
+
$yellow-50: #b28600 !default;
|
|
563
|
+
|
|
564
|
+
/// Colors from the IBM Design Language
|
|
565
|
+
/// @access public
|
|
566
|
+
/// @group @carbon/colors
|
|
567
|
+
$colors: (
|
|
568
|
+
black: (
|
|
569
|
+
100: #000000,
|
|
570
|
+
),
|
|
571
|
+
blue: (
|
|
572
|
+
10: #edf5ff,
|
|
573
|
+
20: #d0e2ff,
|
|
574
|
+
30: #a6c8ff,
|
|
575
|
+
40: #78a9ff,
|
|
576
|
+
50: #4589ff,
|
|
577
|
+
60: #0f62fe,
|
|
578
|
+
70: #0043ce,
|
|
579
|
+
80: #002d9c,
|
|
580
|
+
90: #001d6c,
|
|
581
|
+
100: #001141,
|
|
582
|
+
),
|
|
583
|
+
cool-gray: (
|
|
584
|
+
10: #f2f4f8,
|
|
585
|
+
20: #dde1e6,
|
|
586
|
+
30: #c1c7cd,
|
|
587
|
+
40: #a2a9b0,
|
|
588
|
+
50: #878d96,
|
|
589
|
+
60: #697077,
|
|
590
|
+
70: #4d5358,
|
|
591
|
+
80: #343a3f,
|
|
592
|
+
90: #21272a,
|
|
593
|
+
100: #121619,
|
|
594
|
+
),
|
|
595
|
+
cyan: (
|
|
596
|
+
10: #e5f6ff,
|
|
597
|
+
20: #bae6ff,
|
|
598
|
+
30: #82cfff,
|
|
599
|
+
40: #33b1ff,
|
|
600
|
+
50: #1192e8,
|
|
601
|
+
60: #0072c3,
|
|
602
|
+
70: #00539a,
|
|
603
|
+
80: #003a6d,
|
|
604
|
+
90: #012749,
|
|
605
|
+
100: #061727,
|
|
606
|
+
),
|
|
607
|
+
gray: (
|
|
608
|
+
10: #f4f4f4,
|
|
609
|
+
20: #e0e0e0,
|
|
610
|
+
30: #c6c6c6,
|
|
611
|
+
40: #a8a8a8,
|
|
612
|
+
50: #8d8d8d,
|
|
613
|
+
60: #6f6f6f,
|
|
614
|
+
70: #525252,
|
|
615
|
+
80: #393939,
|
|
616
|
+
90: #262626,
|
|
617
|
+
100: #161616,
|
|
618
|
+
),
|
|
619
|
+
green: (
|
|
620
|
+
10: #defbe6,
|
|
621
|
+
20: #a7f0ba,
|
|
622
|
+
30: #6fdc8c,
|
|
623
|
+
40: #42be65,
|
|
624
|
+
50: #24a148,
|
|
625
|
+
60: #198038,
|
|
626
|
+
70: #0e6027,
|
|
627
|
+
80: #044317,
|
|
628
|
+
90: #022d0d,
|
|
629
|
+
100: #071908,
|
|
630
|
+
),
|
|
631
|
+
magenta: (
|
|
632
|
+
10: #fff0f7,
|
|
633
|
+
20: #ffd6e8,
|
|
634
|
+
30: #ffafd2,
|
|
635
|
+
40: #ff7eb6,
|
|
636
|
+
50: #ee5396,
|
|
637
|
+
60: #d02670,
|
|
638
|
+
70: #9f1853,
|
|
639
|
+
80: #740937,
|
|
640
|
+
90: #510224,
|
|
641
|
+
100: #2a0a18,
|
|
642
|
+
),
|
|
643
|
+
orange: (
|
|
644
|
+
40: #ff832b,
|
|
645
|
+
60: #ba4e00,
|
|
646
|
+
70: #8a3800,
|
|
647
|
+
),
|
|
648
|
+
purple: (
|
|
649
|
+
10: #f6f2ff,
|
|
650
|
+
20: #e8daff,
|
|
651
|
+
30: #d4bbff,
|
|
652
|
+
40: #be95ff,
|
|
653
|
+
50: #a56eff,
|
|
654
|
+
60: #8a3ffc,
|
|
655
|
+
70: #6929c4,
|
|
656
|
+
80: #491d8b,
|
|
657
|
+
90: #31135e,
|
|
658
|
+
100: #1c0f30,
|
|
659
|
+
),
|
|
660
|
+
red: (
|
|
661
|
+
10: #fff1f1,
|
|
662
|
+
20: #ffd7d9,
|
|
663
|
+
30: #ffb3b8,
|
|
664
|
+
40: #ff8389,
|
|
665
|
+
50: #fa4d56,
|
|
666
|
+
60: #da1e28,
|
|
667
|
+
70: #a2191f,
|
|
668
|
+
80: #750e13,
|
|
669
|
+
90: #520408,
|
|
670
|
+
100: #2d0709,
|
|
671
|
+
),
|
|
672
|
+
teal: (
|
|
673
|
+
10: #d9fbfb,
|
|
674
|
+
20: #9ef0f0,
|
|
675
|
+
30: #3ddbd9,
|
|
676
|
+
40: #08bdba,
|
|
677
|
+
50: #009d9a,
|
|
678
|
+
60: #007d79,
|
|
679
|
+
70: #005d5d,
|
|
680
|
+
80: #004144,
|
|
681
|
+
90: #022b30,
|
|
682
|
+
100: #081a1c,
|
|
683
|
+
),
|
|
684
|
+
warm-gray: (
|
|
685
|
+
10: #f7f3f2,
|
|
686
|
+
20: #e5e0df,
|
|
687
|
+
30: #cac5c4,
|
|
688
|
+
40: #ada8a8,
|
|
689
|
+
50: #8f8b8b,
|
|
690
|
+
60: #726e6e,
|
|
691
|
+
70: #565151,
|
|
692
|
+
80: #3c3838,
|
|
693
|
+
90: #272525,
|
|
694
|
+
100: #171414,
|
|
695
|
+
),
|
|
696
|
+
white: (
|
|
697
|
+
0: #ffffff,
|
|
698
|
+
),
|
|
699
|
+
yellow: (
|
|
700
|
+
20: #fdd13a,
|
|
701
|
+
30: #f1c21b,
|
|
702
|
+
40: #d2a106,
|
|
703
|
+
50: #b28600,
|
|
704
|
+
),
|
|
705
|
+
) !default;
|