From 289fe2eb78bb0fae690ab3e3d3e34e7b4aad9f86 Mon Sep 17 00:00:00 2001 From: JonKazama-Hellion Date: Tue, 5 May 2026 10:19:33 +0200 Subject: [PATCH] feat(themes): theme top-level record --- HellionChat/Themes/Theme.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 HellionChat/Themes/Theme.cs diff --git a/HellionChat/Themes/Theme.cs b/HellionChat/Themes/Theme.cs new file mode 100644 index 0000000..591bf49 --- /dev/null +++ b/HellionChat/Themes/Theme.cs @@ -0,0 +1,12 @@ +namespace HellionChat.Themes; + +public sealed record Theme( + string Slug, + string Name, + string Author, + string Description, + ThemeColors Colors, + ThemeLayout Layout, + ThemeTypography Typography, + bool IsBuiltIn +);