1// +build windows 2 3package termenv 4 5func colorProfile() Profile { 6 return TrueColor 7} 8 9func foregroundColor() Color { 10 // default gray 11 return ANSIColor(7) 12} 13 14func backgroundColor() Color { 15 // default black 16 return ANSIColor(0) 17} 18