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.lua78
1 files changed, 39 insertions, 39 deletions
diff --git a/.config/wezterm/colors.lua b/.config/wezterm/colors.lua
index 58ae639..e290a12 100644
--- a/.config/wezterm/colors.lua
+++ b/.config/wezterm/colors.lua
@@ -1,48 +1,48 @@
return {
- foreground = C.fg,
- background = C.bg,
+ foreground = C.fg(),
+ background = C.bg(),
- cursor_bg = C.fg,
- cursor_fg = C.bg,
- cursor_border = C.bg,
+ cursor_bg = C.fg(),
+ cursor_fg = C.bg(),
+ cursor_border = C.bg(),
- selection_bg = C.bright.black,
- selection_fg = C.fg,
+ selection_bg = C.bg.high,
+ selection_fg = C.fg(),
- visual_bell = C.white,
+ visual_bell = C.fg(),
- 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,
- },
+ ansi = {
+ C.bg.lowest,
+ C.red(),
+ C.green(),
+ C.yellow(),
+ C.blue(),
+ C.pink(),
+ C.cyan(),
+ C.fg(),
+ },
+ brights = {
+ C.bg.low,
+ C.red.bright,
+ C.green.bright,
+ C.yellow.bright,
+ C.blue.bright,
+ C.pink.bright,
+ C.cyan.bright,
+ C.fg.high,
+ },
- tab_bar = {
- background = C.bg,
+ tab_bar = {
+ background = C.bg(),
- active_tab = {
- bg_color = C.bg,
- fg_color = C.fg
- },
+ active_tab = {
+ bg_color = C.bg.high,
+ fg_color = C.fg(),
+ },
- inactive_tab = {
- bg_color = C.bg,
- fg_color = C.fg_dark
- },
- }
+ inactive_tab = {
+ bg_color = C.bg(),
+ fg_color = C.fg.low,
+ },
+ },
}