|
1 | 1 | <!--
|
2 | 2 | * 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 |
4 | 4 | *
|
5 | 5 | * Kong Design Tokens
|
6 | 6 | * GitHub: https://github.com/Kong/design-tokens
|
@@ -448,8 +448,10 @@ $kui-status-color-3xx: #fffce0;
|
448 | 448 | $kui-status-color-4xx: #fff1ef;
|
449 | 449 | /* Analytics request status color 5xx wildcard (red.10). */
|
450 | 450 | $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. */ |
452 | 452 | $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; |
453 | 455 | /* The standard text font family. */
|
454 | 456 | $kui-font-family-text: 'Inter', Roboto, Helvetica, sans-serif;
|
455 | 457 | $kui-font-size-10: 10px;
|
@@ -996,8 +998,10 @@ $tokens-map: (
|
996 | 998 | 'kui-status-color-4xx': #fff1ef;
|
997 | 999 | /* Analytics request status color 5xx wildcard (red.10). */
|
998 | 1000 | '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. */ |
1000 | 1002 | '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; |
1001 | 1005 | /* The standard text font family. */
|
1002 | 1006 | 'kui-font-family-text': 'Inter', Roboto, Helvetica, sans-serif;
|
1003 | 1007 | 'kui-font-size-10': 10px;
|
@@ -1546,8 +1550,10 @@ $tokens-map: (
|
1546 | 1550 | @kui-status-color-4xx: #fff1ef;
|
1547 | 1551 | /* Analytics request status color 5xx wildcard (red.10). */
|
1548 | 1552 | @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. */ |
1550 | 1554 | @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; |
1551 | 1557 | /* The standard text font family. */
|
1552 | 1558 | @kui-font-family-text: 'Inter', Roboto, Helvetica, sans-serif;
|
1553 | 1559 | @kui-font-size-10: 10px;
|
@@ -2097,8 +2103,10 @@ You may scope your CSS custom property overrides inside the `:root` selector as
|
2097 | 2103 | --kui-status-color-4xx: #fff1ef;
|
2098 | 2104 | /* Analytics request status color 5xx wildcard (red.10). */
|
2099 | 2105 | --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. */ |
2101 | 2107 | --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; |
2102 | 2110 | /* The standard text font family. */
|
2103 | 2111 | --kui-font-family-text: 'Inter', Roboto, Helvetica, sans-serif;
|
2104 | 2112 | --kui-font-size-10: 10px;
|
@@ -2646,8 +2654,10 @@ export const KUI_STATUS_COLOR_3XX = "#fffce0";
|
2646 | 2654 | export const KUI_STATUS_COLOR_4XX = "#fff1ef";
|
2647 | 2655 | /* Analytics request status color 5xx wildcard (red.10). */
|
2648 | 2656 | 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. */ |
2650 | 2658 | 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"; |
2651 | 2661 | /* The standard text font family. */
|
2652 | 2662 | export const KUI_FONT_FAMILY_TEXT = "'Inter', Roboto, Helvetica, sans-serif";
|
2653 | 2663 | export const KUI_FONT_SIZE_10 = "10px";
|
@@ -2981,6 +2991,7 @@ export const KUI_SPACE_AUTO = "auto";
|
2981 | 2991 | "kui_status_color_4xx": "#fff1ef",
|
2982 | 2992 | "kui_status_color_5xx": "#ffe5e5",
|
2983 | 2993 | "kui_font_family_code": "'JetBrains Mono', Consolas, monospace",
|
| 2994 | + "kui_font_family_heading": "'Inter', Roboto, Helvetica, sans-serif", |
2984 | 2995 | "kui_font_family_text": "'Inter', Roboto, Helvetica, sans-serif",
|
2985 | 2996 | "kui_font_size_10": "10px",
|
2986 | 2997 | "kui_font_size_20": "12px",
|
|
0 commit comments