From a0d02dd8a25cad2367aca6ade9d9f5fd198e1ac9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E6=B6=9B?= Date: Thu, 15 Jan 2026 10:52:57 +0800 Subject: [PATCH] =?UTF-8?q?fix(baseline):=20=E8=B0=83=E6=95=B4=E6=9A=97?= =?UTF-8?q?=E6=A8=A1=E5=BC=8F=E8=83=8C=E6=99=AF=E4=BA=AE=E5=BA=A6=E8=AE=A1?= =?UTF-8?q?=E7=AE=97=EF=BC=8C=E5=A2=9E=E5=8A=A0=E4=BA=AE=E5=BA=A6=E6=AF=94?= =?UTF-8?q?=E4=BE=8B=E8=87=B3=201.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- color-module/src/schemes/q_style_2/baseline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/color-module/src/schemes/q_style_2/baseline.rs b/color-module/src/schemes/q_style_2/baseline.rs index f716a87..b076bbb 100644 --- a/color-module/src/schemes/q_style_2/baseline.rs +++ b/color-module/src/schemes/q_style_2/baseline.rs @@ -308,7 +308,7 @@ impl Baseline { let (foreground, background) = if is_dark { // Dark mode: foreground = neutral_lightest, background = neutral_darkest with +10% lightness let background_darkest = Oklch { - l: (neutral_darkest.l * 1.1).min(1.0), + l: (neutral_darkest.l * 1.2).min(1.0), ..*neutral_darkest }; (*neutral_lightest, background_darkest)