summaryrefslogtreecommitdiff
path: root/client/colors.go
diff options
context:
space:
mode:
authorcitrons <citrons@mondecitronne.com>2025-06-01 17:14:51 -0500
committercitrons <citrons@mondecitronne.com>2025-06-01 17:15:22 -0500
commit397b8de9c2a590f98c1a3255a6dbe7570a7b70b8 (patch)
treedc552938bd2488311b9d7f762d16122e8db99243 /client/colors.go
parent5bfe1b802ce3d6ff95af8991d27eb177c914664e (diff)
color scheme definition
Diffstat (limited to 'client/colors.go')
-rw-r--r--client/colors.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/client/colors.go b/client/colors.go
new file mode 100644
index 0000000..3922e95
--- /dev/null
+++ b/client/colors.go
@@ -0,0 +1,9 @@
+package main
+
+type msgColor map[bool]int32
+
+var (
+ colorDefault = msgColor {false: 232, true: 233}
+ colorErr = msgColor {false: 88, true: 124}
+ colorCmd = msgColor {false: 54, true: 55}
+)