From 38c8237549b893df04269629d2bc7e65ba9f4ed1 Mon Sep 17 00:00:00 2001 From: Alexander Sergeev Date: Fri, 1 Sep 2023 13:13:48 +0300 Subject: [PATCH] =?UTF-8?q?Use=20'=E2=97=8C'=20for=20unchecked?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/theme/colorful.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/theme/colorful.rs b/src/theme/colorful.rs index ddbaab9..b3a056c 100644 --- a/src/theme/colorful.rs +++ b/src/theme/colorful.rs @@ -71,8 +71,8 @@ impl Default for ColorfulTheme { inactive_item_style: Style::new().for_stderr(), active_item_prefix: style("❯".to_string()).for_stderr().green(), inactive_item_prefix: style(" ".to_string()).for_stderr(), - checked_item_prefix: style("✔️".to_string()).for_stderr().blue(), - unchecked_item_prefix: style("❌".to_string()).for_stderr().red(), + checked_item_prefix: style("✔".to_string()).for_stderr().green(), + unchecked_item_prefix: style("◌".to_string()).for_stderr(), picked_item_prefix: style("❯".to_string()).for_stderr().green(), unpicked_item_prefix: style(" ".to_string()).for_stderr(), #[cfg(feature = "fuzzy-select")]