github.com/shahidhk/glide@v0.13.2-0.20171214012703-3e13fd16ed5b/msg/out_windows.go (about)

     1  // +build windows
     2  
     3  package msg
     4  
     5  // The color codes here are for compatibility with how Colors are used. Windows
     6  // colors have not been implemented yet. See https://github.com/Masterminds/glide/issues/158
     7  // for more detail.
     8  const (
     9  	Blue   = ""
    10  	Red    = ""
    11  	Green  = ""
    12  	Yellow = ""
    13  	Cyan   = ""
    14  	Pink   = ""
    15  )
    16  
    17  // Color on windows returns no color. See
    18  // https://github.com/Masterminds/glide/issues/158 if you want to help.
    19  func (m *Messenger) Color(code, msg string) string {
    20  	return msg
    21  }