Skip to content

Commit

Permalink
feat: add font-family-heading (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven authored Jul 2, 2024
1 parent 3f1ee33 commit efed625
Show file tree
Hide file tree
Showing 3 changed files with 6,494 additions and 7 deletions.
23 changes: 17 additions & 6 deletions TOKENS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--
* Do not edit directly
* Generated on Mon, 01 Jul 2024 22:01:08 GMT
* Generated on Tue, 02 Jul 2024 15:10:45 GMT
*
* Kong Design Tokens
* GitHub: https://github.com/Kong/design-tokens
Expand Down Expand Up @@ -448,8 +448,10 @@ $kui-status-color-3xx: #fffce0;
$kui-status-color-4xx: #fff1ef;
/* Analytics request status color 5xx wildcard (red.10). */
$kui-status-color-5xx: #ffe5e5;
/* The standard monospace font family. */
/* The standard monospace text font family. Typically used for code blocks, inline code, and copyable text. */
$kui-font-family-code: 'JetBrains Mono', Consolas, monospace;
/* The standard heading text font family. */
$kui-font-family-heading: 'Inter', Roboto, Helvetica, sans-serif;
/* The standard text font family. */
$kui-font-family-text: 'Inter', Roboto, Helvetica, sans-serif;
$kui-font-size-10: 10px;
Expand Down Expand Up @@ -996,8 +998,10 @@ $tokens-map: (
'kui-status-color-4xx': #fff1ef;
/* Analytics request status color 5xx wildcard (red.10). */
'kui-status-color-5xx': #ffe5e5;
/* The standard monospace font family. */
/* The standard monospace text font family. Typically used for code blocks, inline code, and copyable text. */
'kui-font-family-code': 'JetBrains Mono', Consolas, monospace;
/* The standard heading text font family. */
'kui-font-family-heading': 'Inter', Roboto, Helvetica, sans-serif;
/* The standard text font family. */
'kui-font-family-text': 'Inter', Roboto, Helvetica, sans-serif;
'kui-font-size-10': 10px;
Expand Down Expand Up @@ -1546,8 +1550,10 @@ $tokens-map: (
@kui-status-color-4xx: #fff1ef;
/* Analytics request status color 5xx wildcard (red.10). */
@kui-status-color-5xx: #ffe5e5;
/* The standard monospace font family. */
/* The standard monospace text font family. Typically used for code blocks, inline code, and copyable text. */
@kui-font-family-code: 'JetBrains Mono', Consolas, monospace;
/* The standard heading text font family. */
@kui-font-family-heading: 'Inter', Roboto, Helvetica, sans-serif;
/* The standard text font family. */
@kui-font-family-text: 'Inter', Roboto, Helvetica, sans-serif;
@kui-font-size-10: 10px;
Expand Down Expand Up @@ -2097,8 +2103,10 @@ You may scope your CSS custom property overrides inside the `:root` selector as
--kui-status-color-4xx: #fff1ef;
/* Analytics request status color 5xx wildcard (red.10). */
--kui-status-color-5xx: #ffe5e5;
/* The standard monospace font family. */
/* The standard monospace text font family. Typically used for code blocks, inline code, and copyable text. */
--kui-font-family-code: 'JetBrains Mono', Consolas, monospace;
/* The standard heading text font family. */
--kui-font-family-heading: 'Inter', Roboto, Helvetica, sans-serif;
/* The standard text font family. */
--kui-font-family-text: 'Inter', Roboto, Helvetica, sans-serif;
--kui-font-size-10: 10px;
Expand Down Expand Up @@ -2646,8 +2654,10 @@ export const KUI_STATUS_COLOR_3XX = "#fffce0";
export const KUI_STATUS_COLOR_4XX = "#fff1ef";
/* Analytics request status color 5xx wildcard (red.10). */
export const KUI_STATUS_COLOR_5XX = "#ffe5e5";
/* The standard monospace font family. */
/* The standard monospace text font family. Typically used for code blocks, inline code, and copyable text. */
export const KUI_FONT_FAMILY_CODE = "'JetBrains Mono', Consolas, monospace";
/* The standard heading text font family. */
export const KUI_FONT_FAMILY_HEADING = "'Inter', Roboto, Helvetica, sans-serif";
/* The standard text font family. */
export const KUI_FONT_FAMILY_TEXT = "'Inter', Roboto, Helvetica, sans-serif";
export const KUI_FONT_SIZE_10 = "10px";
Expand Down Expand Up @@ -2981,6 +2991,7 @@ export const KUI_SPACE_AUTO = "auto";
"kui_status_color_4xx": "#fff1ef",
"kui_status_color_5xx": "#ffe5e5",
"kui_font_family_code": "'JetBrains Mono', Consolas, monospace",
"kui_font_family_heading": "'Inter', Roboto, Helvetica, sans-serif",
"kui_font_family_text": "'Inter', Roboto, Helvetica, sans-serif",
"kui_font_size_10": "10px",
"kui_font_size_20": "12px",
Expand Down
Loading

0 comments on commit efed625

Please sign in to comment.