aboutsummaryrefslogtreecommitdiff
path: root/colors/juvenile.vim
blob: 859ba0cf60f956a70c5d701d3c530d70658d3c73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"
" juvenile.vim -- Show comments in grey if colour available, in defiance of
" Commander Pike, but nothing else, in deference to Commander Pike.
"
" <https://groups.google.com/forum/#!msg/golang-nuts/hJHCAaiL0so/kG3BHV6QFfIJ>
"
set background=dark
highlight clear
syntax reset
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
endif