//go:build !windows
|
|
// +build !windows
|
|
|
|
package style
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gdamore/tcell/v2"
|
|
)
|
|
|
|
func GetColorHex(color tcell.Color) string {
|
|
return fmt.Sprintf("#%06x", color.Hex())
|
|
}
|