23 lines
501 B
TypeScript
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;
|