summaryrefslogtreecommitdiffstats
path: root/src/style.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/style.rs')
-rw-r--r--src/style.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/style.rs b/src/style.rs
index 606e4006..89582348 100644
--- a/src/style.rs
+++ b/src/style.rs
@@ -16,15 +16,15 @@ pub fn is_light_theme(theme: &str) -> bool {
pub const LIGHT_THEME_MINUS_COLOR: Color = Color {
r: 0xff,
- g: 0xd0,
- b: 0xd0,
+ g: 0xe0,
+ b: 0xe0,
a: 0xff,
};
pub const LIGHT_THEME_MINUS_EMPH_COLOR: Color = Color {
- r: 0xef,
- g: 0xa0,
- b: 0xa0,
+ r: 0xff,
+ g: 0xb0,
+ b: 0xb0,
a: 0xff,
};