update background colors

This commit is contained in:
v.lagerev 2026-04-18 01:39:28 +03:00
parent 45995a7ffb
commit 7cb32e5aa5

View file

@ -1,6 +1,10 @@
import { createTheme } from '@vanilla-extract/css'; import { createTheme } from '@vanilla-extract/css';
import { color } from 'folds'; import { color } from 'folds';
// Базовая тёмная палитра приложения
const navDark = '#121314'; // левая панель (навигация)
const contentDark = '#0d0d0e'; // правая часть (контент/чат)
export const silverTheme = createTheme(color, { export const silverTheme = createTheme(color, {
Background: { Background: {
Container: '#DEDEDE', Container: '#DEDEDE',
@ -100,7 +104,7 @@ export const silverTheme = createTheme(color, {
const darkThemeData = { const darkThemeData = {
Background: { Background: {
Container: '#121314', Container: navDark,
ContainerHover: '#262626', ContainerHover: '#262626',
ContainerActive: '#333333', ContainerActive: '#333333',
ContainerLine: '#404040', ContainerLine: '#404040',
@ -108,7 +112,7 @@ const darkThemeData = {
}, },
Surface: { Surface: {
Container: '#1e1e1e', Container: contentDark,
ContainerHover: '#333333', ContainerHover: '#333333',
ContainerActive: '#404040', ContainerActive: '#404040',
ContainerLine: '#4D4D4D', ContainerLine: '#4D4D4D',