next-cochise/tailwind.config.ts

26 lines
784 B
TypeScript
Raw Normal View History

2025-02-01 06:57:24 +07:00
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)",
2025-02-13 13:51:36 +07:00
extColorPrimary: "var(--ext-color-primary-1)",
extColorPrimary2: "var(--ext-color-primary-2)",
extColorPrimary3: "var(--ext-color-primary-3)",
extColorPrimary4: "var(--ext-color-primary-4)",
extColorPrimary5: "var(--ext-color-primary-5)",
extColorPrimary6: "var(--ext-color-primary-6)",
extColorPrimary7: "var(--ext-color-primary-7)",
2025-02-01 06:57:24 +07:00
},
},
},
plugins: [],
} satisfies Config;