Browse Source

Change channels List main text color to #6C6F93

rigormorrtiss 4 years ago
parent
commit
8b3f11175a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ui/lists.go

+ 1 - 1
ui/lists.go

@@ -8,7 +8,7 @@ import (
 func NewChannelsList(onChannelsListSelected func(i int, mainText string, secondaryText string, _ rune)) (channelsList *tview.List) {
 	channelsList = tview.NewList().
 		ShowSecondaryText(false).
-		SetMainTextColor(tcell.ColorDarkGray).
+		SetMainTextColor(tcell.GetColor("#6C6F93")).
 		SetSelectedTextColor(tcell.ColorWhite).
 		SetSelectedBackgroundColor(tview.Styles.PrimitiveBackgroundColor).
 		SetSelectedFunc(onChannelsListSelected)