-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update with the latest tinted-theming colorschemes
- Loading branch information
1 parent
3391923
commit 5e94992
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Base16 Embers Light | ||
# Scheme author: Jannik Siebert (https://github.com/janniks) | ||
# Template author: Tinted Theming (https://github.com/tinted-theming) | ||
|
||
_gen_fzf_default_opts() { | ||
|
||
local color00='#d1d6db' | ||
local color01='#aeb6be' | ||
local color02='#909aa3' | ||
local color03='#75808a' | ||
local color04='#47505a' | ||
local color05='#323b43' | ||
local color06='#20262c' | ||
local color07='#0f1316' | ||
local color08='#576d82' | ||
local color09='#578282' | ||
local color0A='#57826d' | ||
local color0B='#6d8257' | ||
local color0C='#826d57' | ||
local color0D='#82576d' | ||
local color0E='#6d5782' | ||
local color0F='#575782' | ||
|
||
export FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS"\ | ||
" --color=bg+:$color01,bg:$color00,spinner:$color0C,hl:$color0D"\ | ||
" --color=fg:$color04,header:$color0D,info:$color0A,pointer:$color0C"\ | ||
" --color=marker:$color0C,fg+:$color06,prompt:$color0A,hl+:$color0D" | ||
|
||
} | ||
|
||
_gen_fzf_default_opts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Base16 Embers Light | ||
# Scheme author: Jannik Siebert (https://github.com/janniks) | ||
# Template author: Tinted Theming (https://github.com/tinted-theming) | ||
|
||
set -l color00 '#d1d6db' | ||
set -l color01 '#aeb6be' | ||
set -l color02 '#909aa3' | ||
set -l color03 '#75808a' | ||
set -l color04 '#47505a' | ||
set -l color05 '#323b43' | ||
set -l color06 '#20262c' | ||
set -l color07 '#0f1316' | ||
set -l color08 '#576d82' | ||
set -l color09 '#578282' | ||
set -l color0A '#57826d' | ||
set -l color0B '#6d8257' | ||
set -l color0C '#826d57' | ||
set -l color0D '#82576d' | ||
set -l color0E '#6d5782' | ||
set -l color0F '#575782' | ||
|
||
set -l FZF_NON_COLOR_OPTS | ||
|
||
for arg in (echo $FZF_DEFAULT_OPTS | tr " " "\n") | ||
if not string match -q -- "--color*" $arg | ||
set -a FZF_NON_COLOR_OPTS $arg | ||
end | ||
end | ||
|
||
set -Ux FZF_DEFAULT_OPTS "$FZF_NON_COLOR_OPTS"\ | ||
" --color=bg+:$color01,bg:$color00,spinner:$color0C,hl:$color0D"\ | ||
" --color=fg:$color04,header:$color0D,info:$color0A,pointer:$color0C"\ | ||
" --color=marker:$color0C,fg+:$color06,prompt:$color0A,hl+:$color0D" |