inter-mono

Inter Mono

Inter Mono

A monospace variation of Iosevka, designed to match Inter and Apple’s SF font series.

Download

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

Features

Comparison

Installation

macOS

  1. Download the TTF package from releases
  2. Unzip the archive
  3. Open the TTF folder
  4. Select all .ttf files and double-click to install
  5. Or drag them to Font Book

Windows

  1. Download the TTF package from releases
  2. Unzip the archive
  3. Open the TTF folder
  4. Select all .ttf files
  5. Right-click and select “Install for all users” (recommended)

Linux

# 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

Usage in Editors

VS Code

Add to your settings.json:

{
	"editor.fontFamily": "'Inter Mono', monospace",
	"editor.fontSize": 14,
	"editor.lineHeight": 1.6
}

Terminal Apps

JetBrains IDEs

  1. Preferences → Editor → Font
  2. Select “Inter Mono” from the font dropdown
  3. Adjust size as needed (recommended: 13-14pt)

Web Fonts

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;
}

Building from Source

Inter Mono is built using Iosevka’s build system with custom parameters.

Prerequisites

Build Steps

# 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/

Customization

The build configuration is in private-build-plans.toml. Key customization points:

See Iosevka’s customization guide for detailed options.

Technical Details

Weights

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

Contributing

Inter Mono is a custom Iosevka build. Contributions are welcome!

License

Inter Mono inherits Iosevka’s license:

Credits


Made with ❤️ by lujstn