blob: 3922e95a4ba7feec0df77974a145885c68f20a85 (
plain)
1
2
3
4
5
6
7
8
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}
)
|