HUGE refactor. working towards web UI

This commit is contained in:
ari melody 2026-06-08 02:49:39 +01:00
parent dd54e8cc49
commit 1f94eecca9
Signed by: ari
GPG key ID: 60B5F0386E3DDB7E
29 changed files with 1669 additions and 162 deletions

24
colour/colour.go Normal file
View file

@ -0,0 +1,24 @@
package colour
const Reset = "\033[0m"
const Bright = "\033[1m"
const Dim = "\033[2m"
const Red = "\033[31m"
const Green = "\033[32m"
const Yellow = "\033[33m"
const Blue = "\033[34m"
const Purple = "\033[35m"
const Cyan = "\033[36m"
const Gray = "\033[37m"
const White = "\033[97m"
var AllColours = []string{
Red,
Green,
Yellow,
Blue,
Purple,
Cyan,
White,
}