10 lines
347 B
Bash
10 lines
347 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Export Catppuccin Frappe theme for fzf
|
|
export FZF_DEFAULT_OPTS=" \
|
|
--color=bg+:#414559,bg:#303446,spinner:#F2D5CF,hl:#E78284 \
|
|
--color=fg:#C6D0F5,header:#E78284,info:#CA9EE6,pointer:#F2D5CF \
|
|
--color=marker:#BABBF1,fg+:#C6D0F5,prompt:#CA9EE6,hl+:#E78284 \
|
|
--color=selected-bg:#51576D \
|
|
--color=border:#414559,label:#C6D0F5"
|