blob: e9398f9dc038650811b65760583f673c1deb128d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
//go:build !windows
package jsoncolor
import (
"io"
"os"
"golang.org/x/term"
)
// IsColorTerminal returns true if w is a colorable terminal.
// It respects [NO_COLOR], [FORCE_COLOR] and TERM=dumb environment variables.
//
// [NO_COLOR]: https://no-color.org/
// [FORCE_COLOR]: https://force-color.org/
func IsColorTerminal(w io.Writer) bool {
if os.Getenv("NO_COLOR") != "" {
return false
}
if os.Getenv("FORCE_COLOR") != "" {
return true
}
if os.Getenv("TERM") == "dumb" {
return false
}
if w == nil {
return false
}
f, ok := w.(*os.File)
if !ok {
return false
}
if !term.IsTerminal(int(f.Fd())) {
return false
}
return true
}
|