You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.1 KiB
50 lines
1.1 KiB
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./app/**/*.{ts,tsx}",
|
|
"./components/**/*.{ts,tsx}",
|
|
"./hooks/**/*.{ts,tsx}",
|
|
"./lib/frontend/**/*.{ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: "#0D9488",
|
|
hover: "#0F766E",
|
|
active: "#115E59",
|
|
},
|
|
success: "#16A34A",
|
|
warning: "#D97706",
|
|
error: "#DC2626",
|
|
bg: "#F8FAFC",
|
|
surface: "#FFFFFF",
|
|
border: "#E2E8F0",
|
|
text: {
|
|
primary: "#0F172A",
|
|
secondary: "#64748B",
|
|
disabled: "#94A3B8",
|
|
},
|
|
},
|
|
borderRadius: {
|
|
sm: "6px",
|
|
md: "8px",
|
|
lg: "12px",
|
|
xl: "16px",
|
|
},
|
|
boxShadow: {
|
|
card: "0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04)",
|
|
modal: "0 10px 25px rgba(15,23,42,0.12)",
|
|
},
|
|
fontFamily: {
|
|
sans: ["var(--font-geist-sans)", "system-ui", "sans-serif"],
|
|
mono: ["var(--font-geist-mono)", "ui-monospace", "monospace"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|