From e5572d534640953f86fed7eecefe0210d49c3925 Mon Sep 17 00:00:00 2001 From: "Zimin A.N." Date: Mon, 11 May 2026 17:01:54 +0300 Subject: [PATCH] =?UTF-8?q?fix(theme):=20de-saturate=20light=20bg=20?= =?UTF-8?q?=E2=80=94=20=D1=83=D0=B1=D1=80=D0=B0=D1=82=D1=8C=20=D0=B6=D1=91?= =?UTF-8?q?=D0=BB=D1=82=D1=8B=D0=B9=20Earth-cream=20tone?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Пользователь: 'этот желтый фон давай уберем'. Светлый bg #fbf8ee выглядел слишком cream/yellow на staging — особенно на больших areas страницы (список справочников, hover states). Color token changes (light theme только; dark не трогаем): --color-bg: #fbf8ee → #fafaf8 (off-white neutral) --color-surface-2: #f4eedc → #f2f1ee (subtle warm grey hover/stripe) --color-line: #e3dccb → #e4e1dc (de-saturated border) --color-line-2: #efe9d8 → #ecebe7 (subtle inner border) Brand accents preserved: --color-accent: #b05a2e (warm orange-brown) — unchanged --color-navy: #3a2818 (deep brown) — unchanged --color-warn / pink / green BG — unchanged (semantic states) Result: cleaner light theme, professional reading surface. Accent color по-прежнему даёт warmth для brand identity, но page bg больше не tints всё жёлтым. --- ordinis-admin-ui/src/styles.css | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/ordinis-admin-ui/src/styles.css b/ordinis-admin-ui/src/styles.css index 25a6ee5..1fe2e28 100644 --- a/ordinis-admin-ui/src/styles.css +++ b/ordinis-admin-ui/src/styles.css @@ -17,11 +17,14 @@ --color-ink: #1a1714; --color-ink-2: #52483d; --color-mute: #8c8276; - --color-bg: #fbf8ee; + /* Light bg: убрали жёлтый Earth-cream, neutral warm white (off-white grey). + * Accent цвета (navy/orange) сохраняют warmth, но page bg / surface-2 / line + * de-saturated для cleaner reading experience. */ + --color-bg: #fafaf8; --color-surface: #ffffff; - --color-surface-2: #f4eedc; - --color-line: #e3dccb; - --color-line-2: #efe9d8; + --color-surface-2: #f2f1ee; + --color-line: #e4e1dc; + --color-line-2: #ecebe7; --color-navy: #3a2818; --color-accent: #b05a2e; --color-accent-bg: rgb(176 90 46 / 11%);