32 lines
738 B
TypeScript
32 lines
738 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", "./lib/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: "#6C8A96",
|
|
"primary-dark": "#4F6A74",
|
|
accent: "#A7C7C7",
|
|
background: "#F7F8F8",
|
|
surface: "#FFFFFF",
|
|
border: "#E6EAEA",
|
|
text: "#2E3B40",
|
|
"text-light": "#6B7C85",
|
|
success: "#66A26B",
|
|
warning: "#D6A53A",
|
|
danger: "#C95C54"
|
|
},
|
|
fontFamily: {
|
|
sans: ["Inter", "ui-sans-serif", "system-ui"]
|
|
},
|
|
boxShadow: {
|
|
soft: "0 14px 40px rgba(46, 59, 64, 0.08)"
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|
|
|
|
export default config;
|
|
|