You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ass/tailwind.config.js

19 lines
261 B

module.exports = {
mode: 'jit',
separator: '_',
darkMode: 'class',
plugins: [
//require('tailwindcss-textshadow')
],
purge: {
enabled: false,
content: ['./views/**/*.pug']
},
theme: {
extend: {
colors: {
'border': '#323232'
}
}
}
};