Skip to content

Commit

Permalink
fix: revert back to charm by default after lipgloss fix
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Nov 22, 2024
1 parent ad7b8f8 commit 8c9bdb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8c9bdb1

Please sign in to comment.