|
|
package main
import "fmt"
type Color struct{}
var c Color
func (c Color) DarkGray(t string) { fmt.Print("\x1b[30;1m") //red
fmt.Println(t) fmt.Print("\x1b[0m") //defaultColor
}
func (c Color) Red(t string) { fmt.Print("\x1b[31;1m") //red
fmt.Println(t) fmt.Print("\x1b[0m") //defaultColor
}
func (c Color) Green(t string) { fmt.Print("\x1b[32;1m") //green
fmt.Println(t) fmt.Print("\x1b[0m") //defaultColor
}
func (c Color) Yellow(t string) { fmt.Print("\x1b[33;1m") //green
fmt.Println(t) fmt.Print("\x1b[0m") //defaultColor
}
func (c Color) Blue(t string) { fmt.Print("\x1b[34;1m") //blue
fmt.Println(t) fmt.Print("\x1b[0m") //defaultColor
}
func (c Color) Purple(t string) { fmt.Print("\x1b[35;1m") //purple
fmt.Println(t) fmt.Print("\x1b[0m") //defaultColor
}
func (c Color) Cyan(t string) { fmt.Print("\x1b[36;1m") //cyan
fmt.Println(t) fmt.Print("\x1b[0m") //defaultColor
}
|