From 79af7745699091ecc058cffbf659812e163f3928 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Mon, 17 Nov 2025 10:46:12 -0800 Subject: [PATCH] adjust default theme colors --- src/shared/themes/default.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/shared/themes/default.ts b/src/shared/themes/default.ts index afb5ab005..92add0369 100644 --- a/src/shared/themes/default.ts +++ b/src/shared/themes/default.ts @@ -18,8 +18,8 @@ export const defaultTheme: AppThemeConfiguration = { 'scrollbar-track-hover-background': 'transparent', }, colors: { - background: 'rgb(16, 16, 16)', - 'background-alternate': 'rgb(0, 0, 0)', + background: 'rgb(12, 12, 12)', + 'background-alternate': 'rgb(8, 8, 8)', black: 'rgb(0, 0, 0)', foreground: 'rgb(225, 225, 225)', 'foreground-muted': 'rgb(150, 150, 150)', @@ -27,7 +27,7 @@ export const defaultTheme: AppThemeConfiguration = { 'state-info': 'rgb(53, 116, 252)', 'state-success': 'rgb(50, 204, 50)', 'state-warning': 'rgb(255, 120, 120)', - surface: 'rgb(24, 24, 24)', + surface: 'rgb(20, 20, 20)', 'surface-foreground': 'rgb(215, 215, 215)', white: 'rgb(255, 255, 255)', },