From 73f8df292abfaee5aa8b33e51ae35ae213c7ba3f Mon Sep 17 00:00:00 2001 From: Pascal Thomet Date: Sun, 16 Jun 2024 18:38:46 +0200 Subject: [PATCH] Polish theme darcula --- src/hello_imgui/impl/imgui_theme.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/hello_imgui/impl/imgui_theme.cpp b/src/hello_imgui/impl/imgui_theme.cpp index 87df8f22..24730a7d 100644 --- a/src/hello_imgui/impl/imgui_theme.cpp +++ b/src/hello_imgui/impl/imgui_theme.cpp @@ -751,6 +751,9 @@ namespace ImGuiTheme ThemeTweakImpl::ApplySaturationMultiplier(style, saturation_multiplier, style); ThemeTweakImpl::ApplyAlphaMultiplier(style, alpha_bg_transparency, style); + style.FrameBorderSize = 1.f; + style.FrameRounding = 3.f; + return style; }