From 8092156c09948a0374623f8b63f166848a5a69a7 Mon Sep 17 00:00:00 2001 From: Ian Clarke Date: Mon, 4 Jul 2022 09:15:06 -0400 Subject: [PATCH 1/3] Adding in weights --- data/tokens.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/data/tokens.json b/data/tokens.json index ec64a979..942ff0c7 100644 --- a/data/tokens.json +++ b/data/tokens.json @@ -397,10 +397,22 @@ "base": { "value": "500", "type": "fontWeights" + }, + "light": { + "value": "400", + "type": "fontWeights" + }, + "strong": { + "value": "600", + "type": "fontWeights" + }, + "bold": { + "value": "900", + "type": "fontWeights" } } } }, "Light": {}, "$themes": [] -} +} \ No newline at end of file From ffb285dc479afea6b861119af17fee45c774c1c5 Mon Sep 17 00:00:00 2001 From: iryanclarke Date: Mon, 4 Jul 2022 13:15:29 +0000 Subject: [PATCH 2/3] Transformed tokens --- data/transformed-tokens.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/data/transformed-tokens.json b/data/transformed-tokens.json index 5dd2b295..7a1ac137 100644 --- a/data/transformed-tokens.json +++ b/data/transformed-tokens.json @@ -564,6 +564,18 @@ "base": { "value": 500, "type": "fontWeights" + }, + "light": { + "value": 400, + "type": "fontWeights" + }, + "strong": { + "value": 600, + "type": "fontWeights" + }, + "bold": { + "value": 900, + "type": "fontWeights" } } } From 24db4122e281eb6d52dc17d6e87c8c582e672b35 Mon Sep 17 00:00:00 2001 From: iryanclarke Date: Mon, 4 Jul 2022 13:15:50 +0000 Subject: [PATCH 3/3] Built and updated design tokens --- build/scss/colors.scss | 4 ++-- build/scss/typography.scss | 5 ++++- build/ts/colors.ts | 4 ++-- build/ts/typography.ts | 5 ++++- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/build/scss/colors.scss b/build/scss/colors.scss index a906ee76..b9c9e8da 100644 --- a/build/scss/colors.scss +++ b/build/scss/colors.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Wed, 29 Jun 2022 16:10:55 GMT +// Generated on Mon, 04 Jul 2022 13:15:49 GMT $green100: #FAFFFC; $green200: #EBF2EF; @@ -49,4 +49,4 @@ $grey400: #C8D3E0; $grey500: #596D84; $grey600: #475A70; $grey700: #36485C; -$grey800: #2E3A47; +$grey800: #2E3A47; \ No newline at end of file diff --git a/build/scss/typography.scss b/build/scss/typography.scss index 26e37865..250faf23 100644 --- a/build/scss/typography.scss +++ b/build/scss/typography.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Wed, 29 Jun 2022 16:10:55 GMT +// Generated on Mon, 04 Jul 2022 13:15:49 GMT $letterSpacingbase: 0; $paragraphSpacingbase: 0; @@ -84,3 +84,6 @@ $lineHeightsmall: 16px; $fontFamilysansSerif: Mulish; $weightheading: 700; $weightbase: 500; +$weightlight: 400; +$weightstrong: 600; +$weightbold: 900; \ No newline at end of file diff --git a/build/ts/colors.ts b/build/ts/colors.ts index cca3d52e..11b6e25e 100644 --- a/build/ts/colors.ts +++ b/build/ts/colors.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Wed, 29 Jun 2022 16:10:55 GMT + * Generated on Mon, 04 Jul 2022 13:15:49 GMT */ export const green100 = "#FAFFFC"; @@ -50,4 +50,4 @@ export const grey400 = "#C8D3E0"; export const grey500 = "#596D84"; export const grey600 = "#475A70"; export const grey700 = "#36485C"; -export const grey800 = "#2E3A47"; +export const grey800 = "#2E3A47"; \ No newline at end of file diff --git a/build/ts/typography.ts b/build/ts/typography.ts index a012502a..ecdf7bb0 100644 --- a/build/ts/typography.ts +++ b/build/ts/typography.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Wed, 29 Jun 2022 16:10:55 GMT + * Generated on Mon, 04 Jul 2022 13:15:49 GMT */ export const letterSpacingbase = 0; @@ -85,3 +85,6 @@ export const lineHeightsmall = "16px"; export const fontFamilysansSerif = "Mulish"; export const weightheading = 700; export const weightbase = 500; +export const weightlight = 400; +export const weightstrong = 600; +export const weightbold = 900; \ No newline at end of file