* refactor: move themes to zellij-assets * feat: add theme to the binary * chore: move new theme from example to assets
34 lines
No EOL
685 B
Text
34 lines
No EOL
685 B
Text
// This file shows how to write a theme file
|
|
// using `gruvbox` theme.
|
|
|
|
themes {
|
|
// example of how to set a theme in RGB format
|
|
gruvbox-light {
|
|
fg 60 56 54
|
|
bg 251 82 75
|
|
black 40 40 40
|
|
red 205 75 69
|
|
green 152 151 26
|
|
yellow 215 153 33
|
|
blue 69 133 136
|
|
magenta 177 98 134
|
|
cyan 104 157 106
|
|
white 213 196 161
|
|
orange 214 93 14
|
|
}
|
|
|
|
// example of how to set a theme in HEX format
|
|
gruvbox-dark {
|
|
fg "#D5C4A1"
|
|
bg "#282828"
|
|
black "#3C3836"
|
|
red "#CC241D"
|
|
green "#98971A"
|
|
yellow "#D79921"
|
|
blue "#3C8588"
|
|
magenta "#B16286"
|
|
cyan "#689D6A"
|
|
white "#FBF1C7"
|
|
orange "#D65D0E"
|
|
}
|
|
} |