export function TypographyDemo() { const sizes = [10, 12, 14, 18, 24, 36, 48] as const; const sample = "The quick brown fox jumps over the lazy dog"; return (

Typography & Anti-Aliasing

{sizes.map((size) => (
{size}px {sample}
))} {/* Bold weight samples */}
Bold {sample}
{/* Neon CMYK palette preview */}
Palette Cyan Yellow Magenta White
); }