docs/documentation/foundations/typography.mdx
h2 element by default.span element by default.p element by default.a element by default.strong element by default.small element by default.pre element by default.code element by default.ol element.ul element.li element.Evergreen uses three font family stacks, ui, display and mono.
Text components will set the font family accordingly to their use case.
There is not need for you to override this on a component level.
The Heading component is used for all headings.
The size options are: 100, 200, 300, 400, 500 (default), 600, 700, 800, 900.
<Pane>
<Heading size={100} marginTop={16}>
100: The quick brown fox jumps over the lazy dog
</Heading>
<Heading size={200} marginTop={16}>
200: The quick brown fox jumps over the lazy dog
</Heading>
<Heading size={300} marginTop={16}>
300: The quick brown fox jumps over the lazy dog
</Heading>
<Heading size={400} marginTop={16}>
400: The quick brown fox jumps over the lazy dog
</Heading>
<Heading size={500} marginTop={24}>
500: The quick brown fox jumps over the lazy dog
</Heading>
<Heading size={600} marginTop={28}>
600: The quick brown fox jumps over the lazy dog
</Heading>
<Heading size={700} marginTop={40}>
700: The quick brown fox jumps over the lazy dog
</Heading>
<Heading size={800} marginTop={40}>
800: The quick brown fox jumps over the lazy dog
</Heading>
<Heading size={900} marginTop={52}>
900: The quick brown fox jumps over the lazy dog
</Heading>
</Pane>
The Heading component will always render a h2 until you specify otherwise with the is property.
It’s important to realize that the style of a heading is independent from the semantic underlying element.
<Heading is="h3">Heading h3</Heading>
The Text component is used for single line text.
The component renders a span element by default.
If you need a multiline paragraph use the Paragraph component.
The size options are: 300, 400 (default), 500
<div>
<div>
<Text size={300}>The quick brown fox jumps over the lazy dog</Text>
</div>
<div>
<Text size={400}>The quick brown fox jumps over the lazy dog</Text>
</div>
<div>
<Text size={500}>The quick brown fox jumps over the lazy dog</Text>
</div>
</div>
<Text color="muted">The quick brown fox jumps over the lazy dog</Text>
The Paragraph component is used for multiline text.
This renders a p element by default.
The size options are: 300, 400 (default), 500
<div>
<Paragraph size={300} marginTop={12}>
Size 300. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit
in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</Paragraph>
<Paragraph size={400} marginTop={12}>
Size 400. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit
in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</Paragraph>
<Paragraph marginTop={16}>
Size 500. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit
in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</Paragraph>
</div>
<Paragraph color="muted">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit
esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt
in culpa qui officia deserunt mollit anim id est laborum.
</Paragraph>
The Link component is used for anchor links.
This component renders a a element by default.
The size options are: 300, 400 (default), 500
<div>
<Link href="#" marginRight={12}>
Default
</Link>
<Link href="#" marginRight={12} color="neutral">
Neutral
</Link>
</div>
The Strong component renders strong text.
This component renders a strong element by default.
Make sure to set the size property if you are using this within a other text component such as a Paragraph.
<div>
<div>
<Strong size={300}>The quick brown fox jumps over the lazy dog</Strong>
</div>
<div>
<Strong size={400}>The quick brown fox jumps over the lazy dog</Strong>
</div>
<div>
<Strong size={500}>The quick brown fox jumps over the lazy dog</Strong>
</div>
</div>
The Small component works only inside other text components.
<Paragraph>
The <Small>small</Small> component can only be used in a other text component
</Paragraph>
The Code component is based on the Text component but renders a code element by default.
<div>
<div>
<Code size={300}>The quick brown fox jumps over the lazy dog</Code>
</div>
<div>
<Code size={400}>The quick brown fox jumps over the lazy dog</Code>
</div>
<div>
<Code size={500}>The quick brown fox jumps over the lazy dog</Code>
</div>
<div>
<Code size={300} appearance="minimal">
The quick brown fox jumps over the lazy dog
</Code>
</div>
<div>
<Code size={400} appearance="minimal">
The quick brown fox jumps over the lazy dog
</Code>
</div>
<div>
<Code size={500} appearance="minimal">
The quick brown fox jumps over the lazy dog
</Code>
</div>
</div>
The Pre component renders a chunk of preformatted text.
This component renders a pre element by default.
<Pre>Preformatted text.</Pre>
<UnorderedList>
<ListItem>Lorem ipsum dolor sit amet</ListItem>
<ListItem>Consectetur adipiscing elit</ListItem>
<ListItem>Integer molestie lorem at massa</ListItem>
<ListItem>Facilisis in pretium nisl aliquet</ListItem>
</UnorderedList>
<UnorderedList size={300}>
<ListItem>Lorem ipsum dolar set amet</ListItem>
<ListItem>Lorem ipsum dolar set amet</ListItem>
<ListItem>Lorem ipsum dolar set amet</ListItem>
<ListItem>Lorem ipsum dolar set amet</ListItem>
<ListItem>Lorem ipsum dolar set amet</ListItem>
</UnorderedList>
The icon property has access to all available icons.
<UnorderedList icon={TickIcon} iconColor="success">
<ListItem>Lorem ipsum dolar set amet</ListItem>
<ListItem>Lorem ipsum dolar set amet</ListItem>
<ListItem>Lorem ipsum dolar set amet</ListItem>
<ListItem>Lorem ipsum dolar set amet</ListItem>
</UnorderedList>
<UnorderedList>
<ListItem icon={TickCircleIcon} iconColor="success">
Lorem ipsum dolar set amet
</ListItem>
<ListItem icon={TickCircleIcon} iconColor="success">
Lorem ipsum dolar set amet
</ListItem>
<ListItem icon={BanCircleIcon} iconColor="danger">
Lorem ipsum dolar set amet
</ListItem>
<ListItem icon={BanCircleIcon} iconColor="danger">
Lorem ipsum dolar set amet
</ListItem>
</UnorderedList>
<OrderedList>
<ListItem>Lorem ipsum dolor sit amet</ListItem>
<ListItem>Consectetur adipiscing elit</ListItem>
<ListItem>Integer molestie lorem at massa</ListItem>
<ListItem>Facilisis in pretium nisl aliquet</ListItem>
</OrderedList>
<OrderedList size={300}>
<ListItem>Lorem ipsum dolar set amet</ListItem>
<ListItem>Lorem ipsum dolar set amet</ListItem>
<ListItem>Lorem ipsum dolar set amet</ListItem>
<ListItem>Lorem ipsum dolar set amet</ListItem>
<ListItem>Lorem ipsum dolar set amet</ListItem>
</OrderedList>
<ListItem>List item. Use inside of a UnorderedList or OrderedList.</ListItem>