muesli / termenv

Advanced ANSI style & color support for your terminal applications

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Name based color detection

lukasmalkmus opened this issue · comments

I would love to see named based color detection as a feature, so termenv can be an even better drop in replacement for libraries like ansicolor:

// c := ansicolor.ColorCode("white")

// Becomes ...

c := termenv.ColorProfile().Color("white").Sequence(false)

You can kind of do that (even though not quite as straight-forward, admittedly) with the help of gamut: https://github.com/muesli/gamut