if you're using fish shell, you can add this in your fish config:
let g:fzf_colors = {
\ 'fg': ['fg', 'Normal'],
\ 'bg': ['bg', 'Normal'],
\ 'hl': ['fg', 'Search'],
\ 'fg+': ['fg', 'Normal'],
\ 'bg+': ['bg', 'Normal'],
\ 'hl+': ['fg', 'DraculaOrange'],
\ 'info': ['fg', 'DraculaPurple'],
\ 'border': ['fg', 'Ignore'],
\ 'prompt': ['fg', 'DraculaGreen'],
\ 'pointer': ['fg', 'Exception'],
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
\ 'header': ['fg', 'Comment'] }
or you can simply pass this as arguments:
λ fzf --color fg:255,bg:236,hl:84,fg+:255,bg+:236,hl+:215,info:141,prompt:84,spinner:212,pointer:212,marker:212
another way to use FZF_DEFAULT_OPTS
:
export FZF_DEFAULT_OPTS='
--color fg:255,bg:236,hl:84,fg+:255,bg+:236,hl+:215
--color info:141,prompt:84,spinner:212,pointer:212,marker:212
'
This is perfect, thanks!