diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-05-10 13:17:02 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-05-10 13:17:02 -0400 |
| commit | 15c9618700dc681e6b94e83a1aaeea6cbcd0c2c2 (patch) | |
| tree | bd92f064527f8897c41e294df10efaaaef5f50fd /gui/widget/style.go | |
| parent | 97a7a7cd2afa18b73f5982ecb3ec08c0392b6d1e (diff) | |
| download | volute-15c9618700dc681e6b94e83a1aaeea6cbcd0c2c2.zip | |
separate label widget and style constants
Diffstat (limited to 'gui/widget/style.go')
| -rw-r--r-- | gui/widget/style.go | 10 |
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} +) |