From b63cf44d887e3f4d0c210929ee85b1ec1c558da7 Mon Sep 17 00:00:00 2001 From: "R.Eugenio" Date: Tue, 30 Dec 2025 21:19:53 +0100 Subject: [PATCH] fix(colors): Disable perceptual correction (wrong logic) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The current implementation boosts red colors when it should compensate blue colors instead. Disabled until the algorithm is revised. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/core/style.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/style.zig b/src/core/style.zig index f3f9f39..edef985 100644 --- a/src/core/style.zig +++ b/src/core/style.zig @@ -42,9 +42,9 @@ pub fn isFancy() bool { // ============================================================================= /// Enable perceptual correction for panel colors. -/// When enabled, colors with low perceived luminance (e.g., red, magenta) -/// get a subtle boost to match the visual contrast of brighter colors (e.g., blue). -var perceptual_correction_enabled: bool = true; +/// NOTE: Desactivado por defecto - la lógica actual boostea el rojo cuando +/// debería compensar el azul. Requiere revisión del algoritmo. +var perceptual_correction_enabled: bool = false; /// Get whether perceptual correction is enabled pub fn isPerceptualCorrectionEnabled() bool {