Skip to content

Commit

Permalink
Add comments and explanation for how to add another font
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy-Walton committed Feb 7, 2024
1 parent 21d9c28 commit bae6b5a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/stories/Tokens/Typography/FontFamily.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,19 @@ If you want to change the font used by default, you can add a new font import to
--op-font-family: 'Tilt Neon', sans-serif;
}
```

## Alternate or Multiple Fonts

Often an application will need multiple fonts. Your headers may use a different font than your body text. Optics provides a single font family token, but you can easily add your own font tokens by following the pattern.

```css
@import 'https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Roboto&display=swap';

:root {
--op-font-family: 'Tilt Neon', sans-serif;
--ya-font-family-alt: 'Roboto', serif; // Your App prefix. Could stick with --op if you want
// or
--ya-font-family-body: 'Roboto', serif;
}
```

0 comments on commit bae6b5a

Please sign in to comment.