feat(tabs): use more widely available glyphs for tab styling
This commit is contained in:
parent
e6e0301a78
commit
ae5b528a08
1 changed files with 6 additions and 6 deletions
|
@ -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,
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue