vbv/client/tailwind.config.js

36 lines
783 B
JavaScript

const colors = require('./src/colors.json');
module.exports = {
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
// TODO: wenn man den server-pfad auch angibt wird Tailwind langsamer?! (Startzeit erhöht sich stark...)
// '../server/vbv_lernwelt/**/*.{html,js,py}',
],
theme: {
fontFamily: {
sans: ['Buenos Aires', 'sans-serif'],
},
extend: {
spacing: {
'128': '32rem',
},
backgroundImage: {
}
},
colors: colors,
},
safelist: [{
pattern: /bg-(blue|sky|orange|green|red)-(400|500|600|700)/,
}, {
pattern: /bg-gray-(100|300|500|700|900)/,
},
'bg-blue-900',
'it-icon',
],
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
],
}