aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/theme.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/theme.rs')
-rw-r--r--helix-term/src/theme.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-term/src/theme.rs b/helix-term/src/theme.rs
index 5b6eb7de..4b2f102e 100644
--- a/helix-term/src/theme.rs
+++ b/helix-term/src/theme.rs
@@ -72,6 +72,10 @@ impl Default for Theme {
"module" => Style::default().fg(Color::Rgb(255, 0, 0)), // white
"variable" => Style::default().fg(Color::Rgb(255, 0, 0)), // white
"function.builtin" => Style::default().fg(Color::Rgb(255, 0, 0)), // white
+
+ "ui.background" => Style::default().bg(Color::Rgb(59, 34, 76)), // midnight
+ "ui.linenr" => Style::default().fg(Color::Rgb(90, 89, 119)), // comet
+ "ui.statusline" => Style::default().bg(Color::Rgb(40, 23, 51)), // revolver
};
let scopes = mapping.keys().map(ToString::to_string).collect();