Files
tvone/app/globals.css
T

25 lines
678 B
CSS
Raw Normal View History

2026-03-25 13:42:28 +01:00
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
2026-03-25 14:32:19 +01:00
--tvone-blue: #0066cc;
2026-03-28 23:22:50 +01:00
/** Same as site header / `theme-color` in layout.tsx — iPhone notch + Safari UI */
--tvone-header: #0066d4;
2026-03-25 14:32:19 +01:00
--tvone-magenta: #d9468f;
--tvone-muted: #f5f5f7;
2026-03-25 13:42:28 +01:00
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
2026-03-25 14:32:19 +01:00
--font-sans: var(--font-inter), ui-sans-serif, system-ui, sans-serif;
2026-03-25 13:42:28 +01:00
}
body {
background: var(--background);
color: var(--foreground);
2026-03-25 14:32:19 +01:00
font-family: var(--font-inter), ui-sans-serif, system-ui, sans-serif;
2026-03-27 23:29:24 +01:00
/* Body copy stays regular weight; news titles use bold/semibold in components */
2026-03-25 13:42:28 +01:00
}