kennzeichen/frontend/tailwind.config.js
2025-10-23 12:11:41 +02:00

17 lines
356 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'./src/**/*.{js,ts,jsx,tsx}',
],
safelist: [
{
pattern: /(bg|text|hover:bg|hover:text|border)-(red|blue|gray|teal|neutral|yellow|white)-(50|100|200|300|400|500|600|700|800|900)/,
},
],
theme: {
extend: {},
},
plugins: [],
};