From 0dc6fae7b74b554d905d3cd2524bfd00f346f4f3 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Wed, 23 Oct 2024 20:05:56 +0200 Subject: [PATCH] fix: reduce modal background fade amount --- src/tui/ModalBackground.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tui/ModalBackground.zig b/src/tui/ModalBackground.zig index 3ad3b3b..b7ef4b1 100644 --- a/src/tui/ModalBackground.zig +++ b/src/tui/ModalBackground.zig @@ -13,7 +13,7 @@ pub fn Options(context: type) type { ctx: Context, dim: u8 = 255, - dim_target: u8 = 128, + dim_target: u8 = 192, on_click: *const fn (ctx: context, self: *State(Context)) void = on_click_exit_overlay_mode, on_click2: *const fn (ctx: context, self: *State(Context)) void = do_nothing,