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 +);