Skip to content

Commit 86ef37b

Browse files
Update with the latest tinted-theming colorschemes [skip ci]
1 parent 99e472a commit 86ef37b

8 files changed

Lines changed: 170 additions & 0 deletions

bash/base16-neovim-dark.config

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Scheme name: Neovim Dark
2+
# Scheme system: base16
3+
# Scheme author: https://github.com/neovim/neovim/blob/master/src/nvim/highlight_group.c
4+
# Template author: Tinted Theming (https://github.com/tinted-theming)
5+
6+
_gen_fzf_default_opts() {
7+
8+
local color00='#14161b'
9+
local color01='#07080d'
10+
local color02='#4f5258'
11+
local color03='#9b9ea4'
12+
local color04='#c4c6cd'
13+
local color05='#e0e2ea'
14+
local color06='#eef1f8'
15+
local color07='#eef1f8'
16+
local color08='#ffc0b9'
17+
local color09='#ffa500'
18+
local color0A='#fce094'
19+
local color0B='#b3f6c0'
20+
local color0C='#8cf8f7'
21+
local color0D='#a6dbff'
22+
local color0E='#ffcaff'
23+
local color0F='#cd853f'
24+
25+
export FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS"\
26+
" --color=bg+:$color01,bg:$color00,spinner:$color0C,hl:$color0D"\
27+
" --color=fg:$color04,header:$color0D,info:$color0A,pointer:$color0C"\
28+
" --color=marker:$color0C,fg+:$color06,prompt:$color0A,hl+:$color0D"
29+
30+
}
31+
32+
_gen_fzf_default_opts

bash/base16-neovim-light.config

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Scheme name: Neovim Light
2+
# Scheme system: base16
3+
# Scheme author: https://github.com/neovim/neovim/blob/master/src/nvim/highlight_group.c
4+
# Template author: Tinted Theming (https://github.com/tinted-theming)
5+
6+
_gen_fzf_default_opts() {
7+
8+
local color00='#e0e2ea'
9+
local color01='#eef1f8'
10+
local color02='#9b9ea4'
11+
local color03='#4f5258'
12+
local color04='#2c2e33'
13+
local color05='#14161b'
14+
local color06='#07080d'
15+
local color07='#07080d'
16+
local color08='#590008'
17+
local color09='#8b4513'
18+
local color0A='#6b5300'
19+
local color0B='#005523'
20+
local color0C='#007373'
21+
local color0D='#004c73'
22+
local color0E='#470045'
23+
local color0F='#a52a2a'
24+
25+
export FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS"\
26+
" --color=bg+:$color01,bg:$color00,spinner:$color0C,hl:$color0D"\
27+
" --color=fg:$color04,header:$color0D,info:$color0A,pointer:$color0C"\
28+
" --color=marker:$color0C,fg+:$color06,prompt:$color0A,hl+:$color0D"
29+
30+
}
31+
32+
_gen_fzf_default_opts

fish/base16-neovim-dark.fish

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Scheme name: Neovim Dark
2+
# Scheme system: base16
3+
# Scheme author: https://github.com/neovim/neovim/blob/master/src/nvim/highlight_group.c
4+
# Template author: Tinted Theming (https://github.com/tinted-theming)
5+
6+
set -l color00 '#14161b'
7+
set -l color01 '#07080d'
8+
set -l color02 '#4f5258'
9+
set -l color03 '#9b9ea4'
10+
set -l color04 '#c4c6cd'
11+
set -l color05 '#e0e2ea'
12+
set -l color06 '#eef1f8'
13+
set -l color07 '#eef1f8'
14+
set -l color08 '#ffc0b9'
15+
set -l color09 '#ffa500'
16+
set -l color0A '#fce094'
17+
set -l color0B '#b3f6c0'
18+
set -l color0C '#8cf8f7'
19+
set -l color0D '#a6dbff'
20+
set -l color0E '#ffcaff'
21+
set -l color0F '#cd853f'
22+
23+
set -l FZF_NON_COLOR_OPTS
24+
25+
for arg in (echo $FZF_DEFAULT_OPTS | tr " " "\n")
26+
if not string match -q -- "--color*" $arg
27+
set -a FZF_NON_COLOR_OPTS $arg
28+
end
29+
end
30+
31+
set -Ux FZF_DEFAULT_OPTS "$FZF_NON_COLOR_OPTS"\
32+
" --color=bg+:$color01,bg:$color00,spinner:$color0C,hl:$color0D"\
33+
" --color=fg:$color04,header:$color0D,info:$color0A,pointer:$color0C"\
34+
" --color=marker:$color0C,fg+:$color06,prompt:$color0A,hl+:$color0D"

