feat(themes): optional chat channel colors in theme schema

This commit is contained in:
2026-05-05 14:44:59 +02:00
parent fcbbd174b6
commit 53952717c0
4 changed files with 47 additions and 2 deletions
+2 -1
View File
@@ -8,5 +8,6 @@ public sealed record Theme(
ThemeColors Colors,
ThemeLayout Layout,
ThemeTypography Typography,
bool IsBuiltIn
bool IsBuiltIn,
ThemeChatColors? ChatColors = null
);