Skip to content

Commit

Permalink
Fix the color alpha syntax to be 50%
Browse files Browse the repository at this point in the history
  • Loading branch information
kizu committed Nov 16, 2022
1 parent 0efc5a3 commit 0e815eb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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

0 comments on commit 0e815eb

Please sign in to comment.