Files
smartagenda_pap/web/tailwind.config.cjs
2026-01-07 10:33:09 +00:00

22 lines
384 B
JavaScript

const colors = require('tailwindcss/colors');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
amber: colors.amber,
slate: colors.slate,
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
};