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) / )", panel: "rgb(var(--color-panel) / )", text: "rgb(var(--color-text) / )", muted: "rgb(var(--color-muted) / )", border: "rgb(var(--color-border) / )", accent: "rgb(var(--color-accent) / )" } } }, plugins: [] }; export default config;