diff options
author | West | 2023-08-29 06:18:27 +0000 |
---|---|---|
committer | GitHub | 2023-08-29 06:18:27 +0000 |
commit | 82cd44571569216bb18f37ee22965045574bdd1a (patch) | |
tree | 67366e477acecf39eef19cfe5566220df70b88d1 /helix-view | |
parent | 3ac2ac6dd6c517cf5e0d4a26a26c1343c45fbbde (diff) |
add `reset` to the color palette (#8083)
Diffstat (limited to 'helix-view')
-rw-r--r-- | helix-view/src/theme.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-view/src/theme.rs b/helix-view/src/theme.rs index bf3379ca..7a9aae51 100644 --- a/helix-view/src/theme.rs +++ b/helix-view/src/theme.rs @@ -359,6 +359,7 @@ impl Default for ThemePalette { fn default() -> Self { Self { palette: hashmap! { + "reset".to_string() => Color::Reset, "black".to_string() => Color::Black, "red".to_string() => Color::Red, "green".to_string() => Color::Green, |