25 lines
543 B
TypeScript
25 lines
543 B
TypeScript
|
import type { Config } from "tailwindcss";
|
||
|
|
||
|
export default {
|
||
|
content: [
|
||
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
||
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
||
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
background: "var(--background)",
|
||
|
foreground: "var(--foreground)",
|
||
|
},
|
||
|
dropShadow: {
|
||
|
glow: [
|
||
|
"0 0px 20px rgba(255,255, 255, 0.35)",
|
||
|
"0 0px 65px rgba(255, 255,255, 0.2)"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
} satisfies Config;
|