mirror of
https://github.com/lukin/keywind.git
synced 2025-01-09 17:36:25 +00:00
19 lines
353 B
JavaScript
19 lines
353 B
JavaScript
|
const colors = require('tailwindcss/colors');
|
||
|
|
||
|
/**
|
||
|
* @type { import('@types/tailwindcss/tailwind-config').TailwindConfig }
|
||
|
*/
|
||
|
module.exports = {
|
||
|
darkMode: 'class',
|
||
|
plugins: [require('@tailwindcss/forms')],
|
||
|
purge: ['./theme/**/*.ftl'],
|
||
|
mode: 'jit',
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
primary: colors.blue,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|