three.cad/tailwind.config.js

24 lines
421 B
JavaScript
Raw Normal View History

2021-04-11 07:16:08 +08:00
const colors = require('tailwindcss/colors')
2021-04-01 16:20:50 +08:00
module.exports = {
purge: [
2021-04-01 20:13:49 +08:00
'./src/**/*.jsx',
2021-04-02 08:19:14 +08:00
'./dist/**/*.html'
2021-04-01 16:20:50 +08:00
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
2021-04-11 07:16:08 +08:00
colors: {
transparent: 'transparent',
current: 'currentColor',
gray: colors.trueGray,
green: colors.emerald,
red: colors.red,
2021-05-03 07:44:54 +08:00
},
2021-04-01 16:20:50 +08:00
},
variants: {
extend: {},
},
plugins: [],
}