'use client'; import { Layout, Section, Article, Headline, Subhead, BodyText, } from 'newspaperui-components'; import { ThemeToggle } from '@/components/ThemeToggle'; interface Swatch { token: string; hex: string; label?: string; } const textSwatches: Swatch[] = [ { token: '--nui-text-primary', hex: '#1A1A1A', label: '标题、主文本' }, { token: '--nui-text-body', hex: '#22201C', label: '正文' }, { token: '--nui-text-secondary', hex: '#4A4742', label: 'Subhead、次级' }, { token: '--nui-text-muted', hex: '#6E6A63', label: 'Caption、注释' }, { token: '--nui-text-quote', hex: '#2E2A24', label: 'Quote 主体' }, ]; const surfaceSwatches: Swatch[] = [ { token: '--nui-bg-page', hex: '#F7F4ED', label: 'Warm off-white 页面底' }, { token: '--nui-bg-surface', hex: '#FBF9F4', label: '次级面板背景' }, { token: '--nui-rule-hairline', hex: '#C9C2B2', label: '细线分隔' }, { token: '--nui-rule-decorative', hex: '#1A1A1A', label: '强调线' }, { token: '--nui-highlight', hex: '#F2E9C8', label: '旧报纸黄' }, ]; const accentSwatches: Swatch[] = [ { token: '--nui-accent-primary', hex: '#7A1F1F', label: 'Brick red, Kicker / Masthead 强调' }, { token: '--nui-accent-ink-blue', hex: '#1B2A4A', label: 'The Times 蓝' }, { token: '--nui-highlight', hex: '#F2E9C8', label: '高亮底色' }, ]; interface FontFamily { token: string; sample: string; description: string; } const families: FontFamily[] = [ { token: '--font-family-masthead', sample: 'The Daily Chronicle', description: 'Cormorant Garamond — 报头', }, { token: '--font-family-blackletter', sample: 'The Daily Chronicle', description: 'UnifrakturMaguntia — Blackletter preset', }, { token: '--font-family-display', sample: 'A Quiet Revolution', description: 'Source Serif 4 — Display 大字头条', }, { token: '--font-family-headline', sample: 'Whitehall confirms review', description: 'Source Serif 4 — Headline / Subhead', }, { token: '--font-family-body', sample: 'In Manchester, regional officials greeted the announcement.', description: 'Source Serif 4 — 正文', }, { token: '--font-family-meta', sample: 'BY ALICE SMITH · LONDON', description: 'Inter — small-caps 元信息', }, ]; function SwatchGrid({ swatches }: { swatches: Swatch[] }) { return (
{swatches.map((s) => (
{s.token}
{s.hex} {s.label ? ` · ${s.label}` : ''}
))}
); } export default function ThemePage() { return (
主题与颜色 设计哲学:暖灰系 + warm off-white。不使用纯黑(#000)也不使用纯白(#FFF), 把屏幕配色带回纸面的温度。 主题切换

点击切换深色模式。深色基调采用暖深棕黑(#14110D)而非冷蓝黑,保持报纸的纸性触感。

文字色 token 背景与分隔线 token 强调色 token 字体家族

全部经典严肃风字体:Cormorant Garamond 承担报头与展示,Source Serif 4 贯穿正文与标题,Inter 处理 small-caps 元信息。Blackletter preset 通过 UnifrakturMaguntia 切入哥特报头。

{families.map((f) => (
{f.token} · {f.description}
{f.sample}
))}
); }