mirror of
https://gitea.com/gitea/tea.git
synced 2025-02-20 00:31:17 +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)
|
||
|
}
|