Typography

Typography used across the AppSignal brand as well as the in the product.

Font Stack

We use Rubik for almost everything brand and marketing related. Rubik is available in one style and we use the normal and medium font-weight.

This is Rubik

<p class="font-rubik text-2xl">This is Rubik</p>

Usage

Default Attributes

AttributesClassValue
Font-familyfont-rubikRubik
Font-sizetext-base16px
Font-weightfont-normal400
Line-heightleading-normal150%

Font Family

The default font-family for everything brand related is font-rubik. We use font-mono to display code.

This is the Rubik font

This is the monospace font

<p class="font-rubik">This is the Rubik font</p>
<p class="font-mono">This is the monospace font</p>

Font-size

The default font-size for everything brand related is font-base. For headings we use the custom c_h-heading component, see here.

This is text-8xl

This is text-7xl

This is text-6xl

This is text-5xl

This is text-4xl

This is text-3xl

This is text-2xl

This is text-xl

This is text-lg

This is text-base

This is text-sm

This is text-ms

This is text-xs

<p class="text-8xl font-rubik">This is text-8xl</p>
<p class="text-7xl font-rubik">This is text-7xl</p>
<p class="text-6xl font-rubik">This is text-6xl</p>
<p class="text-5xl font-rubik">This is text-5xl</p>
<p class="text-4xl font-rubik">This is text-4xl</p>
<p class="text-3xl font-rubik">This is text-3xl</p>
<p class="text-2xl font-rubik">This is text-2xl</p>
<p class="text-xl font-rubik">This is text-xl</p>
<p class="text-lg font-rubik">This is text-lg</p>
<p class="text-base font-rubik">This is text-base</p>
<p class="text-sm font-rubik">This is text-sm</p>
<p class="text-ms font-rubik">This is text-ms</p>
<p class="text-xs font-rubik">This is text-xs</p>

Font-weight

The default font-weight for everything brand related is font-normal. For bold text we use font-medium.

This is normal text

This is bold text

<p class="font-normal font-rubik">This is normal text</p>
<p class="font-medium font-rubik">This is bold text</p>