Initial commit
This commit is contained in:
25
tailwind.config.ts
Normal file
25
tailwind.config.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user