From 82936c5ea257b458deb5238e6093773b42c43773 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Thu, 12 Sep 2024 12:17:26 -0300 Subject: [PATCH] feat: mark more terminals as truecolor (#171) Signed-off-by: Carlos Alexandro Becker --- termenv_unix.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/termenv_unix.go b/termenv_unix.go index d38cb27..ae96cc3 100644 --- a/termenv_unix.go +++ b/termenv_unix.go @@ -50,7 +50,12 @@ func (o *Output) ColorProfile() Profile { } switch term { - case "xterm-kitty", "wezterm", "xterm-ghostty": + case + "alacritty", + "contour", + "wezterm", + "xterm-ghostty", + "xterm-kitty": return TrueColor case "linux": return ANSI