This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
Files
srv/cui/colours.go
Dave Gallant afbfa53ae6 Add feed description view (#12)
with colors!
2020-07-03 23:25:48 -04:00

12 lines
284 B
Go

package cui
import "github.com/jroimartin/gocui"
const (
feedItemSelectionBgColor = gocui.ColorCyan
feedItemSelectionFgColor = gocui.ColorBlack
feedNameSelectionBgColor = gocui.ColorWhite
feedNameSelectionFgColor = gocui.ColorBlack
descriptionFgColor = gocui.ColorCyan
)