From 6650e045658b7a99a7b1e5ff6bc62bf486405dba Mon Sep 17 00:00:00 2001 From: Francis Rupert Date: Thu, 2 Mar 2023 17:01:55 -0600 Subject: [PATCH] feat(colors): initial theme draft --- base.json | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) diff --git a/base.json b/base.json index c15cf65..f0b0e8c 100644 --- a/base.json +++ b/base.json @@ -2139,6 +2139,90 @@ } } } + }, + "theme": { + "sidebar": { + "color": { + "foreground": { + "value": "{color.text.primary}", + "type": "color" + }, + "background": { + "value": "{color.surface.secondary}", + "type": "color" + } + }, + "icon": { + "color": { + "foreground": { + "value": "{color.text.secondary}", + "type": "color" + } + } + }, + "status": { + "color": { + "foreground": { + "value": "{color.text.tertiary}", + "type": "color" + } + } + }, + "row": { + "color": { + "background": { + "value": "{color.neutral.transparent}", + "type": "color" + }, + "background-hover": { + "value": "{color.black.300}", + "type": "color" + } + } + }, + "active-row": { + "color": { + "foreground": { + "value": "{color.text.primary}", + "type": "color" + }, + "background": { + "value": "{color.black.200}", + "type": "color" + } + } + } + }, + "presence": { + "color": { + "background": { + "available": { + "value": "{color.green.400}", + "type": "color" + }, + "busy-unavailable": { + "value": "{color.red.300}", + "type": "color" + }, + "busy": { + "value": "{color.gold.300}", + "type": "color" + } + } + } + }, + "mention": { + "color": { + "foreground": { + "value": "{color.neutral.white}", + "type": "color" + }, + "background": { + "value": "{color.brand.purple}", + "type": "color" + } + } + } } }, "semantic/dark": {