tvxwidgets/utils.go
2021-12-21 19:57:34 +11:00

19 lines
297 B
Go

package tvxwidgets
import "github.com/gdamore/tcell/v2"
const (
// gauge cell
prgCell = "▉"
)
// getColorName returns convert tcell color to its name
func getColorName(color tcell.Color) string {
for name, c := range tcell.ColorNames {
if c == color {
return name
}
}
return ""
}