From 990edd8300580d9c38e73c6c53e1f3448d054b7c Mon Sep 17 00:00:00 2001 From: JonKazama-Hellion Date: Tue, 5 May 2026 10:19:03 +0200 Subject: [PATCH] feat(themes): theme layout record --- HellionChat/Themes/ThemeLayout.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 HellionChat/Themes/ThemeLayout.cs diff --git a/HellionChat/Themes/ThemeLayout.cs b/HellionChat/Themes/ThemeLayout.cs new file mode 100644 index 0000000..116c2a3 --- /dev/null +++ b/HellionChat/Themes/ThemeLayout.cs @@ -0,0 +1,14 @@ +namespace HellionChat.Themes; + +// Layout-Werte spiegeln die ImGuiStyleVar-Slots, die HellionStyle pusht. +public sealed record ThemeLayout( + float WindowRounding, + float ChildRounding, + float PopupRounding, + float FrameRounding, + float GrabRounding, + float TabRounding, + float ScrollbarRounding, + float WindowBorderSize, + float FrameBorderSize +);