mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-31 09:01:01 -05:00
26 lines
533 B
TypeScript
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;
|