Re-add colour overrides
https://tailwindcss.com/docs/upgrading-to-v2#configure-your-color-palette-explicitly
This commit is contained in:
parent
3f1f858c37
commit
a142f073f2
|
@ -1,20 +1,24 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
transparent: 'transparent',
|
|
||||||
current: 'currentColor',
|
current: 'currentColor',
|
||||||
|
inherit: 'inherit',
|
||||||
|
transparent: 'transparent',
|
||||||
|
|
||||||
black: '#000',
|
black: '#000',
|
||||||
white: '#fff',
|
white: '#fff',
|
||||||
|
|
||||||
gray: {
|
gray: {
|
||||||
100: '#f7fafc',
|
50: '#f9f9f9',
|
||||||
200: '#edf2f7',
|
100: '#f5f5f5',
|
||||||
|
150: '#eee',
|
||||||
|
200: '#aaa',
|
||||||
300: '#e2e8f0',
|
300: '#e2e8f0',
|
||||||
400: '#cbd5e0',
|
400: '#cbd5e0',
|
||||||
500: '#a0aec0',
|
500: '#a0aec0',
|
||||||
600: '#718096',
|
600: '#718096',
|
||||||
700: '#4a5568',
|
700: '#36393e',
|
||||||
800: '#2d3748',
|
750: '#2e3136',
|
||||||
900: '#1a202c',
|
800: '#1e2125',
|
||||||
|
900: '#18171b',
|
||||||
},
|
},
|
||||||
red: {
|
red: {
|
||||||
100: '#fff5f5',
|
100: '#fff5f5',
|
||||||
|
|
Loading…
Reference in a new issue