/ docs / theme / css / variables.css
variables.css
 1  /* variables.css — shared design tokens
 2   * Single source of truth for ono-sendai/maas theme pair
 3   */
 4  
 5  :root {
 6    /* ━━━ Typography ━━━ */
 7    --font-mono: "JetBrains Mono", "Berkeley Mono", "Iosevka", monospace;
 8    --font-sans: "Inter", -apple-system, system-ui, sans-serif;
 9    --font-size-base: 16px;
10    --font-size-sm: 0.875rem;
11    --font-size-xs: 0.75rem;
12    --font-size-lg: 1.125rem;
13    --line-height: 1.6;
14    --line-height-tight: 1.4;
15  
16    /* ━━━ Spacing ━━━ */
17    --space-1: 0.25rem;
18    --space-2: 0.5rem;
19    --space-3: 0.75rem;
20    --space-4: 1rem;
21    --space-5: 1.25rem;
22    --space-6: 1.5rem;
23    --space-8: 2rem;
24    --space-10: 2.5rem;
25    --space-12: 3rem;
26  
27    /* ━━━ Layout ━━━ */
28    --content-max-width: 52rem;
29    --sidebar-width: 280px;
30    --border-radius: 4px;
31    --border-radius-lg: 6px;
32  
33    /* ━━━ Transitions ━━━ */
34    --transition-fast: 0.1s ease;
35    --transition-normal: 0.2s ease;
36  }