keywind/tailwind.config.js

17 lines
319 B
JavaScript
Raw Normal View History

2021-07-05 11:40:00 +00:00
const colors = require('tailwindcss/colors');
/**
* @type { import('@types/tailwindcss/tailwind-config').TailwindConfig }
*/
module.exports = {
2021-12-13 17:50:00 +00:00
content: ['./theme/**/*.ftl'],
2021-07-05 11:40:00 +00:00
plugins: [require('@tailwindcss/forms')],
theme: {
extend: {
colors: {
primary: colors.blue,
},
},
},
};