summaryrefslogtreecommitdiffstats
path: root/src/features
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-07-01 12:16:58 -0400
committerDan Davison <dandavison7@gmail.com>2020-07-01 12:19:41 -0400
commite8ae5c6afc97eab8c0eb9bc21ae4d2a22619dabc (patch)
tree3c80e831b68f8ce4d2207fe9f405eb2c123bb379 /src/features
parent811bf56114dc7cadf53bd9b80e16550a0cb03bde (diff)
Change line-numbers-{minus,plus}-style dark-mode defaults
Diffstat (limited to 'src/features')
-rw-r--r--src/features/line_numbers.rs12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/features/line_numbers.rs b/src/features/line_numbers.rs
index 0e84975c..bd2ad0ef 100644
--- a/src/features/line_numbers.rs
+++ b/src/features/line_numbers.rs
@@ -34,11 +34,7 @@ pub fn make_feature() -> Vec<(String, OptionValueFunction)> {
opt => if opt.computed.is_light_mode {
"red".to_string()
} else {
- color::color_to_string(
- color::get_minus_emph_background_color_default(
- opt.computed.is_light_mode,
- opt.computed.true_color,
- ))
+ "88"
}
),
(
@@ -54,11 +50,7 @@ pub fn make_feature() -> Vec<(String, OptionValueFunction)> {
opt => if opt.computed.is_light_mode {
"green".to_string()
} else {
- color::color_to_string(
- color::get_plus_emph_background_color_default(
- opt.computed.is_light_mode,
- opt.computed.true_color,
- ))
+ "28"
}
)
])