From 9559b14a33c652dde1b9402edd381d8bd6553d09 Mon Sep 17 00:00:00 2001 From: "R.Eugenio" Date: Mon, 29 Dec 2025 18:33:45 +0100 Subject: [PATCH] feat(style): Z-Design blend 85/15 para fondos visibles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cambio en deriveDarkPalette(): 85% negro + 15% color base (antes era 95/5, imperceptible) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/core/style.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/style.zig b/src/core/style.zig index 3d8770d..3ff7616 100644 --- a/src/core/style.zig +++ b/src/core/style.zig @@ -1039,8 +1039,8 @@ fn deriveDarkPalette(base: Color) PanelColorScheme { const dark_border = Color.rgb(60, 60, 65); return .{ - // Backgrounds: subtle tint of base color (5% base, 95% black) - .fondo_con_focus = base.blendTowards(black, 95), + // Backgrounds: visible tint of base color (15% base, 85% black) + .fondo_con_focus = base.blendTowards(black, 85), .fondo_sin_focus = black, // Text: high contrast