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