JetBrains Mono
About 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.
Character Map
NnOoPpQqRrSsTtUuVvWwXxYyZz
0123456789
!@#$%^&*()_+-=[]{}|;':",.<>?
Code Editor Preview
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 Ligatures
Character Disambiguation
Can you tell these apart? A good monospace font makes similar characters easy to distinguish.
Weight Waterfall (8)
How to Use
<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
- Category
- Monospace
- Style
- coding-mono
- Weights
- 8
- Italic
- ✓
- Korean
- ✗
- Designer
- JetBrains
- License
- OFL
- Version
- Popularity
- #127
- Downloads
- 1
License Usage
| Web use | Allowed |
| Allowed | |
| Video / Broadcast | Allowed |
| Packaging | Allowed |
| App embedding | Allowed |
| Brand / Logo | Allowed |
| Modification | Allowed |
OFL — Free for personal & commercial use
Language Support
Best For
Similar Fonts
Typography Concepts
-
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'.