feat(themes): theme top-level record

This commit is contained in:
2026-05-05 10:19:33 +02:00
parent fe9e66b0ff
commit 289fe2eb78
+12
View File
@@ -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
);