diff options
author | Blaž Hrastnik | 2020-10-20 06:42:53 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-12-03 04:10:34 +0000 |
commit | 49254d7180c8b92be5426cab20914b0343c9282c (patch) | |
tree | d779982070907c581511b13598ec148c3055f3a6 /helix-view/src | |
parent | f9bfba4d96f80eb41beb91702558f6f165a0e70f (diff) |
Total mess but it works: diagnostic marking.
Diffstat (limited to 'helix-view/src')
-rw-r--r-- | helix-view/src/theme.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-view/src/theme.rs b/helix-view/src/theme.rs index 4cc399ed..809ec05d 100644 --- a/helix-view/src/theme.rs +++ b/helix-view/src/theme.rs @@ -157,6 +157,8 @@ impl Default for Theme { "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 + + "warning" => Style::default().fg(Color::Rgb(255, 205, 28)), }; let scopes = mapping.keys().map(ToString::to_string).collect(); |