feat(themes): optional chat channel colors in theme schema
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user