summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2019-07-16 13:08:20 -0400
committerDan Davison <dandavison7@gmail.com>2019-07-16 13:09:05 -0400
commitf435458438604811309e850b2bed94b8f6dc7270 (patch)
treeecbaabe8f47d110c70c869e0c6366bedf4080b77
parent5ed325b3c713c90eca30e263940ac0ac4dc6fb6b (diff)
Tweak light theme colors
-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,
};