From 9c250d6df61da2519538a97d66d29e303298db2b Mon Sep 17 00:00:00 2001 From: Mike Greiling Date: Fri, 25 Oct 2024 03:14:53 -0500 Subject: [PATCH] feat(themes): add basic ANSI theme (#3308) --- zellij-utils/assets/themes/ansi.kdl | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 zellij-utils/assets/themes/ansi.kdl diff --git a/zellij-utils/assets/themes/ansi.kdl b/zellij-utils/assets/themes/ansi.kdl new file mode 100644 index 00000000..ba1adda1 --- /dev/null +++ b/zellij-utils/assets/themes/ansi.kdl @@ -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 + } +}