feat(themes): add basic ANSI theme (#3308)
This commit is contained in:
parent
4f40dd2020
commit
9c250d6df6
1 changed files with 21 additions and 0 deletions
21
zellij-utils/assets/themes/ansi.kdl
Normal file
21
zellij-utils/assets/themes/ansi.kdl
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
// Basic theme using only the 16 ANSI colors
|
||||||
|
// Allows one to customize theme via ones terminal color settings if the
|
||||||
|
// terminal emulator does not support truecolor (e.g. macOS Terminal.app)
|
||||||
|
|
||||||
|
// Note: there is no orange in the ANSI color palette, so we use bright red instead
|
||||||
|
|
||||||
|
themes {
|
||||||
|
ansi {
|
||||||
|
fg 7 // white
|
||||||
|
bg 8 // bright black
|
||||||
|
red 1
|
||||||
|
green 2
|
||||||
|
yellow 3
|
||||||
|
blue 4
|
||||||
|
magenta 5
|
||||||
|
orange 9 // bright red
|
||||||
|
cyan 6
|
||||||
|
black 0
|
||||||
|
white 15 // bright white
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue