Skip to content

Commit b3ed724

Browse files
committed
Move black and white colors to colors.js
1 parent 823cace commit b3ed724

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

colors.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
module.exports = {
2+
black: '#000',
3+
white: '#fff',
24
rose: {
35
50: '#fff1f2',
46
100: '#ffe4e6',

stubs/defaultConfig.stub.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ module.exports = {
1616
transparent: 'transparent',
1717
current: 'currentColor',
1818

19-
black: '#000',
20-
white: '#fff',
21-
19+
black: colors.black,
20+
white: colors.white,
2221
gray: colors.coolGray,
2322
red: colors.red,
2423
yellow: colors.amber,

0 commit comments

Comments
 (0)