aboutsummaryrefslogtreecommitdiff
path: root/.config/wezterm/colors.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/wezterm/colors.lua')
-rw-r--r--.config/wezterm/colors.lua48
1 files changed, 48 insertions, 0 deletions
diff --git a/.config/wezterm/colors.lua b/.config/wezterm/colors.lua
new file mode 100644
index 0000000..58ae639
--- /dev/null
+++ b/.config/wezterm/colors.lua
@@ -0,0 +1,48 @@
+return {
+ foreground = C.fg,
+ background = C.bg,
+
+ cursor_bg = C.fg,
+ cursor_fg = C.bg,
+ cursor_border = C.bg,
+
+ selection_bg = C.bright.black,
+ selection_fg = C.fg,
+
+ visual_bell = C.white,
+
+ ansi = {
+ C.black,
+ C.red,
+ C.green,
+ C.yellow,
+ C.blue,
+ C.pink,
+ C.cyan,
+ C.white,
+ },
+ brights = {
+ C.bright.black,
+ C.bright.red,
+ C.bright.green,
+ C.bright.yellow,
+ C.bright.blue,
+ C.bright.pink,
+ C.bright.cyan,
+ C.bright.white,
+ },
+
+ tab_bar = {
+ background = C.bg,
+
+ active_tab = {
+ bg_color = C.bg,
+ fg_color = C.fg
+ },
+
+ inactive_tab = {
+ bg_color = C.bg,
+ fg_color = C.fg_dark
+ },
+ }
+}