Skip to content

Typography

The primary typeface for the Pulumi brand is Inter. If Inter is not available, acceptable fallback system fonts include Helvetica Neue, Helvetica, and Arial.

Pulumi Typography Inter

  • Use Inter for all headings, body text, and other typographic needs in brand materials.
  • The Semibold weight of Inter is the primary weight for headings and emphasis, while the Regular weight is the primary weight for body text and longer form copy.
  • When used for headings, Inter’s tracking (letter spacing) should be set to -5% (-0.05em). In places where letter spacing is not adjustable but Google fonts are available, such as in Google Slides and Docs, use Inter Tight for headings.
  • In headings, Inter line height should be set to 110% (1.1em), and in body text and longer form copy it should be set to 130% (1.3em) for readability.
Inter, 'Helvetica Neue', Helvetica, Arial, -apple-system, BlinkMacSystemFont, sans-serif

Pulumi Typography Monaspace Neon

The mono typeface for the Pulumi brand is Monaspace Neon. If Monaspace Neon is not available, but Google Fonts are (e.g., in Google Slides and Docs), Cascadia Mono is an acceptable fallback. Acceptable system font fallbacks include Menlo and Consolas.

  • Use Monaspace Neon for code snippets, technical documentation, and any context where a monospaced font is appropriate.
  • It can also be used for labels and overlines. When used for this purpose, it should be set in all caps with tracking set to +5%.
  • Use the Regular weight by default, but the other weights are available if they make sense for uses like larger format designs.
'Monaspace Neon', Menlo, Consolas, ui-monospace, monospace

The brand-assets package contains all fonts, standard logos, colors, and supporting imagery:

Download

Typographic scales are defined in more detail in specific design systems and component libraries. Follow those guidelines for specific use cases. In general, use the following guiding principles:

  • Establish clear hierarchy between headings, subheadings, and body text
  • Headings: Semibold weight, -5% tracking, 110% line height
  • Body: Regular weight, 0% tracking, 130% line height

Apply the following OpenType font feature settings by default across all digital implementations.

Tailwind CSS v4

@theme {
--default-font-feature-settings: "liga" 1, "calt" 1, "cv11" 1;
}

CSS

body {
font-feature-settings: "liga" 1, "calt" 1, "cv11" 1;
}
  • liga — enables standard ligatures (e.g., fi, fl)
  • calt — enables contextual alternates for more natural letter connections
  • cv11 — enables Inter’s character variant for 1 (adds a serif crossbar for improved legibility)

Always use Min Theme for code snippets. Replace the default background color of the theme with Violet 50 light (#f5f5ff) and dark (#231f33). It’s okay to use the Min Dark theme in light mode contexts if more contrast is desired for code snippets.

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const bucket = new aws.s3.Bucket("my-bucket");
export const bucketName = bucket.id;
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const bucket = new aws.s3.Bucket("my-bucket");
export const bucketName = bucket.id;