Skip to content

Commit

Permalink
Move black and white colors to colors.js
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwathan committed Nov 14, 2020
1 parent 823cace commit b3ed724
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions colors.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
module.exports = {
black: '#000',
white: '#fff',
rose: {
50: '#fff1f2',
100: '#ffe4e6',
Expand Down
5 changes: 2 additions & 3 deletions stubs/defaultConfig.stub.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ module.exports = {
transparent: 'transparent',
current: 'currentColor',

black: '#000',
white: '#fff',

black: colors.black,
white: colors.white,
gray: colors.coolGray,
red: colors.red,
yellow: colors.amber,
Expand Down

0 comments on commit b3ed724

Please sign in to comment.