aboutsummaryrefslogtreecommitdiff
path: root/colors/juvenile.vim
blob: 63410ec0af7c190bff0fbad74a78eb69813a35a5 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"
" 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>
"
" Author: Tom Ryder <tom@sanctum.geek.nz>
" License: Same as Vim itself
"
set background=dark
if v:version > 580
  highlight clear
  if exists('syntax_on')
    syntax reset
  endif
endif
let colors_name = 'juvenile'

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