summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ui/style.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/style.go b/ui/style.go
index acc1a41..d86e9f4 100644
--- a/ui/style.go
+++ b/ui/style.go
@@ -227,7 +227,9 @@ func colorFromCode(code int) (color tcell.Color) {
}
// see <https://modern.ircdocs.horse/formatting.html>
-var identColorBlacklist = []int{1, 8, 16, 27, 28, 88, 89, 90, 91}
+var identColorBlacklist = []int{
+ 1, 8, 16, 17, 24, 27, 28, 36, 48, 60, 88, 89, 90, 91,
+}
func IdentColor(s string) (code int) {
h := fnv.New32()