26 lines
649 B
TypeScript
26 lines
649 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./app/**/*.{ts,tsx}",
|
|
"./components/**/*.{ts,tsx}",
|
|
"./actions/**/*.{ts,tsx}",
|
|
"./lib/**/*.{ts,tsx}"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
bg: "rgb(var(--color-bg) / <alpha-value>)",
|
|
panel: "rgb(var(--color-panel) / <alpha-value>)",
|
|
text: "rgb(var(--color-text) / <alpha-value>)",
|
|
muted: "rgb(var(--color-muted) / <alpha-value>)",
|
|
border: "rgb(var(--color-border) / <alpha-value>)",
|
|
accent: "rgb(var(--color-accent) / <alpha-value>)"
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|
|
|
|
export default config;
|