sphinx/ui/tailwind.config.js

19 lines
362 B
JavaScript

module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
linen: '#FAEDE3',
fawn: '#E7AB79',
rosy: '#B25068',
lavender: '#774360',
mauve: '#4C3A51'
}
}
},
screens: {},
plugins: [
require('tailwindcss-labeled-groups')(['1', '2', '3'])
]
};