boltbrowser/style.go

25 lines
539 B
Go
Raw Normal View History

2015-04-24 22:53:33 +00:00
package main
import "github.com/nsf/termbox-go"
type Style struct {
default_bg termbox.Attribute
default_fg termbox.Attribute
2015-04-28 15:05:24 +00:00
title_fg termbox.Attribute
title_bg termbox.Attribute
cursor_fg termbox.Attribute
cursor_bg termbox.Attribute
2015-04-24 22:53:33 +00:00
}
func defaultStyle() Style {
var style Style
2015-04-28 15:05:24 +00:00
style.default_bg = termbox.ColorBlack
style.default_fg = termbox.ColorWhite
style.title_fg = termbox.ColorBlack
style.title_bg = termbox.ColorRed
style.cursor_fg = termbox.ColorBlack
style.cursor_bg = termbox.ColorRed
2015-04-24 22:53:33 +00:00
return style
}