A monospace variation of Iosevka, designed to match Inter and Apple’s SF font series.
Format | Description | Download |
---|---|---|
TTF | Desktop fonts (install on your system) | Download Latest Release |
WOFF2 | Web fonts for websites | Download Latest Release |
Complete | All formats included | Download Latest Release |
TTF
folder.ttf
files and double-click to installTTF
folder.ttf
files# Download and extract
unzip InterMono-TTF-*.zip
# Install fonts
mkdir -p ~/.local/share/fonts/InterMono
cp TTF/*.ttf ~/.local/share/fonts/InterMono/
# Refresh font cache
fc-cache -f -v
Add to your settings.json
:
{
"editor.fontFamily": "'Inter Mono', monospace",
"editor.fontSize": 14,
"editor.lineHeight": 1.6
}
.hyper.js
and set fontFamily: 'Inter Mono'
Include in your CSS:
@import url("path/to/inter-mono.css");
code,
pre {
font-family: "Inter Mono", monospace;
}
Or self-host the WOFF2 files:
@font-face {
font-family: "Inter Mono";
src: url("InterMono-Regular.woff2") format("woff2");
font-weight: 400;
font-style: normal;
}
Inter Mono is built using Iosevka’s build system with custom parameters.
ttfautohint
(for hinting)# Clone the repository
git clone https://github.com/lujstn/inter-mono.git
cd inter-mono
# Install dependencies
npm install
# Build all formats (TTF + WOFF2)
npm run build -- contents::InterMono
# Or build specific formats
npm run build -- ttf::InterMono # TTF only
npm run build -- webfont::InterMono # WOFF2 + CSS only
Fonts will be output to dist/InterMono/
The build configuration is in private-build-plans.toml
. Key customization points:
params/private-parameters.toml
See Iosevka’s customization guide for detailed options.
fontconfig-mono
(strict monospace)Weight | CSS Value | Shape Value | Use Case |
---|---|---|---|
Light | 300 | 300 | Large displays, minimal text |
Regular | 400 | 400 | General coding, default |
Medium | 500 | 520 | Emphasis, headings |
SemiBold | 600 | 660 | Strong emphasis |
Bold | 700 | 825 | High contrast, accessibility |
ExtraBold | 800 | 1000 | Maximum impact, large sizes |
Inter Mono is a custom Iosevka build. Contributions are welcome!
Inter Mono inherits Iosevka’s license:
Made with ❤️ by lujstn