diff --git a/main.go b/main.go index fc318ff..b0f7b12 100644 --- a/main.go +++ b/main.go @@ -63,11 +63,11 @@ sequin -- some command to execute func process(w *colorprofile.Writer, in []byte) error { var t theme switch strings.ToLower(os.Getenv("SEQUIN_THEME")) { - case "charm": + case "ansi", "base16", "carlos", "secret_carlos", "matchy": + t = base16Theme(false) + default: hasDarkBG := lipgloss.HasDarkBackground(os.Stdin, os.Stdout) t = charmTheme(hasDarkBG) - default: - t = base16Theme(false) } t.IsRaw = raw