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

Fix the color alpha syntax to be 50% #182

Merged
merged 1 commit into from
Dec 13, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion technical-reports/color/color-type.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ For example, initially the color tokens MAY be defined as such:
"$type": "color"
},
"Translucent shadow": {
"$value": "#00000088",
"$value": "#00000080",
"$type": "color"
}
}
Expand Down
6 changes: 3 additions & 3 deletions technical-reports/format/composite-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ A design token whose type happens to be a composite type is sometimes also calle
"shadow-token": {
"$type": "shadow",
"$value": {
"color": "#00000088",
"color": "#00000080",
"offsetX": "0.5rem",
"offsetY": "0.5rem",
"blur": "1.5rem",
Expand All @@ -44,7 +44,7 @@ A design token whose type happens to be a composite type is sometimes also calle
"color": {
"shadow-050": {
"$type": "color",
"$value": "#00000088"
"$value": "#00000080"
}
},

Expand Down Expand Up @@ -287,7 +287,7 @@ Represents a shadow style. The `$type` property MUST be set to the string `shado
"shadow-token": {
"$type": "shadow",
"$value": {
"color": "#00000088",
"color": "#00000080",
"offsetX": "0.5rem",
"offsetY": "0.5rem",
"blur": "1.5rem",
Expand Down
2 changes: 1 addition & 1 deletion technical-reports/format/terminology.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Here's [an example of a composite shadow token](https://design-tokens.github.io/
"shadow-token": {
"$type": "shadow",
"$value": {
"color": "#00000088",
"color": "#00000080",
"offsetX": "0.5rem",
"offsetY": "0.5rem",
"blur": "1.5rem",
Expand Down
2 changes: 1 addition & 1 deletion technical-reports/format/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ For example, initially the color tokens MAY be defined as such:
"$type": "color"
},
"Translucent shadow": {
"$value": "#00000088",
"$value": "#00000080",
"$type": "color"
}
}
Expand Down