JetBrains Mono

Monospace coding-mono von JetBrains #127 auf Google Fonts
Stärke

Über uns JetBrains Mono

Developed in-house by JetBrains, this monospace typeface was engineered specifically for long programming sessions, with increased letter height, reduced eye strain through wider letterforms, and 138 programming ligatures that merge common operator pairs into clean single glyphs. The variable weight axis covers eight steps, and the typeface supports Cyrillic, Greek, and Vietnamese in addition to Latin. Its technical precision and readability under syntax highlighting have made it a preferred choice among developers worldwide.

Zeichentabelle

AaBbCcDdEeFfGgHhIiJjKkLlMm
NnOoPpQqRrSsTtUuVvWwXxYyZz
0123456789
!@#$%^&*()_+-=[]{}|;':",.<>?

Code-Editor-Vorschau

example.js
const fibonacci = (n) => {
  if (n <= 1) return n;
  return fibonacci(n - 1) + fibonacci(n - 2);
};

// Generate first 10 numbers
const results = Array.from(
  { length: 10 },
  (_, i) => fibonacci(i)
);

console.log(`Result: ${results.join(', ')}`);

Coding-Ligaturen

=> != !== === >= <= -> ->> |> <| :: && || ++ -- ** // /* */ ?? << >> ?. ...

Zeichenunterscheidung

Können Sie diese unterscheiden? Ein gutes monospace font macht ähnliche Zeichen leicht erkennbar.

Null vs O 0 O o
Eins vs l vs I 1 l I | !
Anführungszeichen ' ' " " ` ´
Klammern ( ) [ ] { } < >
Interpunktion . , : ; .. ...

Gewichts-Wasserfall (8)

100 Thin
200 ExtraLight
300 Light
400 Regular
500 Medium
600 SemiBold
700 Bold
800 ExtraBold

Verwendung

<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100;200;300;500;600;700;800;400&display=swap" rel="stylesheet">
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100;200;300;500;600;700;800;400&display=swap');
font-family: 'JetBrains Mono', monospace;
brew install --cask font-jetbrains-mono

Details

Kategorie
Monospace
Stärken
8
Kursiv
Koreanisch
Designer
JetBrains
Lizenz
OFL
Version
Beliebtheit
#127
Downloads
193

Lizenznutzung

WebnutzungErlaubt
DruckErlaubt
Video / RundfunkErlaubt
VerpackungErlaubt
App-EinbettungErlaubt
Marke / LogoErlaubt
BearbeitungErlaubt

OFL — Kostenlos für private und kommerzielle Nutzung

Sprachunterstützung

cyrillic cyrillic-ext greek latin latin-ext vietnamese

Am besten geeignet für

code_editors technical_docs web_apps ui_elements presentations

Typografie-Konzepte

  • Monospace

    A typeface where every character occupies the same horizontal width. Essential for code editors and tabular data.

  • Font Stack

    An ordered list of fonts in CSS font-family, providing fallbacks if the preferred font is unavailable. E.g., 'Inter, system-ui, sans-serif'.

Artikel über JetBrains Mono