2019-03-30 00:09:48 +00:00
|
|
|
let defaultTheme = require('tailwindcss/defaultTheme')
|
2019-03-10 08:35:27 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
theme: {
|
|
|
|
colors: {
|
2019-03-10 22:39:10 +00:00
|
|
|
inherit: 'inherit',
|
|
|
|
black: '#22292f',
|
|
|
|
blue: {
|
2019-03-21 00:29:08 +00:00
|
|
|
100: '#29aae1',
|
|
|
|
200: '#018dc7',
|
|
|
|
300: '#0e68a7',
|
2019-03-30 00:09:48 +00:00
|
|
|
400: '#004f86'
|
2019-03-10 08:55:09 +00:00
|
|
|
},
|
2019-03-10 22:39:10 +00:00
|
|
|
green: '#398002',
|
|
|
|
grey: {
|
2019-03-21 00:29:08 +00:00
|
|
|
100: '#f8fafc',
|
|
|
|
200: '#eee',
|
|
|
|
300: '#ddd',
|
|
|
|
400: '#bbb',
|
|
|
|
500: '#888',
|
|
|
|
600: '#555',
|
2019-03-30 00:09:48 +00:00
|
|
|
700: '#333'
|
2019-03-10 08:55:09 +00:00
|
|
|
},
|
2019-03-10 22:39:10 +00:00
|
|
|
orange: {
|
2019-03-21 00:29:08 +00:00
|
|
|
100: '#fa9903',
|
2019-03-30 00:09:48 +00:00
|
|
|
200: '#ffb401'
|
2019-03-10 08:55:09 +00:00
|
|
|
},
|
2019-03-10 22:39:10 +00:00
|
|
|
purple: '#991faf',
|
|
|
|
red: '#cc1f1a',
|
|
|
|
teal: '#3f7b8f',
|
|
|
|
transparent: 'transparent',
|
|
|
|
white: '#fff',
|
|
|
|
yellow: '#faf8df'
|
2019-03-10 08:35:27 +00:00
|
|
|
},
|
|
|
|
extend: {
|
|
|
|
borderWidth: {
|
2019-03-15 21:07:05 +00:00
|
|
|
3: '3px',
|
|
|
|
6: '6px',
|
2019-03-30 00:09:48 +00:00
|
|
|
10: '10px'
|
2019-03-10 08:35:27 +00:00
|
|
|
},
|
|
|
|
boxShadow: {
|
2019-03-30 00:09:48 +00:00
|
|
|
md: '0 0 10px 0 rgba(0,0,0,0.1)'
|
2019-03-10 08:35:27 +00:00
|
|
|
},
|
|
|
|
fontFamily: {
|
2019-03-30 00:09:48 +00:00
|
|
|
sans: ['Proxima Nova', ...defaultTheme.fontFamily.sans]
|
2019-03-10 08:35:27 +00:00
|
|
|
},
|
|
|
|
fontSize: {
|
2019-03-30 00:09:48 +00:00
|
|
|
'2xs': '.625rem' // 10px
|
2019-03-10 08:35:27 +00:00
|
|
|
},
|
|
|
|
spacing: {
|
2019-03-14 13:28:03 +00:00
|
|
|
'2px': '2px',
|
2019-03-15 21:07:05 +00:00
|
|
|
48: '10rem',
|
|
|
|
56: '14rem',
|
2019-03-30 00:09:48 +00:00
|
|
|
64: '16rem'
|
2019-03-10 08:35:27 +00:00
|
|
|
},
|
|
|
|
width: {
|
2019-03-30 00:09:48 +00:00
|
|
|
56: '14rem'
|
|
|
|
}
|
|
|
|
}
|
2019-03-10 08:35:27 +00:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
require('tailwindcss-spaced-items')({ values: defaultTheme.spacing }),
|
2019-03-30 00:09:48 +00:00
|
|
|
require('tailwindcss-visuallyhidden')()
|
|
|
|
]
|
2019-03-10 08:35:27 +00:00
|
|
|
}
|