keywind/tailwind.config.js

21 lines
386 B
JavaScript
Raw Normal View History

2021-07-05 11:40:00 +00:00
const colors = require('tailwindcss/colors');
/**
2022-09-03 08:00:00 +00:00
* @type { import('tailwindcss/types').Config }
2021-07-05 11:40:00 +00:00
*/
module.exports = {
2021-12-13 17:50:00 +00:00
content: ['./theme/**/*.ftl'],
experimental: {
optimizeUniversalDefaults: true,
},
2021-07-05 11:40:00 +00:00
plugins: [require('@tailwindcss/forms')],
theme: {
extend: {
colors: {
primary: colors.blue,
secondary: colors.gray,
2021-07-05 11:40:00 +00:00
},
},
},
};