Skip to content

Commit efed625

Browse files
authored
feat: add font-family-heading (#321)
1 parent 3f1ee33 commit efed625

File tree

3 files changed

+6494
-7
lines changed

3 files changed

+6494
-7
lines changed

TOKENS.md

+17-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
* Do not edit directly
3-
* Generated on Mon, 01 Jul 2024 22:01:08 GMT
3+
* Generated on Tue, 02 Jul 2024 15:10:45 GMT
44
*
55
* Kong Design Tokens
66
* GitHub: https://github.com/Kong/design-tokens
@@ -448,8 +448,10 @@ $kui-status-color-3xx: #fffce0;
448448
$kui-status-color-4xx: #fff1ef;
449449
/* Analytics request status color 5xx wildcard (red.10). */
450450
$kui-status-color-5xx: #ffe5e5;
451-
/* The standard monospace font family. */
451+
/* The standard monospace text font family. Typically used for code blocks, inline code, and copyable text. */
452452
$kui-font-family-code: 'JetBrains Mono', Consolas, monospace;
453+
/* The standard heading text font family. */
454+
$kui-font-family-heading: 'Inter', Roboto, Helvetica, sans-serif;
453455
/* The standard text font family. */
454456
$kui-font-family-text: 'Inter', Roboto, Helvetica, sans-serif;
455457
$kui-font-size-10: 10px;
@@ -996,8 +998,10 @@ $tokens-map: (
996998
'kui-status-color-4xx': #fff1ef;
997999
/* Analytics request status color 5xx wildcard (red.10). */
9981000
'kui-status-color-5xx': #ffe5e5;
999-
/* The standard monospace font family. */
1001+
/* The standard monospace text font family. Typically used for code blocks, inline code, and copyable text. */
10001002
'kui-font-family-code': 'JetBrains Mono', Consolas, monospace;
1003+
/* The standard heading text font family. */
1004+
'kui-font-family-heading': 'Inter', Roboto, Helvetica, sans-serif;
10011005
/* The standard text font family. */
10021006
'kui-font-family-text': 'Inter', Roboto, Helvetica, sans-serif;
10031007
'kui-font-size-10': 10px;
@@ -1546,8 +1550,10 @@ $tokens-map: (
15461550
@kui-status-color-4xx: #fff1ef;
15471551
/* Analytics request status color 5xx wildcard (red.10). */
15481552
@kui-status-color-5xx: #ffe5e5;
1549-
/* The standard monospace font family. */
1553+
/* The standard monospace text font family. Typically used for code blocks, inline code, and copyable text. */
15501554
@kui-font-family-code: 'JetBrains Mono', Consolas, monospace;
1555+
/* The standard heading text font family. */
1556+
@kui-font-family-heading: 'Inter', Roboto, Helvetica, sans-serif;
15511557
/* The standard text font family. */
15521558
@kui-font-family-text: 'Inter', Roboto, Helvetica, sans-serif;
15531559
@kui-font-size-10: 10px;
@@ -2097,8 +2103,10 @@ You may scope your CSS custom property overrides inside the `:root` selector as
20972103
--kui-status-color-4xx: #fff1ef;
20982104
/* Analytics request status color 5xx wildcard (red.10). */
20992105
--kui-status-color-5xx: #ffe5e5;
2100-
/* The standard monospace font family. */
2106+
/* The standard monospace text font family. Typically used for code blocks, inline code, and copyable text. */
21012107
--kui-font-family-code: 'JetBrains Mono', Consolas, monospace;
2108+
/* The standard heading text font family. */
2109+
--kui-font-family-heading: 'Inter', Roboto, Helvetica, sans-serif;
21022110
/* The standard text font family. */
21032111
--kui-font-family-text: 'Inter', Roboto, Helvetica, sans-serif;
21042112
--kui-font-size-10: 10px;
@@ -2646,8 +2654,10 @@ export const KUI_STATUS_COLOR_3XX = "#fffce0";
26462654
export const KUI_STATUS_COLOR_4XX = "#fff1ef";
26472655
/* Analytics request status color 5xx wildcard (red.10). */
26482656
export const KUI_STATUS_COLOR_5XX = "#ffe5e5";
2649-
/* The standard monospace font family. */
2657+
/* The standard monospace text font family. Typically used for code blocks, inline code, and copyable text. */
26502658
export const KUI_FONT_FAMILY_CODE = "'JetBrains Mono', Consolas, monospace";
2659+
/* The standard heading text font family. */
2660+
export const KUI_FONT_FAMILY_HEADING = "'Inter', Roboto, Helvetica, sans-serif";
26512661
/* The standard text font family. */
26522662
export const KUI_FONT_FAMILY_TEXT = "'Inter', Roboto, Helvetica, sans-serif";
26532663
export const KUI_FONT_SIZE_10 = "10px";
@@ -2981,6 +2991,7 @@ export const KUI_SPACE_AUTO = "auto";
29812991
"kui_status_color_4xx": "#fff1ef",
29822992
"kui_status_color_5xx": "#ffe5e5",
29832993
"kui_font_family_code": "'JetBrains Mono', Consolas, monospace",
2994+
"kui_font_family_heading": "'Inter', Roboto, Helvetica, sans-serif",
29842995
"kui_font_family_text": "'Inter', Roboto, Helvetica, sans-serif",
29852996
"kui_font_size_10": "10px",
29862997
"kui_font_size_20": "12px",

0 commit comments

Comments
 (0)