56 أسطر
1.7 KiB
TypeScript
56 أسطر
1.7 KiB
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
darkMode: ["class"],
|
|
content: [
|
|
"./app/**/*.{ts,tsx}",
|
|
"./components/**/*.{ts,tsx}",
|
|
"./lib/**/*.{ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: "rgb(var(--background))",
|
|
foreground: "rgb(var(--foreground))",
|
|
card: "rgb(var(--card))",
|
|
"card-foreground": "rgb(var(--card-foreground))",
|
|
popover: "rgb(var(--popover))",
|
|
"popover-foreground": "rgb(var(--popover-foreground))",
|
|
primary: "rgb(var(--primary))",
|
|
"primary-foreground": "rgb(var(--primary-foreground))",
|
|
secondary: "rgb(var(--secondary))",
|
|
"secondary-foreground": "rgb(var(--secondary-foreground))",
|
|
muted: "rgb(var(--muted))",
|
|
"muted-foreground": "rgb(var(--muted-foreground))",
|
|
accent: "rgb(var(--accent))",
|
|
"accent-foreground": "rgb(var(--accent-foreground))",
|
|
border: "rgb(var(--border))",
|
|
input: "rgb(var(--input))",
|
|
ring: "rgb(var(--ring))",
|
|
chart: {
|
|
1: "rgb(var(--chart-1))",
|
|
2: "rgb(var(--chart-2))",
|
|
3: "rgb(var(--chart-3))",
|
|
4: "rgb(var(--chart-4))",
|
|
5: "rgb(var(--chart-5))",
|
|
},
|
|
},
|
|
borderRadius: {
|
|
xl: "1.1rem",
|
|
lg: "0.85rem",
|
|
md: "0.65rem",
|
|
sm: "0.45rem",
|
|
},
|
|
boxShadow: {
|
|
glow: "0 0 0 1px rgba(212, 171, 102, 0.22), 0 10px 35px rgba(7, 5, 3, 0.45)",
|
|
},
|
|
backgroundImage: {
|
|
"oudelaa-noise": "radial-gradient(circle at 1px 1px, rgba(255, 240, 211, 0.06) 1px, transparent 0)",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|