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
+8
View File
@@ -52,6 +52,14 @@ internal static class ThemeJsonWriter
writer.WriteNumber("frameBorderSize", theme.Layout.FrameBorderSize);
writer.WriteEndObject();
if (theme.ChatColors is { Channels.Count: > 0 } cc)
{
writer.WriteStartObject("chatChannels");
foreach (var kvp in cc.Channels)
writer.WriteString(kvp.Key.ToString(), $"#{kvp.Value:X8}");
writer.WriteEndObject();
}
writer.WriteEndObject();
}