25 lines
375 B
JavaScript
25 lines
375 B
JavaScript
module.exports = {
|
|
purge: [],
|
|
theme: {
|
|
colors: {
|
|
black: '#222',
|
|
gray: {
|
|
50: '#f7f7f7'
|
|
},
|
|
blue: {
|
|
500: '#337ab7',
|
|
550: '#286090',
|
|
600: '#204d74'
|
|
},
|
|
white: '#fff',
|
|
yellow: '#fde546'
|
|
},
|
|
extend: {},
|
|
},
|
|
variants: {},
|
|
plugins: [],
|
|
experimental: {
|
|
applyComplexClasses: true
|
|
}
|
|
}
|