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) => {} }