9 lines
173 B
Go
Raw Normal View History

2024-03-05 16:47:02 +00:00
package color
import (
"os"
)
// Terminal is a boolean that indicates if we're in a terminal with truecolor support.
var Terminal = os.Getenv("COLORTERM") == "truecolor"