forked from mirrors/keywind
16 lines
319 B
JavaScript
16 lines
319 B
JavaScript
const colors = require('tailwindcss/colors');
|
|
|
|
/**
|
|
* @type { import('@types/tailwindcss/tailwind-config').TailwindConfig }
|
|
*/
|
|
module.exports = {
|
|
content: ['./theme/**/*.ftl'],
|
|
plugins: [require('@tailwindcss/forms')],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: colors.blue,
|
|
},
|
|
},
|
|
},
|
|
};
|