-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed warnings in TextStyle JSON extension
- Loading branch information
1 parent
72251f5
commit f2b7a2b
Showing
4 changed files
with
180 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
{ | ||
"fontFamily": "Helvetica", | ||
"textSize": 18, | ||
"fontWeight": { | ||
"normal": "roman/regular", | ||
"strong": "roman/bold", | ||
"emphasis": "roman/heavy" | ||
}, | ||
"color": { | ||
"$ref": "#/theme/color/primary/normal" | ||
}, | ||
"letterSpacing": 1, | ||
"lineSpacing": 0, | ||
"lineHeightMultiple": 1, | ||
"minimumLineHeight": 10, | ||
"maximumLineHeight": 25, | ||
"paragraphSpacing": 12, | ||
"paragraphSpacingBefore": 3, | ||
"textAlign": "left", | ||
"lineBreakMode": "byTruncatingTail", | ||
"textTransform": "none", | ||
"textDecorationLine": "none", | ||
"textDecorationColor": { | ||
"$ref": "#/theme/color/primary/normal" | ||
} | ||
"fontFamily": "Helvetica", | ||
"textSize": 18, | ||
"fontWeight": { | ||
"normal": "Helvetica", | ||
"strong": "Helvetica-Bold", | ||
"emphasis": "Helvetica-Heavy" | ||
}, | ||
"color": { | ||
"$ref": "#/theme/color/primary/normal" | ||
}, | ||
"letterSpacing": 1, | ||
"lineSpacing": 0, | ||
"lineHeightMultiple": 1, | ||
"minimumLineHeight": 10, | ||
"maximumLineHeight": 25, | ||
"paragraphSpacing": 12, | ||
"paragraphSpacingBefore": 3, | ||
"textAlign": "left", | ||
"lineBreakMode": "byTruncatingTail", | ||
"textTransform": "none", | ||
"textDecorationLine": "none", | ||
"textDecorationColor": { | ||
"$ref": "#/theme/color/primary/normal" | ||
}, | ||
"strikethroughStyle": "none" | ||
} |
Oops, something went wrong.