forked from mirrors/keywind
20 lines
386 B
JavaScript
20 lines
386 B
JavaScript
const colors = require('tailwindcss/colors');
|
|
|
|
/**
|
|
* @type { import('tailwindcss/types').Config }
|
|
*/
|
|
module.exports = {
|
|
content: ['./theme/**/*.ftl'],
|
|
experimental: {
|
|
optimizeUniversalDefaults: true,
|
|
},
|
|
plugins: [require('@tailwindcss/forms')],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: colors.blue,
|
|
secondary: colors.gray,
|
|
},
|
|
},
|
|
},
|
|
};
|