From 5a1b3a81b12db94bee3670d0d723b0a41a2ca03c Mon Sep 17 00:00:00 2001 From: zyl Date: Fri, 21 Jun 2024 17:27:27 -0700 Subject: [PATCH] fix theme color oops --- src/resource.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resource.rs b/src/resource.rs index 9379d1f..f16bde4 100644 --- a/src/resource.rs +++ b/src/resource.rs @@ -126,7 +126,7 @@ impl EmbedMetadata { } pub fn default_theme_color() -> String { - "ffc4fc".to_string() + "#ffc4fc".to_string() } }