From 1dc1a1eb3285029202a42a346478552e3160ca14 Mon Sep 17 00:00:00 2001 From: soniakose Date: Mon, 16 Dec 2024 11:28:01 -0500 Subject: [PATCH 1/2] Update Typography.mdx --- docs/Foundations/Typography.mdx | 55 ++++++++++++++++++++++++++++++++- 1 file changed, 54 insertions(+), 1 deletion(-) diff --git a/docs/Foundations/Typography.mdx b/docs/Foundations/Typography.mdx index f4d6fa073..84560da0e 100644 --- a/docs/Foundations/Typography.mdx +++ b/docs/Foundations/Typography.mdx @@ -1,3 +1,56 @@ # Typography -TBD \ No newline at end of file +### Font Families + +#### Primary Font +- **Token Name:** `fontFamily` +- **Value:** `'GT America', -system-ui, sans-serif` +- **Usage:** Default for all general text like headings, paragraphs, and UI labels. + +#### Code Font +- **Token Name:** `fontFamilyCode` +- **Value:** `'Roboto Mono', monospace` +- **Usage:** Used for code snippets, technical text, or monospaced content. + + + +### Font Sizes +- **Base:** `14px` +- **Large (LG):** `16px` +- **Small (SM):** `12px` +- **Extra Large (XL):** `20px` + +#### Heading Font Sizes +- **Heading 1:** `38px` +- **Heading 2:** `30px` +- **Heading 3:** `24px` +- **Heading 4:** `20px` +- **Heading 5:** `16px` + + +### Font Weights +- **Normal Weight:** `400` +- **Strong Weight:** `500` + + + +### Line Heights +- **Default:** `22px` +- **Large (LG):** `24px` +- **Small (SM):** `20px` + +#### Heading Line Heights +- **Heading 1:** `46px` +- **Heading 2:** `38px` +- **Heading 3:** `32px` +- **Heading 4:** `28px` +- **Heading 5:** `24px` + + +### Text Styles +- Normal +- **Strong** +- _Italic_ +- ~~Underline~~ + + From 8ff3010d4207a3269e7afcba3154f202dac500ae Mon Sep 17 00:00:00 2001 From: soniakose Date: Mon, 16 Dec 2024 11:29:21 -0500 Subject: [PATCH 2/2] Update Typography.mdx --- docs/Foundations/Typography.mdx | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/Foundations/Typography.mdx b/docs/Foundations/Typography.mdx index 84560da0e..7602b7f6d 100644 --- a/docs/Foundations/Typography.mdx +++ b/docs/Foundations/Typography.mdx @@ -3,12 +3,10 @@ ### Font Families #### Primary Font -- **Token Name:** `fontFamily` - **Value:** `'GT America', -system-ui, sans-serif` - **Usage:** Default for all general text like headings, paragraphs, and UI labels. #### Code Font -- **Token Name:** `fontFamilyCode` - **Value:** `'Roboto Mono', monospace` - **Usage:** Used for code snippets, technical text, or monospaced content.