Skip to content

Commit

Permalink
fix(theme): add gray to theme (#914)
Browse files Browse the repository at this point in the history
fix #912

* Add `gray` to theme
  • Loading branch information
a-kenji authored Nov 30, 2021
1 parent 798a57e commit adee5e7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions zellij-utils/src/input/theme.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ pub struct PaletteFromYaml {
pub fg: PaletteColorFromYaml,
pub bg: PaletteColorFromYaml,
pub black: PaletteColorFromYaml,
pub gray: PaletteColorFromYaml,
pub red: PaletteColorFromYaml,
pub green: PaletteColorFromYaml,
pub yellow: PaletteColorFromYaml,
Expand Down Expand Up @@ -79,6 +80,7 @@ impl From<PaletteFromYaml> for Palette {
fg: yaml.fg.into(),
bg: yaml.fg.into(),
black: yaml.black.into(),
gray: yaml.gray.into(),
red: yaml.red.into(),
green: yaml.green.into(),
yellow: yaml.yellow.into(),
Expand Down

0 comments on commit adee5e7

Please sign in to comment.