rDrama/tailwind.config.js

30 lines
579 B
JavaScript
Raw Normal View History

2021-11-25 21:58:01 +00:00
const colors = require('tailwindcss/colors')
2021-11-25 21:47:51 +00:00
module.exports = {
2021-11-25 22:10:04 +00:00
mode: 'jit',
purge: [
2021-11-25 22:12:43 +00:00
'files/templates/**/*.html',
'files/templates/*.html'
2021-11-25 22:10:04 +00:00
],
2021-11-25 21:58:01 +00:00
darkMode: 'class', // or 'media' or 'class'
2021-11-25 21:47:51 +00:00
theme: {
2021-11-25 21:58:01 +00:00
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.gray,
pink: colors.pink,
green: colors.green,
2021-11-26 02:16:47 +00:00
red: colors.red,
2021-11-25 22:03:37 +00:00
yellow: colors.amber,
2021-11-26 02:16:47 +00:00
blue: colors.sky
2021-11-25 21:58:01 +00:00
},
2021-11-25 21:47:51 +00:00
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}