From b18ef4ea4c7f15edf3da91dcd113c8044d1212e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E6=B6=9B?= Date: Thu, 15 Jan 2026 13:07:18 +0800 Subject: [PATCH] =?UTF-8?q?fix(scheme):=20=E4=BF=AE=E5=A4=8D=E8=BE=93?= =?UTF-8?q?=E5=87=BA=20CSS=20=E5=8F=98=E9=87=8F=E6=97=B6=E7=BC=BA=E5=B0=91?= =?UTF-8?q?=E5=88=86=E5=8F=B7=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- color-module/src/schemes/q_style_2/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/color-module/src/schemes/q_style_2/mod.rs b/color-module/src/schemes/q_style_2/mod.rs index 961944c..8ae6aa8 100644 --- a/color-module/src/schemes/q_style_2/mod.rs +++ b/color-module/src/schemes/q_style_2/mod.rs @@ -148,7 +148,7 @@ impl SchemeExport for QScheme2 { collection.push(format!("--color-{key}: light-dark(#{light}, #{dark});")); } (Some(color), None) | (None, Some(color)) => { - collection.push(format!("--color-{key}: #{color}")); + collection.push(format!("--color-{key}: #{color};")); } (None, None) => {} }