22 lines
741 B
Go
22 lines
741 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
"github.com/gdamore/tcell/v2"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
ColorBackground = tcell.ColorDefault
|
||
|
ColorSelectedBoarder = tcell.ColorRed
|
||
|
ColorBluredBoarder = tcell.ColorWhite
|
||
|
ColorText = tcell.ColorWhite
|
||
|
ColorTextAccent = tcell.ColorYellow
|
||
|
ColorPlaybackProgressElapsed = tcell.ColorLightCyan
|
||
|
ColorPlaybackProgressRemaining = tcell.ColorBlack
|
||
|
ColorQueuePlayedBg = tcell.ColorBlack
|
||
|
ColorQueuePlayingBg = tcell.ColorDarkRed
|
||
|
ColorButtonBg = tcell.ColorBlue
|
||
|
ColorButtonTxt = tcell.ColorBlack
|
||
|
ColorButtonSelectedBg = tcell.ColorYellow
|
||
|
ColorButtonSelectedTxt = tcell.ColorDarkRed
|
||
|
)
|