Productionize EventSphere platform

This commit is contained in:
Austin A
2026-04-25 21:02:19 +01:00
commit 1f1d30a9f5
171 changed files with 18682 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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 16px 40px rgba(8, 41, 77, 0.08)"
}
}
},
plugins: []
} satisfies Config;