Skip to content

Design Tokens

Use Inter blended with the system stack for a crisp, modern UI.

LevelSizeWeightUse Case
H12.25rem (36px)700Page titles
H21.875rem (30px)700Section headings
H31.5rem (24px)600Card titles
Body11rem (16px)400Standard text
Caption0.75rem (12px)400Metadata

  • Surface Base: #111927 (Deep Navy)
  • Primary Accent: Dodger Blue (#1e90ff)
  • Secondary Accent: Light Blue (#4a9eff)
  • Success: Green (#34a853)
  • Warning: Yellow (#fbbc05)
  • Error: Red (#ea4335)
  • Info: Cyan (#0891b2)
  • Active: Yellow (timing active)
  • Completed: Green
  • On-Hold: Orange
  • Blocked: Red
  • Pending: Gray

TokenValueUse Case
--space-sm4pxTight spacing
--space-base8pxDefault gaps
--space-md12pxSection spacing
--space-lg16pxLarge gaps
  • Small elements: 4px
  • Buttons/Inputs: 6px
  • Cards: 8px
  • Modals: 10px

Background orbs use a 20s float cycle for organic parallax.

@keyframes float {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(30px, -30px) scale(1.1); }
66% { transform: translate(-20px, 20px) scale(0.9); }
}

Standard entrance for cards and interactive surfaces.

@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}