Skip to content

Commit

Permalink
update colors
Browse files Browse the repository at this point in the history
  • Loading branch information
YamatoSecurity committed Nov 9, 2024
1 parent e16cbc1 commit 6a30536
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1245,15 +1245,15 @@ impl App {
}
} else {
ColorfulTheme {
active_item_prefix: Style::new().color256(51).apply_to("❯".to_string()), // cyan
active_item_prefix: Style::new().color256(214).apply_to("❯".to_string()), // orange
checked_item_prefix: Style::new().color256(46).apply_to("✔".to_string()), // green
picked_item_prefix: Style::new().color256(51).apply_to("❯".to_string()), // cyan
picked_item_prefix: Style::new().color256(214).apply_to("❯".to_string()), // orange
active_item_style: Style::new().color256(51), // cyan
values_style: Style::new().color256(46), // green
prompt_prefix: Style::new().color256(51).apply_to("?".to_string()), // cyan
prompt_suffix: Style::new().color256(51).apply_to("›".to_string()), // cyan
prompt_prefix: Style::new().color256(214).apply_to("?".to_string()), // orange
prompt_suffix: Style::new().color256(15).apply_to("›".to_string()), // cyan
defaults_style: Style::new().color256(51), // cyan
hint_style: Style::new().color256(51), // cyan
hint_style: Style::new().color256(214), // orange
success_prefix: Style::new().color256(46).apply_to("✔".to_string()), // green
success_suffix: Style::new().color256(15).apply_to("·".to_string()), // white
error_prefix: Style::new().color256(9).apply_to("✘".to_string()), // red
Expand Down

0 comments on commit 6a30536

Please sign in to comment.