23 lines
387 B
TypeScript
23 lines
387 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
darkMode: "class",
|
|
content: ["./src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
DEFAULT: "#6d28d9",
|
|
fg: "#ffffff"
|
|
}
|
|
},
|
|
boxShadow: {
|
|
soft: "0 20px 60px rgba(15, 23, 42, 0.08)"
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|
|
|
|
export default config;
|