diff --git a/src/render/string.rs b/src/render/string.rs index 584684f..0dec67f 100644 --- a/src/render/string.rs +++ b/src/render/string.rs @@ -11,7 +11,7 @@ pub trait Element: Copy { impl Element for char { fn default_color(color: Color) -> Self { - color.select('#', ' ') + color.select('█', ' ') } fn strlen(self) -> usize { @@ -25,7 +25,7 @@ impl Element for char { impl<'a> Element for &'a str { fn default_color(color: Color) -> Self { - color.select("#", " ") + color.select("█", " ") } fn strlen(self) -> usize {