aboutsummaryrefslogtreecommitdiff
path: root/colors/juvenile.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-01 00:34:10 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-01 00:34:10 +1200
commitf8dd96db090e86875c37136ca0484dd1d10abd92 (patch)
treec3dc4f61784e8dd3dd06458fbedc031e5f6fc525 /colors/juvenile.vim
parentMerge branch 'release/v0.1.1' (diff)
parentBump VERSION (diff)
downloadvim-juvenile-f8dd96db090e86875c37136ca0484dd1d10abd92.tar.gz
vim-juvenile-f8dd96db090e86875c37136ca0484dd1d10abd92.zip
Merge branch 'release/v0.3.0'v0.3.0
* release/v0.3.0: Bump VERSION Update README.md with changes Add 8-color and no-color versions Add Normal spec so it works on a GUI Add VERSION Rename README.md
Diffstat (limited to 'colors/juvenile.vim')
-rw-r--r--colors/juvenile.vim33
1 files changed, 21 insertions, 12 deletions
diff --git a/colors/juvenile.vim b/colors/juvenile.vim
index be8955a..56eaccd 100644
--- a/colors/juvenile.vim
+++ b/colors/juvenile.vim
@@ -16,16 +16,25 @@ if v:version > 580
endif
let g:colors_name = 'juvenile'
-if has('gui_running') || &t_Co == 256
- highlight Comment cterm=NONE ctermfg=246 ctermbg=NONE gui=NONE guifg=#a0a0a0 guibg=NONE
- highlight NonText cterm=NONE ctermfg=246 ctermbg=NONE gui=NONE guifg=#a0a0a0 guibg=NONE
- highlight Constant cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
- highlight Identifier cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
- highlight Function cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
- highlight Statement cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
- highlight PreProc cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
- highlight Title cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
- highlight Type cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
- highlight Special cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
- highlight Delimiter cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+if has('gui_running') || &t_Co >= 256
+ highlight Normal cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=#fcfcfc guibg=#030303
+ highlight Comment cterm=NONE ctermfg=246 ctermbg=NONE gui=NONE guifg=#a0a0a0 guibg=NONE
+ highlight NonText cterm=NONE ctermfg=246 ctermbg=NONE gui=NONE guifg=#a0a0a0 guibg=NONE
+elseif &t_Co >= 8
+ highlight Normal cterm=NONE ctermfg=NONE ctermbg=NONE
+ highlight Comment cterm=bold ctermfg=0 ctermbg=NONE
+ highlight NonText cterm=bold ctermfg=0 ctermbg=NONE
+else
+ highlight Normal cterm=NONE ctermfg=NONE ctermbg=NONE
+ highlight Comment cterm=NONE ctermfg=NONE ctermbg=NONE
+ highlight NonText cterm=NONE ctermfg=NONE ctermbg=NONE
endif
+highlight Constant cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+highlight Identifier cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+highlight Function cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+highlight Statement cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+highlight PreProc cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+highlight Title cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+highlight Type cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+highlight Special cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+highlight Delimiter cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE