chatbot-template/tailwind.config.ts

69 lines
1.9 KiB
TypeScript
Raw Normal View History

2024-10-11 18:00:22 +05:30
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: ["class"],
2024-03-14 20:00:52 +03:00
content: [
2024-10-11 18:00:22 +05:30
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
2024-03-14 20:00:52 +03:00
],
2023-05-19 12:33:56 -04:00
theme: {
2024-10-11 18:00:22 +05:30
fontFamily: {
sans: ["geist"],
mono: ["geist-mono"],
2023-05-19 12:33:56 -04:00
},
extend: {
2024-10-11 18:00:22 +05:30
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
2023-06-07 16:17:59 +04:00
},
colors: {
2024-10-11 18:00:22 +05:30
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
card: {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
},
popover: {
DEFAULT: "hsl(var(--popover))",
foreground: "hsl(var(--popover-foreground))",
},
2023-06-07 16:17:59 +04:00
primary: {
2024-10-11 18:00:22 +05:30
DEFAULT: "hsl(var(--primary))",
foreground: "hsl(var(--primary-foreground))",
2023-06-07 16:17:59 +04:00
},
secondary: {
2024-10-11 18:00:22 +05:30
DEFAULT: "hsl(var(--secondary))",
foreground: "hsl(var(--secondary-foreground))",
2023-06-07 16:17:59 +04:00
},
muted: {
2024-10-11 18:00:22 +05:30
DEFAULT: "hsl(var(--muted))",
foreground: "hsl(var(--muted-foreground))",
2023-06-07 16:17:59 +04:00
},
accent: {
2024-10-11 18:00:22 +05:30
DEFAULT: "hsl(var(--accent))",
foreground: "hsl(var(--accent-foreground))",
2023-06-07 16:17:59 +04:00
},
2024-10-11 18:00:22 +05:30
destructive: {
DEFAULT: "hsl(var(--destructive))",
foreground: "hsl(var(--destructive-foreground))",
2023-06-07 16:17:59 +04:00
},
2024-10-11 18:00:22 +05:30
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
chart: {
"1": "hsl(var(--chart-1))",
"2": "hsl(var(--chart-2))",
"3": "hsl(var(--chart-3))",
"4": "hsl(var(--chart-4))",
"5": "hsl(var(--chart-5))",
2023-05-19 12:33:56 -04:00
},
},
2024-10-11 18:00:22 +05:30
},
2023-05-19 12:33:56 -04:00
},
2024-10-11 18:00:22 +05:30
plugins: [require("tailwindcss-animate")],
safelist: ["w-32", "w-44", "w-52"],
};
export default config;