fix(theme): de-saturate light bg — убрать жёлтый Earth-cream tone

Пользователь: 'этот желтый фон давай уберем'. Светлый 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 всё жёлтым.
This commit is contained in:
Zimin A.N.
2026-05-11 17:01:54 +03:00
parent 090bff56ce
commit e5572d5346
+7 -4
View File
@@ -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%);