2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-06-13 02:25:31 +00:00
Files
inventree-website/tailwind.config.js
Matthias Mair cb58c92c51 and another try
2022-11-10 21:26:30 +00:00

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'),
],
}