bigH / git-fuzzy

interactive `git` with the help of `fzf`
MIT License
2.3k stars 42 forks source link

Unreadable colors #48

Closed bound-variable closed 2 years ago

bound-variable commented 2 years ago

20220413_17h03m05s_grim

I've made my own colorblind colorscheme for the terminal. It's still a work in progress.

As it is, my black and white colors are identical to my default background and foreground colors respectively. I could possibly change this so that the black or the white or both are instead a variation of gray. But I can't set any more colors (including grayscale) because I can't differentiate between them.

In other words, I could possibly gain one more color definition (gray), but that's it.

Any solutions to this? Would be nice to customize the colors from within the app.

bigH commented 2 years ago

Fixed in 31512bc.

Try pulling, then GRAY="$(tput setaf 7)" git fuzzy.

bound-variable commented 2 years ago

Thanks