From d07f0f5f352f4b73e1c661342c2d432219d6ad0b Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Wed, 13 Aug 2025 14:03:42 +0200 Subject: [PATCH] feat: tweak home and palette styles --- src/tui/WidgetStyle.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tui/WidgetStyle.zig b/src/tui/WidgetStyle.zig index 818c913..557be81 100644 --- a/src/tui/WidgetStyle.zig +++ b/src/tui/WidgetStyle.zig @@ -82,16 +82,16 @@ pub const bars_top_bottom = &bars_top_bottom_static; pub const bars_left_right_static: @This() = .{ .padding = Margin.@"left/right/1", - .border = Border.box, + .border = Border.@"thick box (octant)", }; pub const bars_left_right = &bars_left_right_static; pub fn from_type(style_type: Type) *const @This() { return switch (style_type) { .none => default, - .palette => thick_boxed, + .palette => bars_top_bottom, .panel => default, - .home => default, + .home => bars_left_right, }; }