aboutsummaryrefslogtreecommitdiffstats
path: root/gui/widget/style.go
diff options
context:
space:
mode:
Diffstat (limited to 'gui/widget/style.go')
-rw-r--r--gui/widget/style.go10
1 files changed, 10 insertions, 0 deletions
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}
+)