mirror of
https://github.com/lukin/keywind.git
synced 2025-01-09 09:26:24 +00:00
a3f1c1d1d1
Co-authored-by: Anthony Lukin <anthony@lukin.dev>
20 lines
411 B
JavaScript
20 lines
411 B
JavaScript
const colors = require('tailwindcss/colors');
|
|
|
|
/**
|
|
* @type { import('@types/tailwindcss/tailwind-config').TailwindConfig }
|
|
*/
|
|
module.exports = {
|
|
content: ['./theme/**/*.ftl'],
|
|
experimental: {
|
|
optimizeUniversalDefaults: true,
|
|
},
|
|
plugins: [require('@tailwindcss/forms')],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: colors.blue,
|
|
secondary: colors.gray,
|
|
},
|
|
},
|
|
},
|
|
};
|