From 6ad50529b79872496e10dd8315a092176b4bb7e8 Mon Sep 17 00:00:00 2001 From: Jakub Kotula <520927+jkbktl@users.noreply.github.com> Date: Thu, 16 Mar 2023 13:25:40 +0100 Subject: [PATCH] Fix indigo token values (#351) --- packages/components/src/tokens.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/components/src/tokens.ts b/packages/components/src/tokens.ts index 54b74ce5..63e37e63 100644 --- a/packages/components/src/tokens.ts +++ b/packages/components/src/tokens.ts @@ -70,13 +70,13 @@ export const tokens = createTokens({ 'purple-50-opa-20': 'hsla(263, 44%, 57%, 0.2)', 'purple-50-opa-30': 'hsla(263, 44%, 57%, 0.3)', 'purple-50-opa-40': 'hsla(263, 44%, 57%, 0.4)', - 'indigo-50': 'background: hsla(217, 30%, 41%, 1)', - 'indigo-60': 'background: hsla(217, 31%, 35%, 1)', - 'indigo-50-opa-5': 'background: hsla(217, 30%, 41%, 0.05)', - 'indigo-50-opa-10': 'background: hsla(217, 30%, 41%, 0.1)', - 'indigo-50-opa-20': 'background: hsla(217, 30%, 41%, 0.2)', - 'indigo-50-opa-30': 'background: hsla(217, 30%, 41%, 0.3)', - 'indigo-50-opa-40': 'background: hsla(217, 30%, 41%, 0.4)', + 'indigo-50': 'hsla(217, 30%, 41%, 1)', + 'indigo-60': 'hsla(217, 31%, 35%, 1)', + 'indigo-50-opa-5': 'hsla(217, 30%, 41%, 0.05)', + 'indigo-50-opa-10': 'hsla(217, 30%, 41%, 0.1)', + 'indigo-50-opa-20': 'hsla(217, 30%, 41%, 0.2)', + 'indigo-50-opa-30': 'hsla(217, 30%, 41%, 0.3)', + 'indigo-50-opa-40': 'hsla(217, 30%, 41%, 0.4)', 'turquoise-50': 'hsla(193, 41%, 45%, 1)', 'turquoise-60': 'hsla(193, 41%, 38%, 1)', 'turquoise-50-opa-5': 'hsla(193, 41%, 45%, 0.05)',