Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding in weights #32

Merged
merged 3 commits into from
Jul 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/scss/colors.scss
Original file line number Diff line number Diff line change
@@ -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;
Expand Down Expand Up @@ -49,4 +49,4 @@ $grey400: #C8D3E0;
$grey500: #596D84;
$grey600: #475A70;
$grey700: #36485C;
$grey800: #2E3A47;
$grey800: #2E3A47;
5 changes: 4 additions & 1 deletion build/scss/typography.scss
Original file line number Diff line number Diff line change
@@ -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;
Expand Down Expand Up @@ -84,3 +84,6 @@ $lineHeightsmall: 16px;
$fontFamilysansSerif: Mulish;
$weightheading: 700;
$weightbase: 500;
$weightlight: 400;
$weightstrong: 600;
$weightbold: 900;
4 changes: 2 additions & 2 deletions build/ts/colors.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down Expand Up @@ -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";
5 changes: 4 additions & 1 deletion build/ts/typography.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand Down Expand Up @@ -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;
14 changes: 13 additions & 1 deletion data/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": []
}
}
12 changes: 12 additions & 0 deletions data/transformed-tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -564,6 +564,18 @@
"base": {
"value": 500,
"type": "fontWeights"
},
"light": {
"value": 400,
"type": "fontWeights"
},
"strong": {
"value": 600,
"type": "fontWeights"
},
"bold": {
"value": 900,
"type": "fontWeights"
}
}
}
Expand Down