Codebase list golang-github-muesli-termenv / 6b970494-0be1-4f4d-baa6-17fe8c2b7190/upstream/0.13.0+git20221101.1.6fd0ee9 termenv_other.go
6b970494-0be1-4f4d-baa6-17fe8c2b7190/upstream/0.13.0+git20221101.1.6fd0ee9

Tree @6b970494-0be1-4f4d-baa6-17fe8c2b7190/upstream/0.13.0+git20221101.1.6fd0ee9 (Download .tar.gz)

termenv_other.go @6b970494-0be1-4f4d-baa6-17fe8c2b7190/upstream/0.13.0+git20221101.1.6fd0ee9raw · history · blame

//go:build js || plan9 || aix
// +build js plan9 aix

package termenv

func colorProfile() Profile {
	return ANSI256
}

func (o Output) foregroundColor() Color {
	// default gray
	return ANSIColor(7)
}

func (o Output) backgroundColor() Color {
	// default black
	return ANSIColor(0)
}