From 5947cd5b82b545e7711d242c89a807678d7d00d5 Mon Sep 17 00:00:00 2001 From: heaven Date: Sat, 18 Apr 2026 01:39:28 +0300 Subject: [PATCH] update background colors --- src/colors.css.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/colors.css.ts b/src/colors.css.ts index 49960166..e03e5a66 100644 --- a/src/colors.css.ts +++ b/src/colors.css.ts @@ -1,6 +1,10 @@ import { createTheme } from '@vanilla-extract/css'; import { color } from 'folds'; +// Базовая тёмная палитра приложения +const navDark = '#121314'; // левая панель (навигация) +const contentDark = '#0d0d0e'; // правая часть (контент/чат) + export const silverTheme = createTheme(color, { Background: { Container: '#DEDEDE', @@ -100,7 +104,7 @@ export const silverTheme = createTheme(color, { const darkThemeData = { Background: { - Container: '#121314', + Container: navDark, ContainerHover: '#262626', ContainerActive: '#333333', ContainerLine: '#404040', @@ -108,7 +112,7 @@ const darkThemeData = { }, Surface: { - Container: '#1e1e1e', + Container: contentDark, ContainerHover: '#333333', ContainerActive: '#404040', ContainerLine: '#4D4D4D',