summaryrefslogtreecommitdiffstats
path: root/zellij-utils/src/input/theme.rs
diff options
context:
space:
mode:
authora-kenji <aks.kenji@protonmail.com>2021-11-30 11:03:20 +0100
committerGitHub <noreply@github.com>2021-11-30 11:03:20 +0100
commitadee5e78a9c66f3fb3eac6544620a0942312b55f (patch)
treedd348f17a774a9af7dd63958d8c786a5abeaa313 /zellij-utils/src/input/theme.rs
parent798a57e535251992c3bb81a9b15c7844d3df4c0e (diff)
fix(theme): add gray to theme (#914)
fix #912 * Add `gray` to theme
Diffstat (limited to 'zellij-utils/src/input/theme.rs')
-rw-r--r--zellij-utils/src/input/theme.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/zellij-utils/src/input/theme.rs b/zellij-utils/src/input/theme.rs
index da71b6334..bc867e237 100644
--- a/zellij-utils/src/input/theme.rs
+++ b/zellij-utils/src/input/theme.rs
@@ -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,
@@ -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(),