We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1723558 + cc24058 commit 3cb999fCopy full SHA for 3cb999f
1 file changed
markut.go
@@ -1289,6 +1289,10 @@ var Subcommands = map[string]Subcommand{
1289
var color string
1290
if cursor != nil {
1291
color = cursor.(string)
1292
+ // Avoid generating dark user color
1293
+ if color == "#000000" {
1294
+ color = "#0000FF"
1295
+ }
1296
} else {
1297
// Taken from https://discuss.dev.twitch.com/t/default-user-color-in-chat/385
1298
// I don't know if it's still accurate, but I don't care, we just need some sort of
0 commit comments