add reset to the color palette (#8083)

This commit is contained in:
West 2023-08-29 06:18:27 +00:00 committed by GitHub
parent 3ac2ac6dd6
commit 82cd445715
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -70,6 +70,7 @@ ### Color palettes
| Color Name |
| --- |
| `reset` |
| `black` |
| `red` |
| `green` |

View file

@ -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,