Typeface

Graphik is our typeface. It is a font that is approachable, friendly and professional. It fits our brand spirit, beliefs and design principles.

Graphik

Font Sizes

We have 10 font sizes available. This can be set on any component using the fontSize prop.

Designers should code
60px — Extra extra extra extra extra large
Designers should code
46px — Extra extra extra extra large
Designers should code
36px — Extra extra extra large
Designers should code
25px — Extra extra large
Designers should code
19px — Extra large
Designers should code
17px — Large
Designers should code
15px — Medium
Designers should code
13px — Small
Designers should code
11px — Extra small
Designers should code
10px — Extra extra small
<Heading fontSize={9}>Designers should code</Heading>
<Heading fontSize={8}>Designers should code</Heading>
<Heading fontSize={7}>Designers should code</Heading>
<Heading fontSize={6}>Designers should code</Heading>
<Heading fontSize={5}>Designers should code</Heading>
<Heading fontSize={4}>Designers should code</Heading>
<Heading fontSize={3}>Designers should code</Heading>
<Heading fontSize={2}>Designers should code</Heading>
<Heading fontSize={1}>Designers should code</Heading>
<Heading fontSize={0}>Designers should code</Heading>

Custom Font Size

You can also define a custom size for a specific edge case.

Abc
<Heading fontSize={120} textAlign="center">
  Abc
</Heading>

Font Weights

There are 3 different weights available: Regular 400 Medium 500 and SemiBold 600. In <Text /> the fontWeight is set to 400 by default while <Heading /> uses by default 500

Aa
Graphik Regular
Aa
Graphik Medium
Aa
Graphik SemiBold
<Heading fontWeight={400}>Aa</Heading>
<Heading fontWeight={500}>Aa</Heading>
<Heading fontWeight={600}>Aa</Heading>

Alignments

Left, right or center align text using the textAlign prop.

Left aligned text
Center aligned text
Right aligned text
<Text textAlign="left">Left aligned text</Text>
<Text textAlign="center">Center aligned text</Text>
<Text textAlign="right">Right aligned text</Text>

Props

See Text or Heading for all the available properties.