aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md (renamed from README.markdown)5
-rw-r--r--VERSION1
-rw-r--r--colors/juvenile.vim33
3 files changed, 25 insertions, 14 deletions
diff --git a/README.markdown b/README.md
index 316249b..5cc1bc5 100644
--- a/README.markdown
+++ b/README.md
@@ -1,8 +1,9 @@
Juvenile
========
-Vim colorscheme. Show comments in grey if 256 colors available, in defiance of
-Commander Pike, but nothing else, in deference to Commander Pike.
+Dark Vim colorscheme. Show comments in grey if colors available, in defiance of
+Commander Pike, but nothing else, in deference to Commander Pike. Works best
+with 256 colors or a GUI.
<https://groups.google.com/forum/#!msg/golang-nuts/hJHCAaiL0so/kG3BHV6QFfIJ>
diff --git a/VERSION b/VERSION
new file mode 100644
index 0000000..0d91a54
--- /dev/null
+++ b/VERSION
@@ -0,0 +1 @@
+0.3.0
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