Files
eventsphere/apps/web/tailwind.config.ts
2026-04-26 10:15:50 +01:00

22 lines
488 B
TypeScript

import type { Config } from "tailwindcss";
export default {
content: ["./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
ink: "#071B3A",
navy: "#08294D",
accent: "#1677FF",
surface: "#F6F8FB",
line: "#E6EAF0"
},
boxShadow: {
enterprise: "0 14px 34px rgba(8, 41, 77, 0.08)",
panel: "0 1px 1px rgba(8, 41, 77, 0.04), 0 10px 24px rgba(8, 41, 77, 0.06)"
}
}
},
plugins: []
} satisfies Config;