aboutsummaryrefslogtreecommitdiffstats
path: root/gui/widget/style.go
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2024-05-10 13:17:02 -0400
committerSam Anthony <sam@samanthony.xyz>2024-05-10 13:17:02 -0400
commit15c9618700dc681e6b94e83a1aaeea6cbcd0c2c2 (patch)
treebd92f064527f8897c41e294df10efaaaef5f50fd /gui/widget/style.go
parent97a7a7cd2afa18b73f5982ecb3ec08c0392b6d1e (diff)
downloadvolute-15c9618700dc681e6b94e83a1aaeea6cbcd0c2c2.zip
separate label widget and style constants
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}
+)