diff --git a/web/stories/Colors.stories.mdx b/web/stories/Colors.stories.mdx index d325673b4..01a15b5e0 100644 --- a/web/stories/Colors.stories.mdx +++ b/web/stories/Colors.stories.mdx @@ -10,17 +10,13 @@ and get reflected here as they change. Toggle dark mode on and off in the above toolbar to see how these colors look on a dark vs. light background. -## Key Colors - - - ## Text - + ## Backgrounds - + ## User Colors @@ -36,57 +32,3 @@ Toggle dark mode on and off in the above toolbar to see how these colors look on 'theme-user-colors-8', ]} /> - -## Status - - - -## Gray - - - -## Purple - - - -## Green - - - -## Orange - - diff --git a/web/stories/Typography.stories.mdx b/web/stories/Typography.stories.mdx index a1e0e0fdf..1e82139e1 100644 --- a/web/stories/Typography.stories.mdx +++ b/web/stories/Typography.stories.mdx @@ -2,12 +2,28 @@ import { Canvas, Meta, Story } from '@storybook/addon-docs'; -# Font +## Body -[Inter font](https://rsms.me/inter/) +
+ The quick brown fox jumps over the lazy dog. +
-## TODO: List out the different text styles. - - - {getComputedStyle(document.documentElement).getPropertyValue('--theme-font-family')} + + {getComputedStyle(document.documentElement).getPropertyValue('--theme-text-body-font-family')} + + +## Display + +
+ The quick brown fox jumps over the lazy dog. +
+ + {getComputedStyle(document.documentElement).getPropertyValue('--theme-text-display-font-family')} diff --git a/web/stories/preview.scss b/web/stories/preview.scss index 25dcc598e..e309f02eb 100644 --- a/web/stories/preview.scss +++ b/web/stories/preview.scss @@ -1,4 +1,4 @@ html, body { - font-family: var(--theme-font-family); + font-family: var(--theme-text-body-font-family); }