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