kaboot/tailwind.config.js
2026-01-15 21:05:49 -07:00

20 lines
404 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
theme: {
primary: 'var(--theme-primary)',
'primary-dark': 'var(--theme-primary-dark)',
hover: 'var(--theme-hover-bg)',
}
}
}
},
plugins: [],
}