2021-03-11 21:12:55 -05:00
|
|
|
const colors = require('tailwindcss/colors')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
purge: [
|
|
|
|
'../lib/**/*.ex',
|
|
|
|
'../lib/**/*.leex',
|
|
|
|
'../lib/**/*.eex',
|
|
|
|
'./js/**/*.js'
|
|
|
|
],
|
2022-01-22 22:56:53 -05:00
|
|
|
darkMode: 'media',
|
2021-03-11 21:12:55 -05:00
|
|
|
theme: {
|
|
|
|
colors: {
|
|
|
|
transparent: 'transparent',
|
|
|
|
current: 'currentColor',
|
2022-01-22 22:56:53 -05:00
|
|
|
|
2021-03-11 21:12:55 -05:00
|
|
|
primary: colors.indigo,
|
2022-01-22 22:56:53 -05:00
|
|
|
|
2021-03-11 21:12:55 -05:00
|
|
|
black: colors.black,
|
|
|
|
white: colors.white,
|
|
|
|
gray: colors.trueGray,
|
|
|
|
indigo: colors.indigo,
|
|
|
|
red: colors.rose,
|
2022-01-22 22:56:53 -05:00
|
|
|
yellow: colors.amber
|
2021-03-11 21:12:55 -05:00
|
|
|
},
|
2022-01-22 22:56:53 -05:00
|
|
|
extend: {}
|
2021-03-11 21:12:55 -05:00
|
|
|
},
|
|
|
|
variants: {
|
2021-09-02 23:32:52 -04:00
|
|
|
extend: {
|
|
|
|
backgroundColor: ['active'],
|
2022-01-22 22:56:53 -05:00
|
|
|
borderColor: ['active']
|
|
|
|
}
|
2021-03-11 21:12:55 -05:00
|
|
|
},
|
2022-01-22 22:56:53 -05:00
|
|
|
plugins: []
|
2021-03-11 21:12:55 -05:00
|
|
|
}
|