Skip to content

Commit 8840670

Browse files
chore(release): 1.12.8 [skip ci]
## [1.12.8](v1.12.7...v1.12.8) (2024-02-14) ### Bug Fixes * **background:** add color weak tokens ([#230](#230)) ([1820d80](1820d80))
1 parent 1820d80 commit 8840670

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.12.8](https://github.com/Kong/design-tokens/compare/v1.12.7...v1.12.8) (2024-02-14)
2+
3+
4+
### Bug Fixes
5+
6+
* **background:** add color weak tokens ([#230](https://github.com/Kong/design-tokens/issues/230)) ([1820d80](https://github.com/Kong/design-tokens/commit/1820d80021c5c76d6af6354e26c344fd0c8d25a6))
7+
18
## [1.12.7](https://github.com/Kong/design-tokens/compare/v1.12.6...v1.12.7) (2024-01-25)
29

310

TOKENS.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
* Do not edit directly
3-
* Generated on Tue, 30 Jan 2024 17:16:16 GMT
3+
* Generated on Wed, 14 Feb 2024 18:29:15 GMT
44
*
55
* Kong Design Tokens
66
* GitHub: https://github.com/Kong/design-tokens
@@ -74,10 +74,14 @@ $kui-color-background-primary-weak: #5f9aff;
7474
$kui-color-background-primary-weaker: #bee2ff;
7575
/* Weakest background color for primary actions or messages (blue.10) */
7676
$kui-color-background-primary-weakest: #eefaff;
77+
/* Weak background color for success elements (green.40). */
78+
$kui-color-background-success-weak: #00d6a4;
7779
/* Weakest background color for success elements (green.10). */
7880
$kui-color-background-success-weakest: #ecfffb;
7981
/* Transparent background color (transparent). */
8082
$kui-color-background-transparent: rgba(0, 0, 0, 0);
83+
/* Weak background color for warning elements (yellow.40). */
84+
$kui-color-background-warning-weak: #ffc400;
8185
/* Weakest background color for warning elements (yellow.10). */
8286
$kui-color-background-warning-weakest: #fffce0;
8387
/* Default border color for containers (gray.20). */
@@ -466,10 +470,14 @@ $tokens-map: (
466470
'kui-color-background-primary-weaker': #bee2ff;
467471
/* Weakest background color for primary actions or messages (blue.10) */
468472
'kui-color-background-primary-weakest': #eefaff;
473+
/* Weak background color for success elements (green.40). */
474+
'kui-color-background-success-weak': #00d6a4;
469475
/* Weakest background color for success elements (green.10). */
470476
'kui-color-background-success-weakest': #ecfffb;
471477
/* Transparent background color (transparent). */
472478
'kui-color-background-transparent': rgba(0, 0, 0, 0);
479+
/* Weak background color for warning elements (yellow.40). */
480+
'kui-color-background-warning-weak': #ffc400;
473481
/* Weakest background color for warning elements (yellow.10). */
474482
'kui-color-background-warning-weakest': #fffce0;
475483
/* Default border color for containers (gray.20). */
@@ -860,10 +868,14 @@ $tokens-map: (
860868
@kui-color-background-primary-weaker: #bee2ff;
861869
/* Weakest background color for primary actions or messages (blue.10) */
862870
@kui-color-background-primary-weakest: #eefaff;
871+
/* Weak background color for success elements (green.40). */
872+
@kui-color-background-success-weak: #00d6a4;
863873
/* Weakest background color for success elements (green.10). */
864874
@kui-color-background-success-weakest: #ecfffb;
865875
/* Transparent background color (transparent). */
866876
@kui-color-background-transparent: rgba(0, 0, 0, 0);
877+
/* Weak background color for warning elements (yellow.40). */
878+
@kui-color-background-warning-weak: #ffc400;
867879
/* Weakest background color for warning elements (yellow.10). */
868880
@kui-color-background-warning-weakest: #fffce0;
869881
/* Default border color for containers (gray.20). */
@@ -1255,10 +1267,14 @@ You may scope your CSS custom property overrides inside the `:root` selector as
12551267
--kui-color-background-primary-weaker: #bee2ff;
12561268
/* Weakest background color for primary actions or messages (blue.10) */
12571269
--kui-color-background-primary-weakest: #eefaff;
1270+
/* Weak background color for success elements (green.40). */
1271+
--kui-color-background-success-weak: #00d6a4;
12581272
/* Weakest background color for success elements (green.10). */
12591273
--kui-color-background-success-weakest: #ecfffb;
12601274
/* Transparent background color (transparent). */
12611275
--kui-color-background-transparent: rgba(0, 0, 0, 0);
1276+
/* Weak background color for warning elements (yellow.40). */
1277+
--kui-color-background-warning-weak: #ffc400;
12621278
/* Weakest background color for warning elements (yellow.10). */
12631279
--kui-color-background-warning-weakest: #fffce0;
12641280
/* Default border color for containers (gray.20). */
@@ -1648,10 +1664,14 @@ export const KUI_COLOR_BACKGROUND_PRIMARY_WEAK = "#5f9aff";
16481664
export const KUI_COLOR_BACKGROUND_PRIMARY_WEAKER = "#bee2ff";
16491665
/* Weakest background color for primary actions or messages (blue.10) */
16501666
export const KUI_COLOR_BACKGROUND_PRIMARY_WEAKEST = "#eefaff";
1667+
/* Weak background color for success elements (green.40). */
1668+
export const KUI_COLOR_BACKGROUND_SUCCESS_WEAK = "#00d6a4";
16511669
/* Weakest background color for success elements (green.10). */
16521670
export const KUI_COLOR_BACKGROUND_SUCCESS_WEAKEST = "#ecfffb";
16531671
/* Transparent background color (transparent). */
16541672
export const KUI_COLOR_BACKGROUND_TRANSPARENT = "rgba(0, 0, 0, 0)";
1673+
/* Weak background color for warning elements (yellow.40). */
1674+
export const KUI_COLOR_BACKGROUND_WARNING_WEAK = "#ffc400";
16551675
/* Weakest background color for warning elements (yellow.10). */
16561676
export const KUI_COLOR_BACKGROUND_WARNING_WEAKEST = "#fffce0";
16571677
/* Default border color for containers (gray.20). */
@@ -2013,8 +2033,10 @@ export const KUI_SPACE_AUTO = "auto";
20132033
"kui_color_background_primary_weak": "#5f9aff",
20142034
"kui_color_background_primary_weaker": "#bee2ff",
20152035
"kui_color_background_primary_weakest": "#eefaff",
2036+
"kui_color_background_success_weak": "#00d6a4",
20162037
"kui_color_background_success_weakest": "#ecfffb",
20172038
"kui_color_background_transparent": "rgba(0, 0, 0, 0)",
2039+
"kui_color_background_warning_weak": "#ffc400",
20182040
"kui_color_background_warning_weakest": "#fffce0",
20192041
"kui_color_border": "#e0e4ea",
20202042
"kui_color_border_danger": "#d60027",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kong/design-tokens",
3-
"version": "1.12.7",
3+
"version": "1.12.8",
44
"description": "Kong UI Design Tokens and style dictionary",
55
"scripts": {
66
"build": "yarn build:clean && style-dictionary build && yarn copy:tokens-doc && yarn copy:stylelint-plugin",

0 commit comments

Comments
 (0)