mirror of
https://github.com/inventree/inventree-website.git
synced 2025-06-13 02:25:31 +00:00
24 lines
516 B
JavaScript
24 lines
516 B
JavaScript
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
module.exports = {
|
|
purge: {
|
|
enabled: true,
|
|
content: ['./**/*.html'],
|
|
},
|
|
darkMode: 'media',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'primary': '#DDBC91',
|
|
'secondary': '#90A8D8',
|
|
},
|
|
screens: {
|
|
'xs': '470px',
|
|
...defaultTheme.screens
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
} |