Plus Jakarta Sans
A geometric humanist sans designed for clarity at large sizes with confident curves.
NOPQRSTUVWXYZ
abcdefghijklmnop
qrstuvwxyz 0123456789
A precise, modular type system built on three carefully chosen families. Every scale step is engineered for vertical rhythm, readability, and a confident visual hierarchy across every surface.
Eleven steps from Overline to Display. Click any row to copy its CSS variable.
Three families, each with a deliberate role in the system.
A geometric humanist sans designed for clarity at large sizes with confident curves.
A workhorse interface typeface optimized for screens, legibility, and tight UI density.
A monospaced typeface engineered for developers with tall x-height and clear glyph distinction.
Compose, preview, and export. Every change updates in real time.
font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
Use CSS variables for cross-framework portability, or Tailwind utilities for component-scoped styling.
1/* Using CSS variables */2.hero-title {3 font-family: var(--velyon-font-display);4 font-size: 72px;5 line-height: 1.05;6 font-weight: 800;7 letter-spacing: -0.02em;8 color: var(--velyon-offwhite);9}1011.body-text {12 font-family: var(--velyon-font-body);13 font-size: 16px;14 line-height: 1.6;15 font-weight: 400;16 color: var(--velyon-muted);17}
1// Using Tailwind utilities2<h1 className="text-[72px] leading-[1.05] font-extrabold tracking-tight">3 Build beautifully.4</h1>56<p className="text-base leading-relaxed text-[var(--velyon-muted)]">7 Body copy aligned to the Velyon scale.8</p>910<span className="text-[11px] font-semibold uppercase tracking-[0.18em] text-[var(--velyon-azure)]">11 Section Label12</span>