4000bbd199
Security / scan (push) Successful in 12s
Updated .editorconfig to set indent_style=space and indent_size=4 for C# files. Reformat all .cs files to apply the new indentation settings. No code logic changes, just whitespace reformatting. also updated some comments in files in shorter and Precise way. No logic changes, just comment rewording for clarity and conciseness.
8 lines
285 B
C#
8 lines
285 B
C#
using HellionChat.Code;
|
|
|
|
namespace HellionChat.Themes;
|
|
|
|
// Optional per-theme chat colours applied to Configuration.ChatColours on user request.
|
|
// Themes without this leave channel colours untouched.
|
|
public sealed record ThemeChatColors(IReadOnlyDictionary<ChatType, uint> Channels);
|