Extract display name logic to NameFormatService, refactor colored name parsing, and improve channel list scrolling.

This commit is contained in:
2026-08-01 22:42:37 +02:00
parent 5987ee4133
commit 5be3072b26
9 changed files with 175 additions and 139 deletions
@@ -0,0 +1,4 @@
export interface ColoredNameSegment {
text: string;
color?: string;
}