Skip to content

Commit

Permalink
Use ColorDefault as default bg and fg color
Browse files Browse the repository at this point in the history
  • Loading branch information
jroimartin committed Aug 16, 2017
1 parent 7e8dafc commit 7ba3ea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ func NewGui(mode OutputMode) (*Gui, error) {

g.maxX, g.maxY = termbox.Size()

g.BgColor, g.FgColor = ColorBlack, ColorWhite
g.SelBgColor, g.SelFgColor = ColorBlack, ColorWhite
g.BgColor, g.FgColor = ColorDefault, ColorDefault
g.SelBgColor, g.SelFgColor = ColorDefault, ColorDefault

return g, nil
}
Expand Down

0 comments on commit 7ba3ea9

Please sign in to comment.