Typography
Set font size and font unit conversion
The font size unit of Quantum is REM(the root em size). The conversion is rem = px / base font (modern browser base font is 16)
You can use below table to help you find the correct
font size value to use in your class.Read more about Font Size
font size value | rem | pixel |
---|---|---|
1 | 3rem | 48px |
2 | 2.5rem | 40px |
3 | 2rem | 32px |
4 | 1.5rem | 24px |
5 | 1.25rem | 20px |
6 | 1rem | 16px |
7 | 0.875rem | 14px |
8 | 0.75rem | 12px |
9 | 0.625rem | 10px |
10 | 0.5rem | 8px |
Change font weight
The chart helps you to find the correct font weight value to use in your class. Read more on Font Weight
font weight value | Numerical value |
---|---|
thin | 100 |
light | 300 |
regular | 400 |
medium | 500 |
bold | 700 |
black | 900 |
Classes
Here are the available predefined typography classes you can use.
The format of the Class is qtm-{title|subtitle|body|caption|overline|code}-{size}.
- ClassProperties
- qtm-title-1
font-family: Roboto;
font-size: 3rem;
line-height: 4.5rem;
font-weight: 700;
- qtm-title-2
font-family: Roboto;
font-size: 2.5rem;
line-height: 3.75rem;
font-weight: 700;
- qtm-title-3
font-family: Roboto;
font-size: 2rem;
line-height: 3rem;
font-weight: 700;
- qtm-subtitle-1
font-family: Roboto;
font-size: 1.5rem;
line-height: 2.25rem;
font-weight: 500;
- qtm-subtitle-2
font-family: Roboto;
font-size: 1.25rem;
line-height: 2rem;
font-weight: 500;
- qtm-body-1
font-family: Roboto;
font-size: 1rem;
line-height: 1.5rem;
font-weight: 400;
- qtm-body-2
font-family: Roboto;
font-size: 0.875rem;
line-height: 1.25rem;
font-weight: 400;
- qtm-caption-1
font-family: Roboto;
font-size: 0.75rem;
line-height: 1rem;
font-weight: 400;
- qtm-caption-2
font-family: Roboto;
font-size: 0.625rem;
line-height: 1rem;
font-weight: 400;
- qtm-overline
font-family: Roboto;
font-size: 0.625rem;
line-height: 1rem;
font-weight: 400;
text-transform: uppercase;
- qtm-code-1
font-family: Roboto Mono;
font-size: 1rem;
line-height: 1.5rem;
font-weight: 400;
- qtm-code-2
font-family: Roboto Mono;
font-size: 0.875rem;
line-height: 1.25rem;
font-weight: 400;
<div class="qtm-title-2">This is title-2</div>