2018-12-21 21:58:12 +00:00
let defaultConfig = require ( 'tailwindcss/defaultConfig' ) ( )
2019-02-04 22:39:55 +00:00
var colors = {
... defaultConfig . colors ,
2018-12-26 12:36:48 +00:00
'inherit' : 'inherit' ,
2018-12-21 21:58:12 +00:00
'black' : '#22292f' ,
2019-02-04 22:39:55 +00:00
'blue' : '#018dc7' ,
'blue-dark' : '#0e68a7' ,
2019-03-05 12:14:31 +00:00
'blue-darker' : '#004f86' ,
2019-02-04 22:39:55 +00:00
'blue-light' : '#29aae1' ,
'green' : '#398002' ,
2018-12-22 00:27:09 +00:00
'grey' : '#B7B7B7' ,
2019-02-04 22:39:55 +00:00
'grey-dark' : '#888888' ,
2019-02-08 13:55:29 +00:00
'grey-darker' : '#555555' ,
2019-02-04 22:39:55 +00:00
'grey-darkest' : '#333333' ,
2018-12-22 00:27:09 +00:00
'grey-light' : '#DDDDDD' ,
2018-12-21 21:58:12 +00:00
'grey-lighter' : '#eeeeee' ,
'grey-lightest' : '#f8fafc' ,
2019-02-04 22:39:55 +00:00
'orange' : '#FA9903' ,
'orange-light' : '#FFB401' ,
2018-12-21 21:58:12 +00:00
'purple' : '#991FAF' ,
'red-dark' : '#cc1f1a' ,
'teal' : '#3F7B8F' ,
2019-02-04 22:39:55 +00:00
'transparent' : 'transparent' ,
'white' : '#ffffff' ,
2018-12-26 01:17:10 +00:00
'yellow-lightest' : '#FAF8DF'
2018-12-21 21:58:12 +00:00
}
module . exports = {
2019-02-04 22:39:55 +00:00
... defaultConfig ,
2018-12-21 21:58:12 +00:00
colors : colors ,
2019-02-04 22:39:55 +00:00
textColors : colors ,
backgroundColors : colors ,
borderColors : Object . assign ( { default : colors [ 'grey-light' ] } , colors ) ,
2018-12-21 21:58:12 +00:00
fonts : {
2019-02-04 22:39:55 +00:00
... defaultConfig . fonts ,
2018-12-21 21:58:12 +00:00
'sans' : [
'Proxima Nova' ,
'system-ui' ,
'BlinkMacSystemFont' ,
'-apple-system' ,
'Segoe UI' ,
'Roboto' ,
'Oxygen' ,
'Ubuntu' ,
'Cantarell' ,
'Fira Sans' ,
'Droid Sans' ,
'Helvetica Neue' ,
'sans-serif' ,
] ,
} ,
2019-02-08 12:38:05 +00:00
textSizes : {
... defaultConfig . textSizes ,
'2xs' : '.625rem' , // 10px
} ,
2018-12-21 21:58:12 +00:00
borderWidths : {
2019-02-04 22:39:55 +00:00
... defaultConfig . borderWidths ,
2019-02-08 14:05:22 +00:00
'3' : '3px' ,
2018-12-21 21:58:12 +00:00
'6' : '6px' ,
'10' : '10px' ,
} ,
margin : {
2019-02-04 22:39:55 +00:00
... defaultConfig . margin ,
2018-12-25 23:20:12 +00:00
'48' : '10rem' ,
2019-02-08 14:05:53 +00:00
'56' : '14rem' ,
2018-12-25 23:20:12 +00:00
'64' : '16rem' ,
2018-12-21 21:58:12 +00:00
} ,
2019-02-08 14:05:53 +00:00
width : {
... defaultConfig . width ,
'56' : '14rem' ,
} ,
2019-02-08 14:19:02 +00:00
shadows : {
... defaultConfig . shadows ,
'md' : '0 0 10px 0 rgba(0,0,0,0.1)'
} ,
2018-12-21 21:58:12 +00:00
plugins : [
2019-02-04 22:39:55 +00:00
require ( 'tailwindcss/plugins/container' ) ( ) ,
2019-02-08 14:19:02 +00:00
require ( 'tailwindcss-spaced-items' ) ( ) ,
2018-12-25 20:43:37 +00:00
require ( 'tailwindcss-visuallyhidden' ) ( ) ,
2018-12-21 21:58:12 +00:00
] ,
}