feat(tabs): use more widely available glyphs for tab styling

This commit is contained in:
CJ van den Berg 2025-01-30 12:13:46 +01:00
parent e6e0301a78
commit ae5b528a08
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -23,28 +23,28 @@ const @"style.config" = struct {
active_fg: colors = .active_fg, active_fg: colors = .active_fg,
active_bg: colors = .active_bg, active_bg: colors = .active_bg,
active_left: []const u8 = "◢█", active_left: []const u8 = "🭅",
active_left_fg: colors = .active_bg, active_left_fg: colors = .active_bg,
active_left_bg: colors = .inactive_bg, active_left_bg: colors = .inactive_bg,
active_right: []const u8 = "█◣", active_right: []const u8 = "🭐",
active_right_fg: colors = .active_bg, active_right_fg: colors = .active_bg,
active_right_bg: colors = .inactive_bg, active_right_bg: colors = .inactive_bg,
inactive_fg: colors = .inactive_fg, inactive_fg: colors = .inactive_fg,
inactive_bg: colors = .inactive_bg, inactive_bg: colors = .inactive_bg,
inactive_left: []const u8 = " ", inactive_left: []const u8 = " ",
inactive_left_fg: colors = .inactive_fg, inactive_left_fg: colors = .inactive_fg,
inactive_left_bg: colors = .inactive_bg, inactive_left_bg: colors = .inactive_bg,
inactive_right: []const u8 = " ", inactive_right: []const u8 = " ",
inactive_right_fg: colors = .inactive_fg, inactive_right_fg: colors = .inactive_fg,
inactive_right_bg: colors = .inactive_bg, inactive_right_bg: colors = .inactive_bg,
selected_fg: colors = .active_fg, selected_fg: colors = .active_fg,
selected_bg: colors = .active_bg, selected_bg: colors = .active_bg,
selected_left: []const u8 = "◢█", selected_left: []const u8 = "🭅",
selected_left_fg: colors = .active_bg, selected_left_fg: colors = .active_bg,
selected_left_bg: colors = .inactive_bg, selected_left_bg: colors = .inactive_bg,
selected_right: []const u8 = "█◣", selected_right: []const u8 = "🭐",
selected_right_fg: colors = .active_bg, selected_right_fg: colors = .active_bg,
selected_right_bg: colors = .inactive_bg, selected_right_bg: colors = .inactive_bg,