HUGE refactor. working towards web UI
This commit is contained in:
parent
dd54e8cc49
commit
1f94eecca9
29 changed files with 1669 additions and 162 deletions
24
colour/colour.go
Normal file
24
colour/colour.go
Normal 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,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue