diff options
Diffstat (limited to 'color.go')
| -rw-r--r-- | color.go | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -41,13 +41,13 @@ var superLightGrey gocui.Attribute = gocui.GetColor("#55AAFF") // super light gr // Normal Text On mouseover // // Widget Frame Text background Text background -var colorWindow colorT = colorT { +var colorWindow colorT = colorT{ frame: none, - fg: gocui.ColorBlue, - bg: none, + fg: gocui.ColorBlue, + bg: none, selFg: none, selBg: powdererBlue, - name: "normal window", + name: "normal window", } var colorActiveW colorT = colorT{none, none, powdererBlue, none, powdererBlue, "active window"} @@ -58,13 +58,13 @@ var colorButton colorT = colorT{gocui.ColorGreen, none, gocui.ColorWhite, gocui. var colorLabel colorT = colorT{none, none, superLightGrey, none, superLightGrey, "normal label"} var colorGroup colorT = colorT{none, none, superLightGrey, none, superLightGrey, "normal group"} -var colorDisabled colorT = colorT { +var colorDisabled colorT = colorT{ frame: superLightGrey, - fg: superLightGrey, - bg: superLightGrey, + fg: superLightGrey, + bg: superLightGrey, selFg: gocui.ColorBlack, selBg: gocui.ColorBlack, - name: "disabled widget", + name: "disabled widget", } // widget debugging colors. these widgets aren't displayed unless you are debugging |
