three.cad/tailwind.config.js

24 lines
421 B
JavaScript
Raw Permalink Normal View History

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