From 61ff3eff5c794e1961e82deda2a10824f5a99ac7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E6=B6=9B?= Date: Mon, 21 Jul 2025 22:33:59 +0800 Subject: [PATCH] =?UTF-8?q?fix(swatch):=20=E4=BF=AE=E6=AD=A3=E9=A2=9C?= =?UTF-8?q?=E8=89=B2=E6=A0=B7=E6=9C=AC=E9=94=AE=E5=90=8D=E5=89=8D=E7=BC=80?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- color-module/src/schemes/q_style_2/swatch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/color-module/src/schemes/q_style_2/swatch.rs b/color-module/src/schemes/q_style_2/swatch.rs index dd0806a..6f78fa7 100644 --- a/color-module/src/schemes/q_style_2/swatch.rs +++ b/color-module/src/schemes/q_style_2/swatch.rs @@ -51,7 +51,7 @@ impl Swatch { let mut collection = LinkedHashMap::new(); for l in SWATCH_LIGHTINGS { - collection.insert(format!("{name}-{l:02}"), self.get_hex(l)); + collection.insert(format!("swatch-{name}-{l:02}"), self.get_hex(l)); } collection