AllAi/apps/web/tailwind.config.ts
2025-11-14 21:54:04 +03:00

23 lines
501 B
TypeScript

import type { Config } from "tailwindcss";
import { themeTokens } from "@allai/ui/theme";
const config: Config = {
darkMode: ["class", '[data-theme="dark"]'],
content: [
"./app/**/*.{ts,tsx}",
"./src/**/*.{ts,tsx}",
"../../packages/ui/**/*.{ts,tsx}"
],
theme: {
extend: {
colors: themeTokens.colors,
fontFamily: themeTokens.fontFamily,
borderRadius: themeTokens.radius,
boxShadow: themeTokens.shadow
}
},
plugins: []
};
export default config;