From 15c9618700dc681e6b94e83a1aaeea6cbcd0c2c2 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Fri, 10 May 2024 13:17:02 -0400 Subject: separate label widget and style constants --- gui/widget/style.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 gui/widget/style.go (limited to 'gui/widget/style.go') diff --git a/gui/widget/style.go b/gui/widget/style.go new file mode 100644 index 0000000..b2bd3f9 --- /dev/null +++ b/gui/widget/style.go @@ -0,0 +1,10 @@ +package widget + +import "image/color" + +var ( + FOCUS_COLOR = color.RGBA{179, 217, 255, 255} + GREEN = color.RGBA{51, 102, 0, 255} + BLACK = color.Gray{0} + WHITE = color.Gray{255} +) -- cgit v1.2.3