From ae5b528a08467cd64d0e949bbaf77b901ace9ba3 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Thu, 30 Jan 2025 12:13:46 +0100 Subject: [PATCH] feat(tabs): use more widely available glyphs for tab styling --- src/tui/status/tabs.zig | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/tui/status/tabs.zig b/src/tui/status/tabs.zig index e148113..1a56aa0 100644 --- a/src/tui/status/tabs.zig +++ b/src/tui/status/tabs.zig @@ -23,28 +23,28 @@ const @"style.config" = struct { active_fg: colors = .active_fg, active_bg: colors = .active_bg, - active_left: []const u8 = "◢█", + active_left: []const u8 = "🭅", active_left_fg: colors = .active_bg, active_left_bg: colors = .inactive_bg, - active_right: []const u8 = "█◣", + active_right: []const u8 = "🭐", active_right_fg: colors = .active_bg, active_right_bg: colors = .inactive_bg, inactive_fg: colors = .inactive_fg, inactive_bg: colors = .inactive_bg, - inactive_left: []const u8 = " ", + inactive_left: []const u8 = " ", inactive_left_fg: colors = .inactive_fg, inactive_left_bg: colors = .inactive_bg, - inactive_right: []const u8 = " ", + inactive_right: []const u8 = " ", inactive_right_fg: colors = .inactive_fg, inactive_right_bg: colors = .inactive_bg, selected_fg: colors = .active_fg, selected_bg: colors = .active_bg, - selected_left: []const u8 = "◢█", + selected_left: []const u8 = "🭅", selected_left_fg: colors = .active_bg, selected_left_bg: colors = .inactive_bg, - selected_right: []const u8 = "█◣", + selected_right: []const u8 = "🭐", selected_right_fg: colors = .active_bg, selected_right_bg: colors = .inactive_bg,