feat(film): theme tokens, blueprint background, caption component

This commit is contained in:
Satyam Rastogi
2026-05-30 02:27:09 +05:30
parent 6f09813ec0
commit e3f708e73f
3 changed files with 85 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
export const theme = {
bg: "#09090b",
surface: "rgba(255,255,255,0.03)",
border: "rgba(255,255,255,0.10)",
text: "#ffffff",
textDim: "rgba(255,255,255,0.55)",
blue: "#3b82f6",
cyan: "#22d3ee",
emerald: "#10b981",
amber: "#f59e0b",
red: "#ef4444",
font: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif',
mono: 'ui-monospace, SFMono-Regular, Menlo, monospace',
brandGradient: "linear-gradient(90deg, #60a5fa, #3b82f6, #22d3ee)",
} as const;