From 6c0a7c639840ca4f3a88231d8e33bd7bff543e43 Mon Sep 17 00:00:00 2001 From: Roman Komarov Date: Tue, 13 Dec 2022 02:29:00 +0100 Subject: [PATCH] Fix the color alpha syntax to be 50% (#182) --- technical-reports/color/color-type.md | 2 +- technical-reports/format/composite-types.md | 6 +++--- technical-reports/format/terminology.md | 2 +- technical-reports/format/types.md | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/technical-reports/color/color-type.md b/technical-reports/color/color-type.md index 3f0b1df..9d72303 100644 --- a/technical-reports/color/color-type.md +++ b/technical-reports/color/color-type.md @@ -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" } } diff --git a/technical-reports/format/composite-types.md b/technical-reports/format/composite-types.md index d61735c..24ae320 100644 --- a/technical-reports/format/composite-types.md +++ b/technical-reports/format/composite-types.md @@ -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", @@ -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" } }, @@ -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", diff --git a/technical-reports/format/terminology.md b/technical-reports/format/terminology.md index 5f1889f..131fa7a 100644 --- a/technical-reports/format/terminology.md +++ b/technical-reports/format/terminology.md @@ -124,7 +124,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", diff --git a/technical-reports/format/types.md b/technical-reports/format/types.md index 5f03644..b95b901 100644 --- a/technical-reports/format/types.md +++ b/technical-reports/format/types.md @@ -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" } }