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;