fish/base16-neovim-light.fish

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Scheme name: Neovim Light
2+
# Scheme system: base16
3+
# Scheme author: https://github.com/neovim/neovim/blob/master/src/nvim/highlight_group.c
4+
# Template author: Tinted Theming (https://github.com/tinted-theming)
5+
6+
set -l color00 '#e0e2ea'
7+
set -l color01 '#eef1f8'
8+
set -l color02 '#9b9ea4'
9+
set -l color03 '#4f5258'
10+
set -l color04 '#2c2e33'
11+
set -l color05 '#14161b'
12+
set -l color06 '#07080d'
13+
set -l color07 '#07080d'
14+
set -l color08 '#590008'
15+
set -l color09 '#8b4513'
16+
set -l color0A '#6b5300'
17+
set -l color0B '#005523'
18+
set -l color0C '#007373'
19+
set -l color0D '#004c73'
20+
set -l color0E '#470045'
21+
set -l color0F '#a52a2a'
22+
23+
set -l FZF_NON_COLOR_OPTS
24+
25+
for arg in (echo $FZF_DEFAULT_OPTS | tr " " "\n")
26+
if not string match -q -- "--color*" $arg
27+
set -a FZF_NON_COLOR_OPTS $arg
28+
end
29+
end
30+
31+
set -Ux FZF_DEFAULT_OPTS "$FZF_NON_COLOR_OPTS"\
32+
" --color=bg+:$color01,bg:$color00,spinner:$color0C,hl:$color0D"\
33+
" --color=fg:$color04,header:$color0D,info:$color0A,pointer:$color0C"\
34+
" --color=marker:$color0C,fg+:$color06,prompt:$color0A,hl+:$color0D"

powershell/base16-neovim-dark.ps1

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Scheme name: Neovim Dark
2+
# Scheme system: base16
3+
# Scheme author: https://github.com/neovim/neovim/blob/master/src/nvim/highlight_group.c
4+
# Template author: Tinted Theming (https://github.com/tinted-theming)
5+
6+
$ENV:FZF_DEFAULT_OPTS=@"
7+
--color=bg+:#07080d,bg:#14161b,spinner:#8cf8f7,hl:#a6dbff
8+
--color=fg:#c4c6cd,header:#a6dbff,info:#fce094,pointer:#8cf8f7
9+
--color=marker:#8cf8f7,fg+:#eef1f8,prompt:#fce094,hl+:#a6dbff
10+
"@

powershell/base16-neovim-light.ps1

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Scheme name: Neovim Light
2+
# Scheme system: base16
3+
# Scheme author: https://github.com/neovim/neovim/blob/master/src/nvim/highlight_group.c
4+
# Template author: Tinted Theming (https://github.com/tinted-theming)
5+
6+
$ENV:FZF_DEFAULT_OPTS=@"
7+
--color=bg+:#eef1f8,bg:#e0e2ea,spinner:#007373,hl:#004c73
8+
--color=fg:#2c2e33,header:#004c73,info:#6b5300,pointer:#007373
9+
--color=marker:#007373,fg+:#07080d,prompt:#6b5300,hl+:#004c73
10+
"@

sh/base16-neovim-dark.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Scheme name: Neovim Dark
2+
# Scheme system: base16
3+
# Scheme author: https://github.com/neovim/neovim/blob/master/src/nvim/highlight_group.c
4+
# Template author: Tinted Theming (https://github.com/tinted-theming)
5+
6+
export FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS"\
7+
" --color=bg+:#07080d,bg:#14161b,spinner:#8cf8f7,hl:#a6dbff"\
8+
" --color=fg:#c4c6cd,header:#a6dbff,info:#fce094,pointer:#8cf8f7"\
9+
" --color=marker:#8cf8f7,fg+:#eef1f8,prompt:#fce094,hl+:#a6dbff"

sh/base16-neovim-light.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Scheme name: Neovim Light
2+
# Scheme system: base16
3+
# Scheme author: https://github.com/neovim/neovim/blob/master/src/nvim/highlight_group.c
4+
# Template author: Tinted Theming (https://github.com/tinted-theming)
5+
6+
export FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS"\
7+
" --color=bg+:#eef1f8,bg:#e0e2ea,spinner:#007373,hl:#004c73"\
8+
" --color=fg:#2c2e33,header:#004c73,info:#6b5300,pointer:#007373"\
9+
" --color=marker:#007373,fg+:#07080d,prompt:#6b5300,hl+:#004c73"

0 commit comments

Comments
 (0)