Is there a list of the accepted colour values for the git icons? #1645
-
I'm trying to change the colours of my git icons, but I have no idea what is being accepted as a valid colour. Invalid colours result in the window not displaying anything at all, so it would be great to know what is accepted and what isn't. From my experimentation, hex colour codes are not supported, and a few colour names are supported, but I have no idea which ones are supported other than It seems like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Since this is a terminal the accepted colors are the term ansi colors: Lines 582 to 599 in e724f50 Doesn’t mean you’re limited to these, you can use |
Beta Was this translation helpful? Give feedback.
Since this is a terminal the accepted colors are the term ansi colors:
fzf-lua/lua/fzf-lua/utils.lua
Lines 582 to 599 in e724f50
Doesn’t mean you’re limited to these, you can use
utils.ansi_from_hl
to transform any text using …