constants exist now, i guess
This commit is contained in:
parent
bad3d458a3
commit
aa37b9033a
2 changed files with 27 additions and 23 deletions
21
constants/constants.go
Normal file
21
constants/constants.go
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
package constants
|
||||
|
||||
const Defaultcolor = "red 255 38 116 \ngreen 16 210 117\nblue 104 174 212\nwhite 250 253 255"
|
||||
|
||||
var Color_map = map[string]string{
|
||||
"black": "30",
|
||||
"red": "31",
|
||||
"green": "32",
|
||||
"yellow": "33",
|
||||
"blue": "34",
|
||||
"magenta": "35",
|
||||
"cyan": "36",
|
||||
"white": "37",
|
||||
"*": "37",
|
||||
}
|
||||
|
||||
var Namechanges = map[string]string{
|
||||
"linux": "linuwu",
|
||||
"arch": "nyarch",
|
||||
"ubuntu": "uwuntu",
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue