diff options
| author | Jeff Carr <[email protected]> | 2024-01-30 03:17:15 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-30 03:17:15 -0600 |
| commit | 21836a8001feefa142f00fb3a7f4746b93377434 (patch) | |
| tree | 8c613635220d832b10e394f27fed0558107c8a9e /color.go | |
| parent | 00a01849189960ecf01314ed23f120aa1c26fbf9 (diff) | |
trap toolkit panics
Signed-off-by: Jeff Carr <[email protected]>
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 |
