Sobrio for Zellij
A theme with sober colors, hence the name
This is a theme for Zellij, the terminal multiplexer. It uses the colors from the Sobrio theme to make your experience more unique.
Instalation
Installing this theme for Zellij is quite simple, just editing the config.kdl
will be enough.
This file is located in different places, depending on your OS:
- Linux:
~/.config/zellij
- MacOS:
~/Librar/Application Support/org.Zellij-Contributors.Zellij
If it is not already there, create one using the command:
mkdir ~/.config/zellij
zellij setup --dump-config > ~/.config/zellij/config.kdl
The theme code is the following:
themes {
sobrio {
fg "#5f5f5f"
bg "#121212"
red "#121212"
green "#d7af87"
yellow "#d7af87"
blue "#84afd7"
magenta "#fd6389"
orange "#d7af87"
cyan "#7cdce7"
black "#121212"
white "#ffffff"
}
sobrio_light {
fg "#121212"
bg "#5f5f5f"
red "#eeeeee"
green "#af875f"
yellow "#af875f"
blue "#6787af"
magenta "#dd4c4f"
orange "#af875f"
cyan "#5fafaf"
black "#ffffff"
white "#121212"
}
}
With the code above, just follow these 4 little steps:
- Paste the contents of the code you just saw at the end of your
config.kdl
. - Add the line
theme "sobrio"
ortheme "sobrio_light"
to yourconfig.kdl
and save the file. - ???
- Profit!