From 4b3f9f151df089206a6c5d89678890d16c05e862 Mon Sep 17 00:00:00 2001 From: Alex Bueno <44420072+aweell@users.noreply.github.com> Date: Mon, 11 Mar 2024 12:34:07 +0100 Subject: [PATCH 1/9] Add blau tag tokens --- tokens/blau.json | 120 +++++++++++++++++++++++++++++++++ tokens/schema/skin-schema.json | 26 ++++++- 2 files changed, 145 insertions(+), 1 deletion(-) diff --git a/tokens/blau.json b/tokens/blau.json index 71d191df61..6cff695424 100644 --- a/tokens/blau.json +++ b/tokens/blau.json @@ -554,6 +554,66 @@ "value": "{palette.blauBluePrimary}", "type": "color", "description": "blauBluePrimary" + }, + "tagTextPromo": { + "value": "{palette.blauPurple}", + "type": "color", + "description": "blauPurple" + }, + "tagTextActive": { + "value": "{palette.blauBluePrimary}", + "type": "color", + "description": "blauBluePrimary" + }, + "tagTextInactive": { + "value": "{palette.grey5}", + "type": "color", + "description": "grey5" + }, + "tagTextSuccess": { + "value": "{palette.blauGreen70}", + "type": "color", + "description": "blauGreen70" + }, + "tagTextWarning": { + "value": "{palette.blauYellow70}", + "type": "color", + "description": "blauYellow70" + }, + "tagTextError": { + "value": "{palette.blauRed70}", + "type": "color", + "description": "blauRed70" + }, + "tagBackgroundPromo": { + "value": "{palette.blauPurple10}", + "type": "color", + "description": "blauPurple10" + }, + "tagBackgroundActive": { + "value": "{palette.blauPurple30}", + "type": "color", + "description": "blauPurple30" + }, + "tagBackgroundInactive": { + "value": "{palette.grey2}", + "type": "color", + "description": "grey2" + }, + "tagBackgroundSuccess": { + "value": "{palette.blauGreen10}", + "type": "color", + "description": "blauGreen10" + }, + "tagBackgroundWarning": { + "value": "{palette.blauYellow10}", + "type": "color", + "description": "blauYellow10" + }, + "tagBackgroundError": { + "value": "{palette.blauRed10}", + "type": "color", + "description": "blauRed10" } }, "dark": { @@ -1111,6 +1171,66 @@ "value": "{palette.darkModeBlack}", "type": "color", "description": "darkModeBlack" + }, + "tagTextPromo": { + "value": "{palette.blauPurple30}", + "type": "color", + "description": "blauPurple30" + }, + "tagTextActive": { + "value": "{palette.blauBluePrimary}", + "type": "color", + "description": "blauBluePrimary" + }, + "tagTextInactive": { + "value": "{palette.grey5}", + "type": "color", + "description": "grey5" + }, + "tagTextSuccess": { + "value": "{palette.blauGreen30}", + "type": "color", + "description": "blauGreen30" + }, + "tagTextWarning": { + "value": "{palette.blauYellow40}", + "type": "color", + "description": "blauYellow40" + }, + "tagTextError": { + "value": "{palette.blauRed40}", + "type": "color", + "description": "blauRed40" + }, + "tagBackgroundPromo": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundActive": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundInactive": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundSuccess": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundWarning": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundError": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" } }, "radius": { diff --git a/tokens/schema/skin-schema.json b/tokens/schema/skin-schema.json index 8505d22389..1af47d941b 100644 --- a/tokens/schema/skin-schema.json +++ b/tokens/schema/skin-schema.json @@ -162,7 +162,19 @@ "errorHighInverse", "promoHighInverse", "neutralMediumInverse", - "customTabsBackground" + "customTabsBackground", + "tagTextPromo", + "tagTextActive", + "tagTextInactive", + "tagTextSuccess", + "tagTextWarning", + "tagTextError", + "tagBackgroundPromo", + "tagBackgroundActive", + "tagBackgroundInactive", + "tagBackgroundSuccess", + "tagBackgroundWarning", + "tagBackgroundError" ], "properties": { "appBarBackground": { "$ref": "#/definitions/constantProperties" }, @@ -276,6 +288,18 @@ "promoHighInverse": { "$ref": "#/definitions/constantProperties" }, "neutralMediumInverse": { "$ref": "#/definitions/constantProperties" }, "customTabsBackground": { "$ref": "#/definitions/constantProperties" }, + "tagTextPromo": { "$ref": "#/definitions/constantProperties" }, + "tagTextActive": { "$ref": "#/definitions/constantProperties" }, + "tagTextInactive": { "$ref": "#/definitions/constantProperties" }, + "tagTextSuccess": { "$ref": "#/definitions/constantProperties" }, + "tagTextWarning": { "$ref": "#/definitions/constantProperties" }, + "tagTextError": { "$ref": "#/definitions/constantProperties" }, + "tagBackgroundPromo": { "$ref": "#/definitions/constantProperties" }, + "tagBackgroundActive": { "$ref": "#/definitions/constantProperties" }, + "tagBackgroundInactive": { "$ref": "#/definitions/constantProperties" }, + "tagBackgroundSuccess": { "$ref": "#/definitions/constantProperties" }, + "tagBackgroundWarning": { "$ref": "#/definitions/constantProperties" }, + "tagBackgroundError": { "$ref": "#/definitions/constantProperties" }, "extended": { "type": "object", "patternProperties": { From ea76d7623e0fd831a142f486e9dbd2e32c474643 Mon Sep 17 00:00:00 2001 From: Alex Bueno <44420072+aweell@users.noreply.github.com> Date: Mon, 11 Mar 2024 12:50:11 +0100 Subject: [PATCH 2/9] Add movistar-legacy tag tokens --- tokens/movistar-legacy.json | 184 +++++++++++++++++++++++++++++++++++- 1 file changed, 182 insertions(+), 2 deletions(-) diff --git a/tokens/movistar-legacy.json b/tokens/movistar-legacy.json index d624e137dd..69eb9dcfa3 100644 --- a/tokens/movistar-legacy.json +++ b/tokens/movistar-legacy.json @@ -555,6 +555,66 @@ "type": "color", "description": "white" }, + "tagTextPromo": { + "value": "{palette.purple70}", + "type": "color", + "description": "purple70" + }, + "tagTextActive": { + "value": "{palette.movistarBlue}", + "type": "color", + "description": "movistarBlue" + }, + "tagTextInactive": { + "value": "{palette.grey5}", + "type": "color", + "description": "grey5" + }, + "tagTextSuccess": { + "value": "{palette.movistarGreen70}", + "type": "color", + "description": "movistarGreen70" + }, + "tagTextWarning": { + "value": "{palette.egg80}", + "type": "color", + "description": "egg80" + }, + "tagTextError": { + "value": "{palette.pepper70}", + "type": "color", + "description": "pepper70" + }, + "tagBackgroundPromo": { + "value": "{palette.purple10}", + "type": "color", + "description": "purple10" + }, + "tagBackgroundActive": { + "value": "{palette.movistarBlue10}", + "type": "color", + "description": "movistarBlue10" + }, + "tagBackgroundInactive": { + "value": "{palette.grey2}", + "type": "color", + "description": "grey2" + }, + "tagBackgroundSuccess": { + "value": "{palette.movistarGreen10}", + "type": "color", + "description": "movistarGreen10" + }, + "tagBackgroundWarning": { + "value": "{palette.egg10}", + "type": "color", + "description": "egg10" + }, + "tagBackgroundError": { + "value": "{palette.pepper10}", + "type": "color", + "description": "pepper10" + }, "overscroll": { "value": "{palette.movistarBlue}", "type": "color", @@ -1117,10 +1177,70 @@ "type": "color", "description": "darkModeBlack" }, + "tagTextPromo": { + "value": "{palette.purple70}", + "type": "color", + "description": "purple70" + }, + "tagTextActive": { + "value": "{palette.movistarBlue}", + "type": "color", + "description": "movistarBlue" + }, + "tagTextInactive": { + "value": "{palette.grey5}", + "type": "color", + "description": "grey5" + }, + "tagTextSuccess": { + "value": "{palette.movistarGreen70}", + "type": "color", + "description": "movistarGreen70" + }, + "tagTextWarning": { + "value": "{palette.egg80}", + "type": "color", + "description": "egg80" + }, + "tagTextError": { + "value": "{palette.pepper70}", + "type": "color", + "description": "pepper70" + }, + "tagBackgroundPromo": { + "value": "{palette.grey6}", + "type": "color", + "description": "grey6" + }, + "tagBackgroundActive": { + "value": "{palette.grey6}", + "type": "color", + "description": "grey6" + }, + "tagBackgroundInactive": { + "value": "{palette.grey6}", + "type": "color", + "description": "grey6" + }, + "tagBackgroundSuccess": { + "value": "{palette.grey6}", + "type": "color", + "description": "grey6" + }, + "tagBackgroundWarning": { + "value": "{palette.grey6}", + "type": "color", + "description": "grey6" + }, + "tagBackgroundError": { + "value": "{palette.grey6}", + "type": "color", + "description": "grey6" + }, "overscroll": { - "value": "{palette.darkModeBlack}", + "value": "{palette.grey6}", "type": "color", - "description": "darkModeBlack" + "description": "grey6" } }, "prominent": { @@ -1589,6 +1709,66 @@ "type": "color", "description": "white" }, + "tagTextPromo": { + "value": "{palette.purple}", + "type": "color", + "description": "purple" + }, + "tagTextActive": { + "value": "{palette.movistarProminentBlue}", + "type": "color", + "description": "movistarProminentBlue" + }, + "tagTextInactive": { + "value": "{palette.grey4}", + "type": "color", + "description": "grey4" + }, + "tagTextSuccess": { + "value": "{palette.movistarGreen70}", + "type": "color", + "description": "movistarGreen70" + }, + "tagTextWarning": { + "value": "{palette.egg80}", + "type": "color", + "description": "egg80" + }, + "tagTextError": { + "value": "{palette.pepper70}", + "type": "color", + "description": "pepper70" + }, + "tagBackgroundPromo": { + "value": "{palette.purple10}", + "type": "color", + "description": "purple10" + }, + "tagBackgroundActive": { + "value": "{palette.movistarBlue10}", + "type": "color", + "description": "movistarBlue10" + }, + "tagBackgroundInactive": { + "value": "{palette.grey6}", + "type": "color", + "description": "grey6" + }, + "tagBackgroundSuccess": { + "value": "{palette.movistarGreen10}", + "type": "color", + "description": "movistarGreen10" + }, + "tagBackgroundWarning": { + "value": "{palette.egg10}", + "type": "color", + "description": "egg10" + }, + "tagBackgroundError": { + "value": "{palette.pepper10}", + "type": "color", + "description": "pepper10" + }, "overscroll": { "value": "{palette.darkModeBlack}", "type": "color", From e91086aa421022759f181a2401287d7c7566847d Mon Sep 17 00:00:00 2001 From: Alex Bueno <44420072+aweell@users.noreply.github.com> Date: Mon, 11 Mar 2024 14:18:17 +0100 Subject: [PATCH 3/9] Add movistar tag tokens --- tokens/movistar.json | 120 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) diff --git a/tokens/movistar.json b/tokens/movistar.json index 89d525a28a..d7a19399bb 100644 --- a/tokens/movistar.json +++ b/tokens/movistar.json @@ -555,6 +555,66 @@ "type": "color", "description": "movistarBlue" }, + "tagTextPromo": { + "value": "{palette.purple70}", + "type": "color", + "description": "purple70" + }, + "tagTextActive": { + "value": "{palette.movistarBlue}", + "type": "color", + "description": "movistarBlue" + }, + "tagTextInactive": { + "value": "{palette.grey5}", + "type": "color", + "description": "grey5" + }, + "tagTextSuccess": { + "value": "{palette.movistarGreen70}", + "type": "color", + "description": "movistarGreen70" + }, + "tagTextWarning": { + "value": "{palette.egg80}", + "type": "color", + "description": "egg80" + }, + "tagTextError": { + "value": "{palette.pepper70}", + "type": "color", + "description": "pepper70" + }, + "tagBackgroundPromo": { + "value": "{palette.purple10}", + "type": "color", + "description": "purple10" + }, + "tagBackgroundActive": { + "value": "{palette.movistarBlue10}", + "type": "color", + "description": "movistarBlue10" + }, + "tagBackgroundInactive": { + "value": "{palette.grey1}", + "type": "color", + "description": "grey1" + }, + "tagBackgroundSuccess": { + "value": "{palette.movistarGreen10}", + "type": "color", + "description": "movistarGreen10" + }, + "tagBackgroundWarning": { + "value": "{palette.egg10}", + "type": "color", + "description": "egg10" + }, + "tagBackgroundError": { + "value": "{palette.pepper10}", + "type": "color", + "description": "pepper10" + }, "overscroll": { "value": "{palette.movistarBlue}", "type": "color", @@ -1117,6 +1177,66 @@ "type": "color", "description": "darkModeBlack" }, + "tagTextPromo": { + "value": "{palette.purple40}", + "type": "color", + "description": "purple40" + }, + "tagTextActive": { + "value": "{palette.movistarBlue}", + "type": "color", + "description": "movistarBlue" + }, + "tagTextInactive": { + "value": "{palette.grey4}", + "type": "color", + "description": "grey4" + }, + "tagTextSuccess": { + "value": "{palette.movistarGreen40}", + "type": "color", + "description": "movistarGreen40" + }, + "tagTextWarning": { + "value": "{palette.egg40}", + "type": "color", + "description": "egg40" + }, + "tagTextError": { + "value": "{palette.pepper40}", + "type": "color", + "description": "pepper40" + }, + "tagBackgroundPromo": { + "value": "{palette.movistarBlueDark}", + "type": "color", + "description": "movistarBlueDark" + }, + "tagBackgroundActive": { + "value": "{palette.movistarBlueDark}", + "type": "color", + "description": "movistarBlueDark" + }, + "tagBackgroundInactive": { + "value": "{palette.movistarBlueDark}", + "type": "color", + "description": "movistarBlueDark" + }, + "tagBackgroundSuccess": { + "value": "{palette.movistarBlueDark}", + "type": "color", + "description": "movistarBlueDark" + }, + "tagBackgroundWarning": { + "value": "{palette.movistarBlueDark}", + "type": "color", + "description": "movistarBlueDark" + }, + "tagBackgroundError": { + "value": "{palette.movistarBlueDark}", + "type": "color", + "description": "movistarBlueDark" + }, "overscroll": { "value": "{palette.darkModeBlack}", "type": "color", From 780d0763306ee0c23f0cd934ebff7698d7bb1c9f Mon Sep 17 00:00:00 2001 From: Alex Bueno <44420072+aweell@users.noreply.github.com> Date: Mon, 11 Mar 2024 14:26:18 +0100 Subject: [PATCH 4/9] Revert overscroll in movistar-legacy --- tokens/movistar-legacy.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tokens/movistar-legacy.json b/tokens/movistar-legacy.json index 69eb9dcfa3..f974c95e0c 100644 --- a/tokens/movistar-legacy.json +++ b/tokens/movistar-legacy.json @@ -1238,9 +1238,9 @@ "description": "grey6" }, "overscroll": { - "value": "{palette.grey6}", + "value": "{palette.darkModeBlack}", "type": "color", - "description": "grey6" + "description": "darkModeBlack" } }, "prominent": { From 66abf6118161456c13c271911191b14fa887103a Mon Sep 17 00:00:00 2001 From: Alex Bueno <44420072+aweell@users.noreply.github.com> Date: Mon, 11 Mar 2024 15:25:48 +0100 Subject: [PATCH 5/9] Add o2 tag tokens --- tokens/o2.json | 120 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) diff --git a/tokens/o2.json b/tokens/o2.json index 4f106a03b5..f474285411 100644 --- a/tokens/o2.json +++ b/tokens/o2.json @@ -555,6 +555,66 @@ "type": "color", "description": "o2BluePrimary" }, + "tagTextPromo": { + "value": "{palette.o2Purple}", + "type": "color", + "description": "o2Purple" + }, + "tagTextActive": { + "value": "{palette.o2BluePrimary}", + "type": "color", + "description": "o2BluePrimary" + }, + "tagTextInactive": { + "value": "{palette.grey5}", + "type": "color", + "description": "grey5" + }, + "tagTextSuccess": { + "value": "{palette.o2Green80}", + "type": "color", + "description": "o2Green80" + }, + "tagTextWarning": { + "value": "{palette.o2Orange75}", + "type": "color", + "description": "o2Orange75" + }, + "tagTextError": { + "value": "{palette.pepper60}", + "type": "color", + "description": "pepper60" + }, + "tagBackgroundPromo": { + "value": "{palette.o2Purple10}", + "type": "color", + "description": "o2Purple10" + }, + "tagBackgroundActive": { + "value": "{palette.o2BluePrimary10}", + "type": "color", + "description": "o2BluePrimary10" + }, + "tagBackgroundInactive": { + "value": "{palette.grey1}", + "type": "color", + "description": "grey1" + }, + "tagBackgroundSuccess": { + "value": "{palette.o2Green10}", + "type": "color", + "description": "o2Green10" + }, + "tagBackgroundWarning": { + "value": "{palette.o2Orange10}", + "type": "color", + "description": "o2Orange10" + }, + "tagBackgroundError": { + "value": "{palette.pepper10}", + "type": "color", + "description": "pepper10" + }, "overscroll": { "value": "{palette.o2BluePrimary}", "type": "color", @@ -1117,6 +1177,66 @@ "type": "color", "description": "darkModeBlack" }, + "tagTextPromo": { + "value": "{palette.o2Purple}", + "type": "color", + "description": "o2Purple" + }, + "tagTextActive": { + "value": "{palette.o2BluePrimary30}", + "type": "color", + "description": "o2BluePrimary30" + }, + "tagTextInactive": { + "value": "{palette.grey4}", + "type": "color", + "description": "grey4" + }, + "tagTextSuccess": { + "value": "{palette.o2Green40}", + "type": "color", + "description": "o2Green40" + }, + "tagTextWarning": { + "value": "{palette.o2Orange40}", + "type": "color", + "description": "o2Orange40" + }, + "tagTextError": { + "value": "{palette.pepper40}", + "type": "color", + "description": "pepper40" + }, + "tagBackgroundPromo": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundActive": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundInactive": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundSuccess": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundWarning": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundError": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, "overscroll": { "value": "{palette.darkModeBlack}", "type": "color", From e4a6886f967451358aeefd7e13b2088c8aae0a4e Mon Sep 17 00:00:00 2001 From: Alex Bueno <44420072+aweell@users.noreply.github.com> Date: Mon, 11 Mar 2024 16:44:15 +0100 Subject: [PATCH 6/9] Add telefonica tag tokens --- tokens/movistar.json | 4 +- tokens/telefonica.json | 120 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 122 insertions(+), 2 deletions(-) diff --git a/tokens/movistar.json b/tokens/movistar.json index d7a19399bb..71d9354056 100644 --- a/tokens/movistar.json +++ b/tokens/movistar.json @@ -596,9 +596,9 @@ "description": "movistarBlue10" }, "tagBackgroundInactive": { - "value": "{palette.grey1}", + "value": "{palette.grey2}", "type": "color", - "description": "grey1" + "description": "grey2" }, "tagBackgroundSuccess": { "value": "{palette.movistarGreen10}", diff --git a/tokens/telefonica.json b/tokens/telefonica.json index 8248183d83..bac3f4cf84 100644 --- a/tokens/telefonica.json +++ b/tokens/telefonica.json @@ -555,6 +555,66 @@ "type": "color", "description": "telefonicaBlue" }, + "tagTextPromo": { + "value": "{palette.orchid70}", + "type": "color", + "description": "orchid70" + }, + "tagTextActive": { + "value": "{palette.telefonicaBlue}", + "type": "color", + "description": "telefonicaBlue" + }, + "tagTextInactive": { + "value": "{palette.grey5}", + "type": "color", + "description": "grey5" + }, + "tagTextSuccess": { + "value": "{palette.turquoise70}", + "type": "color", + "description": "turquoise70" + }, + "tagTextWarning": { + "value": "{palette.ambar70}", + "type": "color", + "description": "ambar70" + }, + "tagTextError": { + "value": "{palette.coral70}", + "type": "color", + "description": "coral70" + }, + "tagBackgroundPromo": { + "value": "{palette.orchid10}", + "type": "color", + "description": "orchid10" + }, + "tagBackgroundActive": { + "value": "{palette.telefonicaBlue}", + "type": "color", + "description": "telefonicaBlue" + }, + "tagBackgroundInactive": { + "value": "{palette.grey2}", + "type": "color", + "description": "grey2" + }, + "tagBackgroundSuccess": { + "value": "{palette.turquoise10}", + "type": "color", + "description": "turquoise10" + }, + "tagBackgroundWarning": { + "value": "{palette.ambar10}", + "type": "color", + "description": "ambar10" + }, + "tagBackgroundError": { + "value": "{palette.coral10}", + "type": "color", + "description": "coral10" + }, "overscroll": { "value": "{palette.telefonicaBlue}", "type": "color", @@ -1117,6 +1177,66 @@ "type": "color", "description": "darkModeBlack" }, + "tagTextPromo": { + "value": "{palette.orchid40}", + "type": "color", + "description": "orchid40" + }, + "tagTextActive": { + "value": "{palette.telefonicaBlue}", + "type": "color", + "description": "telefonicaBlue" + }, + "tagTextInactive": { + "value": "{palette.grey5}", + "type": "color", + "description": "grey5" + }, + "tagTextSuccess": { + "value": "{palette.turquoise40}", + "type": "color", + "description": "turquoise40" + }, + "tagTextWarning": { + "value": "{palette.ambar40}", + "type": "color", + "description": "ambar40" + }, + "tagTextError": { + "value": "{palette.coral40}", + "type": "color", + "description": "coral40" + }, + "tagBackgroundPromo": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundActive": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundInactive": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundSuccess": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundWarning": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundError": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, "overscroll": { "value": "{palette.darkModeBlack}", "type": "color", From 50fe56a5123ddfd4a011b363a0d532d355f654a7 Mon Sep 17 00:00:00 2001 From: Alex Bueno <44420072+aweell@users.noreply.github.com> Date: Mon, 11 Mar 2024 17:05:22 +0100 Subject: [PATCH 7/9] Add TU tag tokens --- tokens/tu.json | 120 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) diff --git a/tokens/tu.json b/tokens/tu.json index dafb7d5eb6..9a1100547d 100644 --- a/tokens/tu.json +++ b/tokens/tu.json @@ -555,6 +555,66 @@ "type": "color", "description": "white" }, + "tagTextPromo": { + "value": "{palette.blue}", + "type": "color", + "description": "blue" + }, + "tagTextActive": { + "value": "{palette.blue}", + "type": "color", + "description": "blue" + }, + "tagTextInactive": { + "value": "{palette.grey4}", + "type": "color", + "description": "grey4" + }, + "tagTextSuccess": { + "value": "{palette.green75}", + "type": "color", + "description": "green75" + }, + "tagTextWarning": { + "value": "{palette.orange70}", + "type": "color", + "description": "orange70" + }, + "tagTextError": { + "value": "{palette.red70}", + "type": "color", + "description": "red70" + }, + "tagBackgroundPromo": { + "value": "{palette.blue10}", + "type": "color", + "description": "blue10" + }, + "tagBackgroundActive": { + "value": "{palette.blue10}", + "type": "color", + "description": "blue10" + }, + "tagBackgroundInactive": { + "value": "{palette.grey2}", + "type": "color", + "description": "grey2" + }, + "tagBackgroundSuccess": { + "value": "{palette.green10}", + "type": "color", + "description": "green10" + }, + "tagBackgroundWarning": { + "value": "{palette.orange20}", + "type": "color", + "description": "orange20" + }, + "tagBackgroundError": { + "value": "{palette.red10}", + "type": "color", + "description": "red10" + }, "overscroll": { "value": "{palette.primary}", "type": "color", @@ -1117,6 +1177,66 @@ "type": "color", "description": "darkModeBlack" }, + "tagTextPromo": { + "value": "{palette.blue30}", + "type": "color", + "description": "blue30" + }, + "tagTextActive": { + "value": "{palette.blue30}", + "type": "color", + "description": "blue30" + }, + "tagTextInactive": { + "value": "{palette.grey5}", + "type": "color", + "description": "grey5" + }, + "tagTextSuccess": { + "value": "{palette.green40}", + "type": "color", + "description": "green40" + }, + "tagTextWarning": { + "value": "{palette.orange55}", + "type": "color", + "description": "orange55" + }, + "tagTextError": { + "value": "{palette.red40}", + "type": "color", + "description": "red40" + }, + "tagBackgroundPromo": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundActive": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundInactive": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundSuccess": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundWarning": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundError": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, "overscroll": { "value": "{palette.darkModeBlack}", "type": "color", From 6f17e3cff1c9cfc1a6d5cd4c11f0275086787cb5 Mon Sep 17 00:00:00 2001 From: Alex Bueno <44420072+aweell@users.noreply.github.com> Date: Mon, 11 Mar 2024 17:46:31 +0100 Subject: [PATCH 8/9] Add vivo tag tokens --- tokens/vivo-new.json | 120 +++++++++++++++++++++++++++++++++++++++++++ tokens/vivo.json | 120 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 240 insertions(+) diff --git a/tokens/vivo-new.json b/tokens/vivo-new.json index 9a8c1b8c4f..38b980b476 100644 --- a/tokens/vivo-new.json +++ b/tokens/vivo-new.json @@ -555,6 +555,66 @@ "type": "color", "description": "white" }, + "tagTextPromo": { + "value": "{palette.vivoPurple}", + "type": "color", + "description": "vivoPurple" + }, + "tagTextActive": { + "value": "{palette.vivoPurple}", + "type": "color", + "description": "vivoPurple" + }, + "tagTextInactive": { + "value": "{palette.grey5}", + "type": "color", + "description": "grey5" + }, + "tagTextSuccess": { + "value": "{palette.vivoGreenDark}", + "type": "color", + "description": "vivoGreenDark" + }, + "tagTextWarning": { + "value": "{palette.orangeDark}", + "type": "color", + "description": "orangeDark" + }, + "tagTextError": { + "value": "{palette.pepperDark80}", + "type": "color", + "description": "pepperDark80" + }, + "tagBackgroundPromo": { + "value": "{palette.vivoPurpleLight10}", + "type": "color", + "description": "vivoPurpleLight10" + }, + "tagBackgroundActive": { + "value": "{palette.vivoPurpleLight10}", + "type": "color", + "description": "vivoPurpleLight10" + }, + "tagBackgroundInactive": { + "value": "{palette.grey2}", + "type": "color", + "description": "grey2" + }, + "tagBackgroundSuccess": { + "value": "{palette.vivoGreenLight10}", + "type": "color", + "description": "vivoGreenLight10" + }, + "tagBackgroundWarning": { + "value": "{palette.orangeLight10}", + "type": "color", + "description": "orangeLight10" + }, + "tagBackgroundError": { + "value": "{palette.pepperLight10}", + "type": "color", + "description": "pepperLight10" + }, "overscroll": { "value": "{palette.vivoPurple}", "type": "color", @@ -1117,6 +1177,66 @@ "type": "color", "description": "darkModeBlack" }, + "tagTextPromo": { + "value": "{palette.vivoPurpleLight80}", + "type": "color", + "description": "vivoPurpleLight80" + }, + "tagTextActive": { + "value": "{palette.vivoPurpleLight80}", + "type": "color", + "description": "vivoPurpleLight80" + }, + "tagTextInactive": { + "value": "{palette.grey5}", + "type": "color", + "description": "grey5" + }, + "tagTextSuccess": { + "value": "{palette.vivoGreenLight30}", + "type": "color", + "description": "vivoGreenLight30" + }, + "tagTextWarning": { + "value": "{palette.orangeLight40}", + "type": "color", + "description": "orangeLight40" + }, + "tagTextError": { + "value": "{palette.pepperLight40}", + "type": "color", + "description": "pepperLight40" + }, + "tagBackgroundPromo": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundActive": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundInactive": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundSuccess": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundWarning": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundError": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, "overscroll": { "value": "{palette.darkModeBlack}", "type": "color", diff --git a/tokens/vivo.json b/tokens/vivo.json index d8e81f493a..edbbaacc8d 100644 --- a/tokens/vivo.json +++ b/tokens/vivo.json @@ -555,6 +555,66 @@ "type": "color", "description": "vivoPurple" }, + "tagTextPromo": { + "value": "{palette.vivoPurple}", + "type": "color", + "description": "vivoPurple" + }, + "tagTextActive": { + "value": "{palette.vivoPurple}", + "type": "color", + "description": "vivoPurple" + }, + "tagTextInactive": { + "value": "{palette.grey5}", + "type": "color", + "description": "grey5" + }, + "tagTextSuccess": { + "value": "{palette.vivoGreenDark}", + "type": "color", + "description": "vivoGreenDark" + }, + "tagTextWarning": { + "value": "{palette.orangeDark}", + "type": "color", + "description": "orangeDark" + }, + "tagTextError": { + "value": "{palette.pepperDark80}", + "type": "color", + "description": "pepperDark80" + }, + "tagBackgroundPromo": { + "value": "{palette.vivoPurpleLight10}", + "type": "color", + "description": "vivoPurpleLight10" + }, + "tagBackgroundActive": { + "value": "{palette.vivoPurpleLight10}", + "type": "color", + "description": "vivoPurpleLight10" + }, + "tagBackgroundInactive": { + "value": "{palette.grey2}", + "type": "color", + "description": "grey2" + }, + "tagBackgroundSuccess": { + "value": "{palette.vivoGreenLight10}", + "type": "color", + "description": "vivoGreenLight10" + }, + "tagBackgroundWarning": { + "value": "{palette.orangeLight10}", + "type": "color", + "description": "orangeLight10" + }, + "tagBackgroundError": { + "value": "{palette.pepperLight10}", + "type": "color", + "description": "pepperLight10" + }, "overscroll": { "value": "{palette.vivoPurple}", "type": "color", @@ -1117,6 +1177,66 @@ "type": "color", "description": "darkModeBlack" }, + "tagTextPromo": { + "value": "{palette.vivoPurpleLight80}", + "type": "color", + "description": "vivoPurpleLight80" + }, + "tagTextActive": { + "value": "{palette.vivoPurpleLight80}", + "type": "color", + "description": "vivoPurpleLight80" + }, + "tagTextInactive": { + "value": "{palette.grey5}", + "type": "color", + "description": "grey5" + }, + "tagTextSuccess": { + "value": "{palette.vivoGreenLight30}", + "type": "color", + "description": "vivoGreenLight30" + }, + "tagTextWarning": { + "value": "{palette.orangeLight40}", + "type": "color", + "description": "orangeLight40" + }, + "tagTextError": { + "value": "{palette.pepperLight40}", + "type": "color", + "description": "pepperLight40" + }, + "tagBackgroundPromo": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundActive": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundInactive": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundSuccess": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundWarning": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, + "tagBackgroundError": { + "value": "{palette.darkModeGrey6}", + "type": "color", + "description": "darkModeGrey6" + }, "overscroll": { "value": "{palette.darkModeBlack}", "type": "color", From e503730f806df80bb810f6490f6a852b0bbc283b Mon Sep 17 00:00:00 2001 From: Alex Bueno <44420072+aweell@users.noreply.github.com> Date: Mon, 11 Mar 2024 18:40:23 +0100 Subject: [PATCH 9/9] Fixes --- tokens/blau.json | 4 ++-- tokens/movistar.json | 4 ++-- tokens/o2.json | 12 ++++++------ tokens/telefonica.json | 4 ++-- tokens/tu.json | 4 ++-- tokens/vivo-new.json | 4 ++-- tokens/vivo.json | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/tokens/blau.json b/tokens/blau.json index 2bd86c651b..3989011975 100644 --- a/tokens/blau.json +++ b/tokens/blau.json @@ -591,9 +591,9 @@ "description": "blauPurple10" }, "tagBackgroundActive": { - "value": "{palette.blauPurple30}", + "value": "{palette.blauBlueSecondary10}", "type": "color", - "description": "blauPurple30" + "description": "blauBlueSecondary10" }, "tagBackgroundInactive": { "value": "{palette.grey2}", diff --git a/tokens/movistar.json b/tokens/movistar.json index 71d9354056..dcc270323f 100644 --- a/tokens/movistar.json +++ b/tokens/movistar.json @@ -1188,9 +1188,9 @@ "description": "movistarBlue" }, "tagTextInactive": { - "value": "{palette.grey4}", + "value": "{palette.darkModeGrey5}", "type": "color", - "description": "grey4" + "description": "darkModeGrey5" }, "tagTextSuccess": { "value": "{palette.movistarGreen40}", diff --git a/tokens/o2.json b/tokens/o2.json index f474285411..e004d1033c 100644 --- a/tokens/o2.json +++ b/tokens/o2.json @@ -596,9 +596,9 @@ "description": "o2BluePrimary10" }, "tagBackgroundInactive": { - "value": "{palette.grey1}", + "value": "{palette.grey2}", "type": "color", - "description": "grey1" + "description": "grey2" }, "tagBackgroundSuccess": { "value": "{palette.o2Green10}", @@ -1178,9 +1178,9 @@ "description": "darkModeBlack" }, "tagTextPromo": { - "value": "{palette.o2Purple}", + "value": "{palette.o2Purple30}", "type": "color", - "description": "o2Purple" + "description": "o2Purple30" }, "tagTextActive": { "value": "{palette.o2BluePrimary30}", @@ -1188,9 +1188,9 @@ "description": "o2BluePrimary30" }, "tagTextInactive": { - "value": "{palette.grey4}", + "value": "{palette.grey5}", "type": "color", - "description": "grey4" + "description": "grey5" }, "tagTextSuccess": { "value": "{palette.o2Green40}", diff --git a/tokens/telefonica.json b/tokens/telefonica.json index bac3f4cf84..7dd7e68e48 100644 --- a/tokens/telefonica.json +++ b/tokens/telefonica.json @@ -591,9 +591,9 @@ "description": "orchid10" }, "tagBackgroundActive": { - "value": "{palette.telefonicaBlue}", + "value": "{palette.telefonicaBlue10}", "type": "color", - "description": "telefonicaBlue" + "description": "telefonicaBlue10" }, "tagBackgroundInactive": { "value": "{palette.grey2}", diff --git a/tokens/tu.json b/tokens/tu.json index 9a1100547d..afb44f7cde 100644 --- a/tokens/tu.json +++ b/tokens/tu.json @@ -566,9 +566,9 @@ "description": "blue" }, "tagTextInactive": { - "value": "{palette.grey4}", + "value": "{palette.grey5}", "type": "color", - "description": "grey4" + "description": "grey5" }, "tagTextSuccess": { "value": "{palette.green75}", diff --git a/tokens/vivo-new.json b/tokens/vivo-new.json index 38b980b476..9b95c52b73 100644 --- a/tokens/vivo-new.json +++ b/tokens/vivo-new.json @@ -1178,9 +1178,9 @@ "description": "darkModeBlack" }, "tagTextPromo": { - "value": "{palette.vivoPurpleLight80}", + "value": "{palette.vivoPurpleLight50}", "type": "color", - "description": "vivoPurpleLight80" + "description": "vivoPurpleLight50" }, "tagTextActive": { "value": "{palette.vivoPurpleLight80}", diff --git a/tokens/vivo.json b/tokens/vivo.json index edbbaacc8d..3007438909 100644 --- a/tokens/vivo.json +++ b/tokens/vivo.json @@ -1178,9 +1178,9 @@ "description": "darkModeBlack" }, "tagTextPromo": { - "value": "{palette.vivoPurpleLight80}", + "value": "{palette.vivoPurpleLight50}", "type": "color", - "description": "vivoPurpleLight80" + "description": "vivoPurpleLight50" }, "tagTextActive": { "value": "{palette.vivoPurpleLight80}",