update background colors
This commit is contained in:
parent
3717adb52e
commit
5947cd5b82
1 changed files with 6 additions and 2 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue