summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2019-12-12 18:19:20 -0500
committerDan Davison <dandavison7@gmail.com>2019-12-12 18:19:20 -0500
commit0b4452165889406245afedc76434e68d03a881c9 (patch)
tree87154b37a975f11df20b66f6864dfbdd87480453
parente7502c85f0ac08895de02c04ec813677bbbd8ca5 (diff)
Change --plus-emph-color default for dark mode
Fixes #71, thanks @YaLTeR
-rw-r--r--src/style.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/style.rs b/src/style.rs
index bbb05a2f..be38e02d 100644
--- a/src/style.rs
+++ b/src/style.rs
@@ -69,9 +69,9 @@ pub const DARK_THEME_PLUS_COLOR: Color = Color {
};
pub const DARK_THEME_PLUS_EMPH_COLOR: Color = Color {
- r: 0x0E,
- g: 0x7C,
- b: 0x0E,
+ r: 0x00,
+ g: 0x60,
+ b: 0x00,
a: 0xff,
};