From 8c2c7610451b4f2527edcb82cd68b1ef54bd36cf Mon Sep 17 00:00:00 2001 From: Catherine Aylward Date: Thu, 4 Aug 2022 16:30:02 -0400 Subject: [PATCH 01/11] add first batch of colours, add new transformed-light --- .github/workflows/build-tokens.yml | 1 + data/core.json | 6 +- data/light.json | 118 +++++++++++++++++++++++++++++ package.json | 5 +- 4 files changed, 127 insertions(+), 3 deletions(-) create mode 100644 data/light.json diff --git a/.github/workflows/build-tokens.yml b/.github/workflows/build-tokens.yml index edc3c795..7cf4f0db 100644 --- a/.github/workflows/build-tokens.yml +++ b/.github/workflows/build-tokens.yml @@ -3,6 +3,7 @@ name: Style dictionary build on: push: paths: + - "data/light.json" - "data/core.json" - "config.json" - "build.js" diff --git a/data/core.json b/data/core.json index 605986e4..bf967aa1 100644 --- a/data/core.json +++ b/data/core.json @@ -212,6 +212,10 @@ "black": { "value": "#000000", "type": "color" + }, + "transparent": { + "value": "transparent", + "type": "color" } } }, @@ -480,4 +484,4 @@ } } } -} \ No newline at end of file +} diff --git a/data/light.json b/data/light.json new file mode 100644 index 00000000..7621032e --- /dev/null +++ b/data/light.json @@ -0,0 +1,118 @@ +{ + "colors": { + "text": { + "base": { + "value": "{colors.grey.800}", + "type": "color" + }, + "emphasis": { + "value": "{colors.grey.700}", + "type": "color" + }, + "subdued": { + "value": "{colors.grey.500}", + "type": "color" + } + }, + "surface": { + "surfaceLevel0": { + "value": "{colors.grey.200}", + "type": "color" + }, + "surfaceLevel1": { + "value": "{colors.shades.white}", + "type": "color" + }, + "surfaceLevel2": { + "value": "{colors.grey.100}", + "type": "color" + }, + "surfaceLevel3": { + "value": "{colors.shades.white}", + "type": "color" + } + }, + "primary": { + "text": { + "base": { + "value": "{colors.green.600}", + "type": "color" + }, + "hover": { + "value": "{colors.green.700}", + "type": "color" + }, + "active": { + "value": "{colors.green.800}", + "type": "color" + } + }, + "background": { + "base": { + "value": "{colors.green.600}", + "type": "color" + }, + "hover": { + "value": "{colors.green.700}", + "type": "color" + }, + "active": { + "value": "{colors.green.800}", + "type": "color" + }, + "muted": { + "value": "{colors.green.200}", + "type": "color" + }, + "mutedHover": { + "value": "{colors.green.300}", + "type": "color" + }, + "mutedActive": { + "value": "{colors.green.400}", + "type": "color" + }, + "box": { + "value": "{colors.green.100}", + "type": "color" + } + }, + "border": { + "base": { + "value": "{colors.green.600}", + "type": "color" + }, + "hover": { + "value": "{colors.green.700}", + "type": "color" + }, + "active": { + "value": "{colors.green.800}", + "type": "color" + } + } + }, + "disabled": { + "text": { + "value": "{colors.grey.500}", + "type": "color" + }, + "background": { + "value": "{colors.grey.200}", + "type": "color" + }, + "nakedContent": { + "value": "{colors.disabled.background}", + "type": "color" + }, + "nakedBackground": { + "value": "{colors.shades.transparent}", + "type": "color" + }, + "border": { + "value": "{colors.grey.400}", + "type": "color" + } + } + } +} diff --git a/package.json b/package.json index 2256ecf1..29021545 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,9 @@ ], "scripts": { "build": "node build.js", - "transform-base": "npx token-transformer data data/transformed-core.json core --expandTypography", - "transform": "yarn transform-base" + "transform-core": "npx token-transformer data data/transformed-core.json core --expandTypography", + "transform-light": "npx token-transformer data data/transformed-light.json core,light", + "transform": "yarn transform-core && yarn transform-light" }, "devDependencies": { "style-dictionary": "^3.7.0", From 97c85607c629808baafec921ad2b551e96ed9aae Mon Sep 17 00:00:00 2001 From: CCAyl Date: Thu, 4 Aug 2022 20:30:27 +0000 Subject: [PATCH 02/11] Transformed tokens --- data/transformed-core.json | 4 + data/transformed-light.json | 601 ++++++++++++++++++++++++++++++++++++ 2 files changed, 605 insertions(+) create mode 100644 data/transformed-light.json diff --git a/data/transformed-core.json b/data/transformed-core.json index 4d6e912c..f56bc2bc 100644 --- a/data/transformed-core.json +++ b/data/transformed-core.json @@ -212,6 +212,10 @@ "black": { "value": "#000000", "type": "color" + }, + "transparent": { + "value": "transparent", + "type": "color" } } }, diff --git a/data/transformed-light.json b/data/transformed-light.json new file mode 100644 index 00000000..cdf5a798 --- /dev/null +++ b/data/transformed-light.json @@ -0,0 +1,601 @@ +{ + "colors": { + "text": { + "base": { + "value": "#2E3A47", + "type": "color" + }, + "emphasis": { + "value": "#36485C", + "type": "color" + }, + "subdued": { + "value": "#596D84", + "type": "color" + } + }, + "surface": { + "surfaceLevel0": { + "value": "#F5F7FA", + "type": "color" + }, + "surfaceLevel1": { + "value": "#FFFFFF", + "type": "color" + }, + "surfaceLevel2": { + "value": "#FCFEFF", + "type": "color" + }, + "surfaceLevel3": { + "value": "#FFFFFF", + "type": "color" + } + }, + "primary": { + "text": { + "base": { + "value": "#307553", + "type": "color" + }, + "hover": { + "value": "#275E43", + "type": "color" + }, + "active": { + "value": "#244C38", + "type": "color" + } + }, + "background": { + "base": { + "value": "#307553", + "type": "color" + }, + "hover": { + "value": "#275E43", + "type": "color" + }, + "active": { + "value": "#244C38", + "type": "color" + }, + "muted": { + "value": "#EBF2EF", + "type": "color" + }, + "mutedHover": { + "value": "#D1E0D9", + "type": "color" + }, + "mutedActive": { + "value": "#B6CFC2", + "type": "color" + }, + "box": { + "value": "#FAFFFC", + "type": "color" + } + }, + "border": { + "base": { + "value": "#307553", + "type": "color" + }, + "hover": { + "value": "#275E43", + "type": "color" + }, + "active": { + "value": "#244C38", + "type": "color" + } + } + }, + "disabled": { + "text": { + "value": "#596D84", + "type": "color" + }, + "background": { + "value": "#F5F7FA", + "type": "color" + }, + "nakedContent": { + "value": "#F5F7FA", + "type": "color" + }, + "nakedBackground": { + "value": "transparent", + "type": "color" + }, + "border": { + "value": "#C8D3E0", + "type": "color" + } + }, + "green": { + "100": { + "value": "#FAFFFC", + "type": "color" + }, + "200": { + "value": "#EBF2EF", + "type": "color" + }, + "300": { + "value": "#D1E0D9", + "type": "color" + }, + "400": { + "value": "#B6CFC2", + "type": "color" + }, + "500": { + "value": "#86B09B", + "type": "color" + }, + "600": { + "value": "#307553", + "type": "color" + }, + "700": { + "value": "#275E43", + "type": "color" + }, + "800": { + "value": "#244C38", + "type": "color" + } + }, + "blue": { + "100": { + "value": "#F5FAFF", + "type": "color" + }, + "200": { + "value": "#E6F1FC", + "type": "color" + }, + "300": { + "value": "#C0D8F0", + "type": "color" + }, + "400": { + "value": "#88B1D9", + "type": "color" + }, + "500": { + "value": "#5D96CF", + "type": "color" + }, + "600": { + "value": "#3971A8", + "type": "color" + }, + "700": { + "value": "#21588F", + "type": "color" + }, + "800": { + "value": "#194673", + "type": "color" + } + }, + "red": { + "100": { + "value": "#FFF7F9", + "type": "color" + }, + "200": { + "value": "#FEEEF2", + "type": "color" + }, + "300": { + "value": "#F0C4CD", + "type": "color" + }, + "400": { + "value": "#E296A6", + "type": "color" + }, + "500": { + "value": "#C6516A", + "type": "color" + }, + "600": { + "value": "#AF2645", + "type": "color" + }, + "700": { + "value": "#980B29", + "type": "color" + }, + "800": { + "value": "#800D25", + "type": "color" + } + }, + "purple": { + "100": { + "value": "#FCFAFF", + "type": "color" + }, + "200": { + "value": "#F2ECFE", + "type": "color" + }, + "300": { + "value": "#D7CEE9", + "type": "color" + }, + "400": { + "value": "#B9ABD5", + "type": "color" + }, + "500": { + "value": "#8471AB", + "type": "color" + }, + "600": { + "value": "#533E7D", + "type": "color" + }, + "700": { + "value": "#3B2566", + "type": "color" + }, + "800": { + "value": "#2A174F", + "type": "color" + } + }, + "orange": { + "100": { + "value": "#FFFAF5", + "type": "color" + }, + "200": { + "value": "#FFF3E8", + "type": "color" + }, + "300": { + "value": "#F3D8C0", + "type": "color" + }, + "400": { + "value": "#E7B88F", + "type": "color" + }, + "500": { + "value": "#CF8545", + "type": "color" + }, + "600": { + "value": "#B4631D", + "type": "color" + }, + "700": { + "value": "#8E4D14", + "type": "color" + }, + "800": { + "value": "#784213", + "type": "color" + } + }, + "grey": { + "100": { + "value": "#FCFEFF", + "type": "color" + }, + "200": { + "value": "#F5F7FA", + "type": "color" + }, + "300": { + "value": "#E6EDF5", + "type": "color" + }, + "400": { + "value": "#C8D3E0", + "type": "color" + }, + "500": { + "value": "#596D84", + "type": "color" + }, + "600": { + "value": "#475A70", + "type": "color" + }, + "700": { + "value": "#36485C", + "type": "color" + }, + "800": { + "value": "#2E3A47", + "type": "color" + } + }, + "shades": { + "white": { + "value": "#FFFFFF", + "type": "color" + }, + "black": { + "value": "#000000", + "type": "color" + }, + "transparent": { + "value": "transparent", + "type": "color" + } + } + }, + "typography": { + "letterSpacing": { + "base": { + "value": 0, + "type": "letterSpacing" + } + }, + "paragraphSpacing": { + "base": { + "value": 0, + "type": "paragraphSpacing" + } + }, + "textDecoration": { + "base": { + "value": "none", + "type": "textDecoration" + } + }, + "textCase": { + "base": { + "value": "none", + "type": "textCase" + } + }, + "size": { + "desktop": { + "3xlarge": { + "value": "40px", + "type": "fontSizes" + }, + "2xlarge": { + "value": "32px", + "type": "fontSizes" + }, + "xlarge": { + "value": "24px", + "type": "fontSizes" + }, + "large": { + "value": "20px", + "type": "fontSizes" + }, + "normal": { + "value": "16px", + "type": "fontSizes" + }, + "small": { + "value": "14px", + "type": "fontSizes" + }, + "xsmall": { + "value": "12px", + "type": "fontSizes" + } + }, + "mobile": { + "3xlarge": { + "value": "32px", + "type": "fontSizes" + }, + "2xlarge": { + "value": "28px", + "type": "fontSizes" + }, + "xlarge": { + "value": "22px", + "type": "fontSizes" + } + } + }, + "lineHeight": { + "xlarge": { + "value": "40px", + "type": "lineHeights" + }, + "large": { + "value": "32px", + "type": "lineHeights" + }, + "normal": { + "value": "24px", + "type": "lineHeights" + }, + "small": { + "value": "16px", + "type": "lineHeights" + } + }, + "fontFamily": { + "sansSerif": { + "value": "Mulish", + "type": "fontFamilies" + } + }, + "weight": { + "semiBold": { + "value": 700, + "type": "fontWeights" + }, + "base": { + "value": 500, + "type": "fontWeights" + }, + "light": { + "value": 400, + "type": "fontWeights" + }, + "strong": { + "value": 600, + "type": "fontWeights" + }, + "bold": { + "value": 900, + "type": "fontWeights" + } + }, + "desktop": { + "h1": { + "value": { + "fontFamily": "Mulish", + "fontWeight": 700, + "lineHeight": "40px", + "fontSize": "40px", + "letterSpacing": 0, + "paragraphSpacing": 0, + "textDecoration": "none", + "textCase": "none" + }, + "type": "typography" + }, + "h2": { + "value": { + "fontFamily": "Mulish", + "fontWeight": 700, + "lineHeight": "40px", + "fontSize": "32px", + "letterSpacing": 0, + "paragraphSpacing": 0, + "textDecoration": "none", + "textCase": "none" + }, + "type": "typography" + }, + "h3": { + "value": { + "fontFamily": "Mulish", + "fontWeight": 700, + "lineHeight": "32px", + "fontSize": "24px", + "letterSpacing": 0, + "paragraphSpacing": 0, + "textDecoration": "none", + "textCase": "none" + }, + "type": "typography" + }, + "h4": { + "value": { + "fontFamily": "Mulish", + "fontWeight": 700, + "lineHeight": "24px", + "fontSize": "20px", + "letterSpacing": 0, + "paragraphSpacing": 0, + "textDecoration": "none", + "textCase": "none" + }, + "type": "typography" + }, + "h5": { + "value": { + "fontFamily": "Mulish", + "fontWeight": 700, + "lineHeight": "24px", + "fontSize": "16px", + "letterSpacing": 0, + "paragraphSpacing": 0, + "textDecoration": "none", + "textCase": "none" + }, + "type": "typography" + }, + "body": { + "value": { + "fontFamily": "Mulish", + "fontWeight": 500, + "lineHeight": "24px", + "fontSize": "16px", + "letterSpacing": 0, + "paragraphSpacing": 0, + "textDecoration": "none", + "textCase": "none" + }, + "type": "typography" + }, + "footnote": { + "value": { + "fontFamily": "Mulish", + "fontWeight": 500, + "lineHeight": "16px", + "fontSize": "14px", + "letterSpacing": 0, + "paragraphSpacing": 0, + "textDecoration": "none", + "textCase": "none" + }, + "type": "typography" + }, + "caption": { + "type": "typography", + "value": { + "fontFamily": "Mulish", + "fontWeight": 500, + "lineHeight": "16px", + "fontSize": "12px", + "letterSpacing": 0, + "paragraphSpacing": 0, + "textDecoration": "none", + "textCase": "none" + } + } + }, + "mobile": { + "h1": { + "value": { + "fontFamily": "Mulish", + "fontWeight": 700, + "lineHeight": "40px", + "fontSize": "32px", + "letterSpacing": 0, + "paragraphSpacing": 0, + "textDecoration": "none", + "textCase": "none" + }, + "type": "typography" + }, + "h2": { + "value": { + "fontFamily": "Mulish", + "fontWeight": 700, + "lineHeight": "32px", + "fontSize": "28px", + "letterSpacing": 0, + "paragraphSpacing": 0, + "textDecoration": "none", + "textCase": "none" + }, + "type": "typography" + }, + "h3": { + "value": { + "fontFamily": "Mulish", + "fontWeight": 700, + "lineHeight": "32px", + "fontSize": "22px", + "letterSpacing": 0, + "paragraphSpacing": 0, + "textDecoration": "none", + "textCase": "none" + }, + "type": "typography" + } + } + } +} \ No newline at end of file From bdce470ec687ddba7802a8897f6c834b0faeab0d Mon Sep 17 00:00:00 2001 From: CCAyl Date: Thu, 4 Aug 2022 20:30:58 +0000 Subject: [PATCH 03/11] Built and updated design tokens --- build/native/colors.d.ts | 5 +++-- build/native/colors.js | 5 +++-- build/native/typography.d.ts | 2 +- build/native/typography.js | 2 +- build/scss/colors.scss | 5 +++-- build/scss/typography.scss | 2 +- build/ts/colors.d.ts | 5 +++-- build/ts/colors.js | 5 +++-- build/ts/typography.d.ts | 2 +- build/ts/typography.js | 2 +- 10 files changed, 20 insertions(+), 15 deletions(-) diff --git a/build/native/colors.d.ts b/build/native/colors.d.ts index 1260cc67..8ec003f8 100644 --- a/build/native/colors.d.ts +++ b/build/native/colors.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 14:54:26 GMT + * Generated on Thu, 04 Aug 2022 20:30:57 GMT */ export const green100 : string; @@ -52,4 +52,5 @@ export const grey600 : string; export const grey700 : string; export const grey800 : string; export const shadeswhite : string; -export const shadesblack : string; \ No newline at end of file +export const shadesblack : string; +export const shadestransparent : string; \ No newline at end of file diff --git a/build/native/colors.js b/build/native/colors.js index 99d9f1cb..1aa3d138 100644 --- a/build/native/colors.js +++ b/build/native/colors.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 14:54:26 GMT + * Generated on Thu, 04 Aug 2022 20:30:57 GMT */ module.exports = { @@ -53,5 +53,6 @@ module.exports = { "grey700": "#36485C", "grey800": "#2E3A47", "shadeswhite": "#FFFFFF", - "shadesblack": "#000000" + "shadesblack": "#000000", + "shadestransparent": "transparent" }; \ No newline at end of file diff --git a/build/native/typography.d.ts b/build/native/typography.d.ts index 7ea0bb6b..859b24c2 100644 --- a/build/native/typography.d.ts +++ b/build/native/typography.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 14:54:26 GMT + * Generated on Thu, 04 Aug 2022 20:30:57 GMT */ export const letterSpacingBase : number; diff --git a/build/native/typography.js b/build/native/typography.js index 9aa132d2..def6c305 100644 --- a/build/native/typography.js +++ b/build/native/typography.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 14:54:26 GMT + * Generated on Thu, 04 Aug 2022 20:30:57 GMT */ module.exports = { diff --git a/build/scss/colors.scss b/build/scss/colors.scss index 627f6e24..c716c288 100644 --- a/build/scss/colors.scss +++ b/build/scss/colors.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 04 Aug 2022 14:54:26 GMT +// Generated on Thu, 04 Aug 2022 20:30:57 GMT $green100: #FAFFFC; $green200: #EBF2EF; @@ -51,4 +51,5 @@ $grey600: #475A70; $grey700: #36485C; $grey800: #2E3A47; $shadeswhite: #FFFFFF; -$shadesblack: #000000; \ No newline at end of file +$shadesblack: #000000; +$shadestransparent: transparent; \ No newline at end of file diff --git a/build/scss/typography.scss b/build/scss/typography.scss index 2c8d277c..91dfb022 100644 --- a/build/scss/typography.scss +++ b/build/scss/typography.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 04 Aug 2022 14:54:26 GMT +// Generated on Thu, 04 Aug 2022 20:30:57 GMT $letterSpacingBase: 0; $paragraphSpacingBase: 0; diff --git a/build/ts/colors.d.ts b/build/ts/colors.d.ts index 1260cc67..8ec003f8 100644 --- a/build/ts/colors.d.ts +++ b/build/ts/colors.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 14:54:26 GMT + * Generated on Thu, 04 Aug 2022 20:30:57 GMT */ export const green100 : string; @@ -52,4 +52,5 @@ export const grey600 : string; export const grey700 : string; export const grey800 : string; export const shadeswhite : string; -export const shadesblack : string; \ No newline at end of file +export const shadesblack : string; +export const shadestransparent : string; \ No newline at end of file diff --git a/build/ts/colors.js b/build/ts/colors.js index 99d9f1cb..1aa3d138 100644 --- a/build/ts/colors.js +++ b/build/ts/colors.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 14:54:26 GMT + * Generated on Thu, 04 Aug 2022 20:30:57 GMT */ module.exports = { @@ -53,5 +53,6 @@ module.exports = { "grey700": "#36485C", "grey800": "#2E3A47", "shadeswhite": "#FFFFFF", - "shadesblack": "#000000" + "shadesblack": "#000000", + "shadestransparent": "transparent" }; \ No newline at end of file diff --git a/build/ts/typography.d.ts b/build/ts/typography.d.ts index 75d3cd48..51b6b02e 100644 --- a/build/ts/typography.d.ts +++ b/build/ts/typography.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 14:54:26 GMT + * Generated on Thu, 04 Aug 2022 20:30:57 GMT */ export const letterSpacingBase : number; diff --git a/build/ts/typography.js b/build/ts/typography.js index b6315ff5..93f7a610 100644 --- a/build/ts/typography.js +++ b/build/ts/typography.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 14:54:26 GMT + * Generated on Thu, 04 Aug 2022 20:30:57 GMT */ module.exports = { From c242ad29fa8237b162e739dec957895deea12b05 Mon Sep 17 00:00:00 2001 From: Catherine Aylward Date: Thu, 4 Aug 2022 16:34:44 -0400 Subject: [PATCH 04/11] fix light transform --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 29021545..9a634eac 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "scripts": { "build": "node build.js", "transform-core": "npx token-transformer data data/transformed-core.json core --expandTypography", - "transform-light": "npx token-transformer data data/transformed-light.json core,light", + "transform-light": "npx token-transformer data data/transformed-light.json core,light core", "transform": "yarn transform-core && yarn transform-light" }, "devDependencies": { From ed549a56082e4df1fc0d7702651d0f1cd145d8ca Mon Sep 17 00:00:00 2001 From: CCAyl Date: Thu, 4 Aug 2022 20:57:04 +0000 Subject: [PATCH 05/11] Transformed tokens --- data/transformed-light.json | 483 ------------------------------------ 1 file changed, 483 deletions(-) diff --git a/data/transformed-light.json b/data/transformed-light.json index cdf5a798..736647c6 100644 --- a/data/transformed-light.json +++ b/data/transformed-light.json @@ -113,489 +113,6 @@ "value": "#C8D3E0", "type": "color" } - }, - "green": { - "100": { - "value": "#FAFFFC", - "type": "color" - }, - "200": { - "value": "#EBF2EF", - "type": "color" - }, - "300": { - "value": "#D1E0D9", - "type": "color" - }, - "400": { - "value": "#B6CFC2", - "type": "color" - }, - "500": { - "value": "#86B09B", - "type": "color" - }, - "600": { - "value": "#307553", - "type": "color" - }, - "700": { - "value": "#275E43", - "type": "color" - }, - "800": { - "value": "#244C38", - "type": "color" - } - }, - "blue": { - "100": { - "value": "#F5FAFF", - "type": "color" - }, - "200": { - "value": "#E6F1FC", - "type": "color" - }, - "300": { - "value": "#C0D8F0", - "type": "color" - }, - "400": { - "value": "#88B1D9", - "type": "color" - }, - "500": { - "value": "#5D96CF", - "type": "color" - }, - "600": { - "value": "#3971A8", - "type": "color" - }, - "700": { - "value": "#21588F", - "type": "color" - }, - "800": { - "value": "#194673", - "type": "color" - } - }, - "red": { - "100": { - "value": "#FFF7F9", - "type": "color" - }, - "200": { - "value": "#FEEEF2", - "type": "color" - }, - "300": { - "value": "#F0C4CD", - "type": "color" - }, - "400": { - "value": "#E296A6", - "type": "color" - }, - "500": { - "value": "#C6516A", - "type": "color" - }, - "600": { - "value": "#AF2645", - "type": "color" - }, - "700": { - "value": "#980B29", - "type": "color" - }, - "800": { - "value": "#800D25", - "type": "color" - } - }, - "purple": { - "100": { - "value": "#FCFAFF", - "type": "color" - }, - "200": { - "value": "#F2ECFE", - "type": "color" - }, - "300": { - "value": "#D7CEE9", - "type": "color" - }, - "400": { - "value": "#B9ABD5", - "type": "color" - }, - "500": { - "value": "#8471AB", - "type": "color" - }, - "600": { - "value": "#533E7D", - "type": "color" - }, - "700": { - "value": "#3B2566", - "type": "color" - }, - "800": { - "value": "#2A174F", - "type": "color" - } - }, - "orange": { - "100": { - "value": "#FFFAF5", - "type": "color" - }, - "200": { - "value": "#FFF3E8", - "type": "color" - }, - "300": { - "value": "#F3D8C0", - "type": "color" - }, - "400": { - "value": "#E7B88F", - "type": "color" - }, - "500": { - "value": "#CF8545", - "type": "color" - }, - "600": { - "value": "#B4631D", - "type": "color" - }, - "700": { - "value": "#8E4D14", - "type": "color" - }, - "800": { - "value": "#784213", - "type": "color" - } - }, - "grey": { - "100": { - "value": "#FCFEFF", - "type": "color" - }, - "200": { - "value": "#F5F7FA", - "type": "color" - }, - "300": { - "value": "#E6EDF5", - "type": "color" - }, - "400": { - "value": "#C8D3E0", - "type": "color" - }, - "500": { - "value": "#596D84", - "type": "color" - }, - "600": { - "value": "#475A70", - "type": "color" - }, - "700": { - "value": "#36485C", - "type": "color" - }, - "800": { - "value": "#2E3A47", - "type": "color" - } - }, - "shades": { - "white": { - "value": "#FFFFFF", - "type": "color" - }, - "black": { - "value": "#000000", - "type": "color" - }, - "transparent": { - "value": "transparent", - "type": "color" - } - } - }, - "typography": { - "letterSpacing": { - "base": { - "value": 0, - "type": "letterSpacing" - } - }, - "paragraphSpacing": { - "base": { - "value": 0, - "type": "paragraphSpacing" - } - }, - "textDecoration": { - "base": { - "value": "none", - "type": "textDecoration" - } - }, - "textCase": { - "base": { - "value": "none", - "type": "textCase" - } - }, - "size": { - "desktop": { - "3xlarge": { - "value": "40px", - "type": "fontSizes" - }, - "2xlarge": { - "value": "32px", - "type": "fontSizes" - }, - "xlarge": { - "value": "24px", - "type": "fontSizes" - }, - "large": { - "value": "20px", - "type": "fontSizes" - }, - "normal": { - "value": "16px", - "type": "fontSizes" - }, - "small": { - "value": "14px", - "type": "fontSizes" - }, - "xsmall": { - "value": "12px", - "type": "fontSizes" - } - }, - "mobile": { - "3xlarge": { - "value": "32px", - "type": "fontSizes" - }, - "2xlarge": { - "value": "28px", - "type": "fontSizes" - }, - "xlarge": { - "value": "22px", - "type": "fontSizes" - } - } - }, - "lineHeight": { - "xlarge": { - "value": "40px", - "type": "lineHeights" - }, - "large": { - "value": "32px", - "type": "lineHeights" - }, - "normal": { - "value": "24px", - "type": "lineHeights" - }, - "small": { - "value": "16px", - "type": "lineHeights" - } - }, - "fontFamily": { - "sansSerif": { - "value": "Mulish", - "type": "fontFamilies" - } - }, - "weight": { - "semiBold": { - "value": 700, - "type": "fontWeights" - }, - "base": { - "value": 500, - "type": "fontWeights" - }, - "light": { - "value": 400, - "type": "fontWeights" - }, - "strong": { - "value": 600, - "type": "fontWeights" - }, - "bold": { - "value": 900, - "type": "fontWeights" - } - }, - "desktop": { - "h1": { - "value": { - "fontFamily": "Mulish", - "fontWeight": 700, - "lineHeight": "40px", - "fontSize": "40px", - "letterSpacing": 0, - "paragraphSpacing": 0, - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "h2": { - "value": { - "fontFamily": "Mulish", - "fontWeight": 700, - "lineHeight": "40px", - "fontSize": "32px", - "letterSpacing": 0, - "paragraphSpacing": 0, - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "h3": { - "value": { - "fontFamily": "Mulish", - "fontWeight": 700, - "lineHeight": "32px", - "fontSize": "24px", - "letterSpacing": 0, - "paragraphSpacing": 0, - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "h4": { - "value": { - "fontFamily": "Mulish", - "fontWeight": 700, - "lineHeight": "24px", - "fontSize": "20px", - "letterSpacing": 0, - "paragraphSpacing": 0, - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "h5": { - "value": { - "fontFamily": "Mulish", - "fontWeight": 700, - "lineHeight": "24px", - "fontSize": "16px", - "letterSpacing": 0, - "paragraphSpacing": 0, - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "body": { - "value": { - "fontFamily": "Mulish", - "fontWeight": 500, - "lineHeight": "24px", - "fontSize": "16px", - "letterSpacing": 0, - "paragraphSpacing": 0, - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "footnote": { - "value": { - "fontFamily": "Mulish", - "fontWeight": 500, - "lineHeight": "16px", - "fontSize": "14px", - "letterSpacing": 0, - "paragraphSpacing": 0, - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "caption": { - "type": "typography", - "value": { - "fontFamily": "Mulish", - "fontWeight": 500, - "lineHeight": "16px", - "fontSize": "12px", - "letterSpacing": 0, - "paragraphSpacing": 0, - "textDecoration": "none", - "textCase": "none" - } - } - }, - "mobile": { - "h1": { - "value": { - "fontFamily": "Mulish", - "fontWeight": 700, - "lineHeight": "40px", - "fontSize": "32px", - "letterSpacing": 0, - "paragraphSpacing": 0, - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "h2": { - "value": { - "fontFamily": "Mulish", - "fontWeight": 700, - "lineHeight": "32px", - "fontSize": "28px", - "letterSpacing": 0, - "paragraphSpacing": 0, - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "h3": { - "value": { - "fontFamily": "Mulish", - "fontWeight": 700, - "lineHeight": "32px", - "fontSize": "22px", - "letterSpacing": 0, - "paragraphSpacing": 0, - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } } } } \ No newline at end of file From 18a165109258a69faaa6b9323953e99f4568c479 Mon Sep 17 00:00:00 2001 From: CCAyl Date: Thu, 4 Aug 2022 20:57:22 +0000 Subject: [PATCH 06/11] Built and updated design tokens --- build/native/colors.d.ts | 2 +- build/native/colors.js | 2 +- build/native/typography.d.ts | 2 +- build/native/typography.js | 2 +- build/scss/colors.scss | 2 +- build/scss/typography.scss | 2 +- build/ts/colors.d.ts | 2 +- build/ts/colors.js | 2 +- build/ts/typography.d.ts | 2 +- build/ts/typography.js | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/build/native/colors.d.ts b/build/native/colors.d.ts index 8ec003f8..e4f8ce10 100644 --- a/build/native/colors.d.ts +++ b/build/native/colors.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:30:57 GMT + * Generated on Thu, 04 Aug 2022 20:57:22 GMT */ export const green100 : string; diff --git a/build/native/colors.js b/build/native/colors.js index 1aa3d138..dbe0e0bc 100644 --- a/build/native/colors.js +++ b/build/native/colors.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:30:57 GMT + * Generated on Thu, 04 Aug 2022 20:57:22 GMT */ module.exports = { diff --git a/build/native/typography.d.ts b/build/native/typography.d.ts index 859b24c2..cdfd87cb 100644 --- a/build/native/typography.d.ts +++ b/build/native/typography.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:30:57 GMT + * Generated on Thu, 04 Aug 2022 20:57:22 GMT */ export const letterSpacingBase : number; diff --git a/build/native/typography.js b/build/native/typography.js index def6c305..47b2a9e4 100644 --- a/build/native/typography.js +++ b/build/native/typography.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:30:57 GMT + * Generated on Thu, 04 Aug 2022 20:57:22 GMT */ module.exports = { diff --git a/build/scss/colors.scss b/build/scss/colors.scss index c716c288..155a68c3 100644 --- a/build/scss/colors.scss +++ b/build/scss/colors.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 04 Aug 2022 20:30:57 GMT +// Generated on Thu, 04 Aug 2022 20:57:22 GMT $green100: #FAFFFC; $green200: #EBF2EF; diff --git a/build/scss/typography.scss b/build/scss/typography.scss index 91dfb022..6ec69f7d 100644 --- a/build/scss/typography.scss +++ b/build/scss/typography.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 04 Aug 2022 20:30:57 GMT +// Generated on Thu, 04 Aug 2022 20:57:22 GMT $letterSpacingBase: 0; $paragraphSpacingBase: 0; diff --git a/build/ts/colors.d.ts b/build/ts/colors.d.ts index 8ec003f8..e4f8ce10 100644 --- a/build/ts/colors.d.ts +++ b/build/ts/colors.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:30:57 GMT + * Generated on Thu, 04 Aug 2022 20:57:22 GMT */ export const green100 : string; diff --git a/build/ts/colors.js b/build/ts/colors.js index 1aa3d138..dbe0e0bc 100644 --- a/build/ts/colors.js +++ b/build/ts/colors.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:30:57 GMT + * Generated on Thu, 04 Aug 2022 20:57:22 GMT */ module.exports = { diff --git a/build/ts/typography.d.ts b/build/ts/typography.d.ts index 51b6b02e..a87e6f64 100644 --- a/build/ts/typography.d.ts +++ b/build/ts/typography.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:30:57 GMT + * Generated on Thu, 04 Aug 2022 20:57:22 GMT */ export const letterSpacingBase : number; diff --git a/build/ts/typography.js b/build/ts/typography.js index 93f7a610..414e8cdb 100644 --- a/build/ts/typography.js +++ b/build/ts/typography.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:30:57 GMT + * Generated on Thu, 04 Aug 2022 20:57:22 GMT */ module.exports = { From 130cefb832357167609a4424e0f22dfd36cdf298 Mon Sep 17 00:00:00 2001 From: Catherine Aylward Date: Fri, 5 Aug 2022 08:19:01 -0400 Subject: [PATCH 07/11] rm extra surface --- data/light.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/light.json b/data/light.json index 7621032e..1b95e354 100644 --- a/data/light.json +++ b/data/light.json @@ -15,19 +15,19 @@ } }, "surface": { - "surfaceLevel0": { + "level0": { "value": "{colors.grey.200}", "type": "color" }, - "surfaceLevel1": { + "level1": { "value": "{colors.shades.white}", "type": "color" }, - "surfaceLevel2": { + "level2": { "value": "{colors.grey.100}", "type": "color" }, - "surfaceLevel3": { + "level3": { "value": "{colors.shades.white}", "type": "color" } From 8177fccc2dfe726a193c597285aa4ece352dbd4d Mon Sep 17 00:00:00 2001 From: CCAyl Date: Fri, 5 Aug 2022 12:19:27 +0000 Subject: [PATCH 08/11] Transformed tokens --- data/transformed-light.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/transformed-light.json b/data/transformed-light.json index 736647c6..b0bf7e5a 100644 --- a/data/transformed-light.json +++ b/data/transformed-light.json @@ -15,19 +15,19 @@ } }, "surface": { - "surfaceLevel0": { + "level0": { "value": "#F5F7FA", "type": "color" }, - "surfaceLevel1": { + "level1": { "value": "#FFFFFF", "type": "color" }, - "surfaceLevel2": { + "level2": { "value": "#FCFEFF", "type": "color" }, - "surfaceLevel3": { + "level3": { "value": "#FFFFFF", "type": "color" } From 44b7d5f781be0517e9bdfdaec04d8294ea5f7836 Mon Sep 17 00:00:00 2001 From: CCAyl Date: Fri, 5 Aug 2022 12:19:44 +0000 Subject: [PATCH 09/11] Built and updated design tokens --- build/native/colors.d.ts | 2 +- build/native/colors.js | 2 +- build/native/typography.d.ts | 2 +- build/native/typography.js | 2 +- build/scss/colors.scss | 2 +- build/scss/typography.scss | 2 +- build/ts/colors.d.ts | 2 +- build/ts/colors.js | 2 +- build/ts/typography.d.ts | 2 +- build/ts/typography.js | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/build/native/colors.d.ts b/build/native/colors.d.ts index e4f8ce10..ea229202 100644 --- a/build/native/colors.d.ts +++ b/build/native/colors.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:57:22 GMT + * Generated on Fri, 05 Aug 2022 12:19:44 GMT */ export const green100 : string; diff --git a/build/native/colors.js b/build/native/colors.js index dbe0e0bc..54778712 100644 --- a/build/native/colors.js +++ b/build/native/colors.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:57:22 GMT + * Generated on Fri, 05 Aug 2022 12:19:44 GMT */ module.exports = { diff --git a/build/native/typography.d.ts b/build/native/typography.d.ts index cdfd87cb..8694dbe8 100644 --- a/build/native/typography.d.ts +++ b/build/native/typography.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:57:22 GMT + * Generated on Fri, 05 Aug 2022 12:19:44 GMT */ export const letterSpacingBase : number; diff --git a/build/native/typography.js b/build/native/typography.js index 47b2a9e4..f476f0fd 100644 --- a/build/native/typography.js +++ b/build/native/typography.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:57:22 GMT + * Generated on Fri, 05 Aug 2022 12:19:44 GMT */ module.exports = { diff --git a/build/scss/colors.scss b/build/scss/colors.scss index 155a68c3..b0b8bebe 100644 --- a/build/scss/colors.scss +++ b/build/scss/colors.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 04 Aug 2022 20:57:22 GMT +// Generated on Fri, 05 Aug 2022 12:19:44 GMT $green100: #FAFFFC; $green200: #EBF2EF; diff --git a/build/scss/typography.scss b/build/scss/typography.scss index 6ec69f7d..d3f49bbf 100644 --- a/build/scss/typography.scss +++ b/build/scss/typography.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 04 Aug 2022 20:57:22 GMT +// Generated on Fri, 05 Aug 2022 12:19:44 GMT $letterSpacingBase: 0; $paragraphSpacingBase: 0; diff --git a/build/ts/colors.d.ts b/build/ts/colors.d.ts index e4f8ce10..ea229202 100644 --- a/build/ts/colors.d.ts +++ b/build/ts/colors.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:57:22 GMT + * Generated on Fri, 05 Aug 2022 12:19:44 GMT */ export const green100 : string; diff --git a/build/ts/colors.js b/build/ts/colors.js index dbe0e0bc..54778712 100644 --- a/build/ts/colors.js +++ b/build/ts/colors.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:57:22 GMT + * Generated on Fri, 05 Aug 2022 12:19:44 GMT */ module.exports = { diff --git a/build/ts/typography.d.ts b/build/ts/typography.d.ts index a87e6f64..32e7b7c3 100644 --- a/build/ts/typography.d.ts +++ b/build/ts/typography.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:57:22 GMT + * Generated on Fri, 05 Aug 2022 12:19:44 GMT */ export const letterSpacingBase : number; diff --git a/build/ts/typography.js b/build/ts/typography.js index 414e8cdb..4269214a 100644 --- a/build/ts/typography.js +++ b/build/ts/typography.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 20:57:22 GMT + * Generated on Fri, 05 Aug 2022 12:19:44 GMT */ module.exports = { From 148f2f1d10bfbf209f21feb521f0eba44389cfdb Mon Sep 17 00:00:00 2001 From: CCAyl Date: Fri, 5 Aug 2022 14:02:22 +0000 Subject: [PATCH 10/11] Built and updated design tokens --- build/native/colors.d.ts | 2 +- build/native/colors.js | 2 +- build/native/typography.d.ts | 2 +- build/native/typography.js | 2 +- build/scss/colors.scss | 2 +- build/scss/typography.scss | 2 +- build/ts/colors.d.ts | 2 +- build/ts/colors.js | 2 +- build/ts/typography.d.ts | 2 +- build/ts/typography.js | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/build/native/colors.d.ts b/build/native/colors.d.ts index ea229202..e5018278 100644 --- a/build/native/colors.d.ts +++ b/build/native/colors.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 05 Aug 2022 12:19:44 GMT + * Generated on Fri, 05 Aug 2022 14:02:20 GMT */ export const green100 : string; diff --git a/build/native/colors.js b/build/native/colors.js index 54778712..25ab974e 100644 --- a/build/native/colors.js +++ b/build/native/colors.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 05 Aug 2022 12:19:44 GMT + * Generated on Fri, 05 Aug 2022 14:02:20 GMT */ module.exports = { diff --git a/build/native/typography.d.ts b/build/native/typography.d.ts index 8694dbe8..1bf73b96 100644 --- a/build/native/typography.d.ts +++ b/build/native/typography.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 05 Aug 2022 12:19:44 GMT + * Generated on Fri, 05 Aug 2022 14:02:20 GMT */ export const letterSpacingBase : number; diff --git a/build/native/typography.js b/build/native/typography.js index f476f0fd..93fd3242 100644 --- a/build/native/typography.js +++ b/build/native/typography.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 05 Aug 2022 12:19:44 GMT + * Generated on Fri, 05 Aug 2022 14:02:20 GMT */ module.exports = { diff --git a/build/scss/colors.scss b/build/scss/colors.scss index b0b8bebe..f3d250e4 100644 --- a/build/scss/colors.scss +++ b/build/scss/colors.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Fri, 05 Aug 2022 12:19:44 GMT +// Generated on Fri, 05 Aug 2022 14:02:20 GMT $green100: #FAFFFC; $green200: #EBF2EF; diff --git a/build/scss/typography.scss b/build/scss/typography.scss index d3f49bbf..cf64914e 100644 --- a/build/scss/typography.scss +++ b/build/scss/typography.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Fri, 05 Aug 2022 12:19:44 GMT +// Generated on Fri, 05 Aug 2022 14:02:20 GMT $letterSpacingBase: 0; $paragraphSpacingBase: 0; diff --git a/build/ts/colors.d.ts b/build/ts/colors.d.ts index ea229202..e5018278 100644 --- a/build/ts/colors.d.ts +++ b/build/ts/colors.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 05 Aug 2022 12:19:44 GMT + * Generated on Fri, 05 Aug 2022 14:02:20 GMT */ export const green100 : string; diff --git a/build/ts/colors.js b/build/ts/colors.js index 54778712..25ab974e 100644 --- a/build/ts/colors.js +++ b/build/ts/colors.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 05 Aug 2022 12:19:44 GMT + * Generated on Fri, 05 Aug 2022 14:02:20 GMT */ module.exports = { diff --git a/build/ts/typography.d.ts b/build/ts/typography.d.ts index 32e7b7c3..c8396674 100644 --- a/build/ts/typography.d.ts +++ b/build/ts/typography.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 05 Aug 2022 12:19:44 GMT + * Generated on Fri, 05 Aug 2022 14:02:20 GMT */ export const letterSpacingBase : number; diff --git a/build/ts/typography.js b/build/ts/typography.js index 4269214a..deb6afdd 100644 --- a/build/ts/typography.js +++ b/build/ts/typography.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 05 Aug 2022 12:19:44 GMT + * Generated on Fri, 05 Aug 2022 14:02:20 GMT */ module.exports = { From 4953a28fc6265c3f2c9d3f5d7ed4993d69333ec5 Mon Sep 17 00:00:00 2001 From: CCAyl Date: Fri, 5 Aug 2022 14:07:55 +0000 Subject: [PATCH 11/11] Built and updated design tokens --- build/native/colors.d.ts | 5 +++-- build/native/colors.js | 5 +++-- build/native/typography.d.ts | 2 +- build/native/typography.js | 2 +- build/scss/colors.scss | 5 +++-- build/scss/typography.scss | 2 +- build/ts/colors.d.ts | 5 +++-- build/ts/colors.js | 5 +++-- build/ts/typography.d.ts | 2 +- build/ts/typography.js | 2 +- 10 files changed, 20 insertions(+), 15 deletions(-) diff --git a/build/native/colors.d.ts b/build/native/colors.d.ts index 94121070..af728de0 100644 --- a/build/native/colors.d.ts +++ b/build/native/colors.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 21:59:25 GMT + * Generated on Fri, 05 Aug 2022 14:07:55 GMT */ export const green100 : string; @@ -52,4 +52,5 @@ export const grey600 : string; export const grey700 : string; export const grey800 : string; export const white : string; -export const black : string; \ No newline at end of file +export const black : string; +export const transparent : string; \ No newline at end of file diff --git a/build/native/colors.js b/build/native/colors.js index d127da28..d82e4b91 100644 --- a/build/native/colors.js +++ b/build/native/colors.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 21:59:25 GMT + * Generated on Fri, 05 Aug 2022 14:07:55 GMT */ module.exports = { @@ -53,5 +53,6 @@ module.exports = { "grey700": "#36485C", "grey800": "#2E3A47", "white": "#FFFFFF", - "black": "#000000" + "black": "#000000", + "transparent": "transparent" }; \ No newline at end of file diff --git a/build/native/typography.d.ts b/build/native/typography.d.ts index 64195e19..fc1e388a 100644 --- a/build/native/typography.d.ts +++ b/build/native/typography.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 21:59:25 GMT + * Generated on Fri, 05 Aug 2022 14:07:55 GMT */ export const letterSpacingBase : number; diff --git a/build/native/typography.js b/build/native/typography.js index 28b920c4..ad63e754 100644 --- a/build/native/typography.js +++ b/build/native/typography.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 21:59:25 GMT + * Generated on Fri, 05 Aug 2022 14:07:55 GMT */ module.exports = { diff --git a/build/scss/colors.scss b/build/scss/colors.scss index e73eb186..f4bb55dd 100644 --- a/build/scss/colors.scss +++ b/build/scss/colors.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 04 Aug 2022 21:59:25 GMT +// Generated on Fri, 05 Aug 2022 14:07:55 GMT $green100: #FAFFFC; $green200: #EBF2EF; @@ -51,4 +51,5 @@ $grey600: #475A70; $grey700: #36485C; $grey800: #2E3A47; $white: #FFFFFF; -$black: #000000; \ No newline at end of file +$black: #000000; +$transparent: transparent; \ No newline at end of file diff --git a/build/scss/typography.scss b/build/scss/typography.scss index ecba58e3..c2f3ebc3 100644 --- a/build/scss/typography.scss +++ b/build/scss/typography.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 04 Aug 2022 21:59:25 GMT +// Generated on Fri, 05 Aug 2022 14:07:55 GMT $letterSpacingBase: 0; $paragraphSpacingBase: 0; diff --git a/build/ts/colors.d.ts b/build/ts/colors.d.ts index 94121070..af728de0 100644 --- a/build/ts/colors.d.ts +++ b/build/ts/colors.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 21:59:25 GMT + * Generated on Fri, 05 Aug 2022 14:07:55 GMT */ export const green100 : string; @@ -52,4 +52,5 @@ export const grey600 : string; export const grey700 : string; export const grey800 : string; export const white : string; -export const black : string; \ No newline at end of file +export const black : string; +export const transparent : string; \ No newline at end of file diff --git a/build/ts/colors.js b/build/ts/colors.js index d127da28..d82e4b91 100644 --- a/build/ts/colors.js +++ b/build/ts/colors.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 21:59:25 GMT + * Generated on Fri, 05 Aug 2022 14:07:55 GMT */ module.exports = { @@ -53,5 +53,6 @@ module.exports = { "grey700": "#36485C", "grey800": "#2E3A47", "white": "#FFFFFF", - "black": "#000000" + "black": "#000000", + "transparent": "transparent" }; \ No newline at end of file diff --git a/build/ts/typography.d.ts b/build/ts/typography.d.ts index 973ff19c..975f14b4 100644 --- a/build/ts/typography.d.ts +++ b/build/ts/typography.d.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 21:59:25 GMT + * Generated on Fri, 05 Aug 2022 14:07:55 GMT */ export const letterSpacingBase : number; diff --git a/build/ts/typography.js b/build/ts/typography.js index 5da4e824..d3821bad 100644 --- a/build/ts/typography.js +++ b/build/ts/typography.js @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 04 Aug 2022 21:59:25 GMT + * Generated on Fri, 05 Aug 2022 14:07:55 GMT */ module.exports = {