Files
Compass/tailwind.config.ts
2025-08-04 11:34:01 +02:00

26 lines
533 B
TypeScript

import type { Config } from "tailwindcss";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
screens: {
'xs': {'max': '500px'},
},
},
},
corePlugins: {
animation: true,
},
darkMode: 'class', // required for next-themes
plugins: [ ],
} satisfies Config;