From ed46084d92160895d22857f428b22e30221864c7 Mon Sep 17 00:00:00 2001 From: Francis Rupert Date: Fri, 26 May 2023 13:50:51 -0500 Subject: [PATCH] feat(theme): leftbar row's states' dark theme opacity --- base.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/base.json b/base.json index f713966..9e9f3b0 100644 --- a/base.json +++ b/base.json @@ -4471,6 +4471,53 @@ } } } + }, + "row": { + "color": { + "background-hover": { + "value": "{theme.color.base}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": ".18", + "space": "hsl" + } + } + } + }, + "background-active": { + "value": "{theme.color.base}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": ".24", + "space": "hsl" + } + } + } + } + } + }, + "selected-row": { + "color": { + "background": { + "value": "{theme.color.base}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": ".2", + "space": "hsl" + } + } + } + } + } } } }