34 lines
661 B
JavaScript
34 lines
661 B
JavaScript
const colors = require('tailwindcss/colors')
|
|
|
|
module.exports = {
|
|
mode: 'jit',
|
|
purge: {
|
|
content: [
|
|
'./templates/**/*.html'
|
|
],
|
|
},
|
|
darkMode: false,
|
|
theme: {
|
|
colors: {
|
|
transparent: 'transparent',
|
|
white: '#ffffff',
|
|
black: '#000000',
|
|
gray: colors.gray,
|
|
yellow: colors.yellow,
|
|
blue: {
|
|
'100': '#bbeeff',
|
|
'200': '#00aaff',
|
|
'300': '#0088ff',
|
|
'400': '#0033ff',
|
|
'500': '#0000ff',
|
|
'600': '#0000bb',
|
|
'700': '#0000aa',
|
|
'800': '#000088',
|
|
'900': '#000066',
|
|
},
|
|
},
|
|
},
|
|
variants: {},
|
|
plugins: [], // if we add forms, do it here
|
|
}
|