No color is produced
Closed this issue · 1 comments
Deleted user commented
Using this file:
package main
import "github.com/labstack/gommon/color"
func main() {
color.Println(color.Green("aaaaa bbbbb"))
}
I just get plain white output.
Deleted user commented
Fix:
package main
import "github.com/labstack/gommon/color"
func main() {
color.Enable()
color.Println(color.Green("aaaaa bbbbb"))
}