Remove quotes
This commit is contained in:
parent
fc04267074
commit
bbbcd77757
|
@ -3,16 +3,16 @@ defaultTheme = require('tailwindcss/defaultTheme')()
|
||||||
module.exports = {
|
module.exports = {
|
||||||
theme: {
|
theme: {
|
||||||
colors: {
|
colors: {
|
||||||
'inherit': 'inherit',
|
inherit: 'inherit',
|
||||||
'black': '#22292f',
|
black: '#22292f',
|
||||||
'blue': {
|
blue: {
|
||||||
'1': '#29aae1',
|
'1': '#29aae1',
|
||||||
'2': '#018dc7',
|
'2': '#018dc7',
|
||||||
'3': '#0e68a7',
|
'3': '#0e68a7',
|
||||||
'4': '#004f86',
|
'4': '#004f86',
|
||||||
},
|
},
|
||||||
'green': '#398002',
|
green: '#398002',
|
||||||
'grey': {
|
grey: {
|
||||||
'1': '#f8fafc',
|
'1': '#f8fafc',
|
||||||
'2': '#eee',
|
'2': '#eee',
|
||||||
'3': '#ddd',
|
'3': '#ddd',
|
||||||
|
@ -21,16 +21,16 @@ module.exports = {
|
||||||
'6': '#555',
|
'6': '#555',
|
||||||
'7': '#333',
|
'7': '#333',
|
||||||
},
|
},
|
||||||
'orange': {
|
orange: {
|
||||||
'1': '#fa9903',
|
'1': '#fa9903',
|
||||||
'2': '#ffb401',
|
'2': '#ffb401',
|
||||||
},
|
},
|
||||||
'purple': '#991faf',
|
purple: '#991faf',
|
||||||
'red': '#cc1f1a',
|
red: '#cc1f1a',
|
||||||
'teal': '#3f7b8f',
|
teal: '#3f7b8f',
|
||||||
'transparent': 'transparent',
|
transparent: 'transparent',
|
||||||
'white': '#fff',
|
white: '#fff',
|
||||||
'yellow': '#faf8df'
|
yellow: '#faf8df'
|
||||||
},
|
},
|
||||||
extend: {
|
extend: {
|
||||||
borderWidth: {
|
borderWidth: {
|
||||||
|
@ -42,7 +42,7 @@ module.exports = {
|
||||||
md: '0 0 10px 0 rgba(0,0,0,0.1)',
|
md: '0 0 10px 0 rgba(0,0,0,0.1)',
|
||||||
},
|
},
|
||||||
fontFamily: {
|
fontFamily: {
|
||||||
'sans': ['Proxima Nova', ...defaultTheme.fontFamily.sans],
|
sans: ['Proxima Nova', ...defaultTheme.fontFamily.sans],
|
||||||
},
|
},
|
||||||
fontSize: {
|
fontSize: {
|
||||||
'2xs': '.625rem', // 10px
|
'2xs': '.625rem', // 10px
|
||||||
|
|
Reference in a new issue