mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-23 02:51:37 +01:00
18 lines
231 B
Go
18 lines
231 B
Go
|
// +build windows
|
||
|
|
||
|
package termenv
|
||
|
|
||
|
func colorProfile() Profile {
|
||
|
return TrueColor
|
||
|
}
|
||
|
|
||
|
func foregroundColor() Color {
|
||
|
// default gray
|
||
|
return ANSIColor(7)
|
||
|
}
|
||
|
|
||
|
func backgroundColor() Color {
|
||
|
// default black
|
||
|
return ANSIColor(0)
|
||
|
}
|