Update colours format
This commit is contained in:
parent
c16662a9a8
commit
03868807e1
|
@ -1,21 +1,29 @@
|
|||
module.exports = {
|
||||
theme: {
|
||||
colors: {
|
||||
'black': '#22292f',
|
||||
'black-60': 'rgba(0, 0, 0, .6)',
|
||||
'blue': '#3490dc',
|
||||
'blue-dark': '#2779bd',
|
||||
'blue-light': '#bcdefa',
|
||||
'green': '#77B159',
|
||||
'green-dark': '#325E1C',
|
||||
'green-light': '#CDE2C2',
|
||||
'green-lighter': '#F3FAEE',
|
||||
'grey': '#b8c2cc',
|
||||
'grey-dark': '#8795a1',
|
||||
'grey-darkest': '#3d4852',
|
||||
'grey-light': '#dae1e7',
|
||||
'grey-lighter': '#f0f0f0',
|
||||
'grey-lightest': '#F6F6F2',
|
||||
black: {
|
||||
default: '#22292f',
|
||||
'60': 'rgba(0, 0, 0, .6)',
|
||||
},
|
||||
blue: {
|
||||
default: '#3490dc',
|
||||
dark: '#2779bd',
|
||||
light: '#bcdefa',
|
||||
},
|
||||
'green': {
|
||||
default: '#77B159',
|
||||
dark: '#325E1C',
|
||||
light: '#CDE2C2',
|
||||
lighter: '#F3FAEE',
|
||||
},
|
||||
'grey': {
|
||||
default: '#b8c2cc',
|
||||
dark: '#8795a1',
|
||||
darkest: '#3d4852',
|
||||
light: '#dae1e7',
|
||||
lighter: '#f0f0f0',
|
||||
lightest: '#F6F6F2',
|
||||
},
|
||||
'transparent': 'transparent',
|
||||
'white': '#ffffff',
|
||||
},
|
||||
|
|
Reference in a new issue