From 21836a8001feefa142f00fb3a7f4746b93377434 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 30 Jan 2024 03:17:15 -0600 Subject: trap toolkit panics Signed-off-by: Jeff Carr --- color.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'color.go') diff --git a/color.go b/color.go index f855d0e..51ad9d3 100644 --- a/color.go +++ b/color.go @@ -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 -- cgit v1.2.3