add `reset` to the color palette (#8083)

main
West 9 months ago committed by GitHub
parent 3ac2ac6dd6
commit 82cd445715
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -70,6 +70,7 @@ over it and is merged into the default palette.
| Color Name | | Color Name |
| --- | | --- |
| `reset` |
| `black` | | `black` |
| `red` | | `red` |
| `green` | | `green` |

@ -359,6 +359,7 @@ impl Default for ThemePalette {
fn default() -> Self { fn default() -> Self {
Self { Self {
palette: hashmap! { palette: hashmap! {
"reset".to_string() => Color::Reset,
"black".to_string() => Color::Black, "black".to_string() => Color::Black,
"red".to_string() => Color::Red, "red".to_string() => Color::Red,
"green".to_string() => Color::Green, "green".to_string() => Color::Green,

Loading…
Cancel
Save