Skip to content

Instantly share code, notes, and snippets.

@athomason
Created November 6, 2013 22:07
Show Gist options
  • Save athomason/7344965 to your computer and use it in GitHub Desktop.
Save athomason/7344965 to your computer and use it in GitHub Desktop.
.vim/colors/adam.vim
" vim: tw=0 ts=4 sw=4
" Vim color file
" Derived from koehler.vim
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "adam"
hi Normal ctermfg=White guifg=#ffffff guibg=#000000
hi Comment term=bold ctermfg=Blue guifg=#7777ff
hi Constant term=underline ctermfg=Green guifg=#54fe54
hi Special term=bold ctermfg=DarkGreen guifg=#54fe54
hi Identifier term=underline ctermfg=Cyan guifg=#54fefe
hi Statement term=bold ctermfg=Yellow guifg=#fefe54 gui=none
hi PreProc term=underline ctermfg=LightBlue guifg=#7777ff
hi Type term=underline ctermfg=LightGreen guifg=#54fe54 gui=none
hi Function term=bold ctermfg=White guifg=#ffffff
hi Repeat term=underline ctermfg=Yellow guifg=#fefe54
hi Operator ctermfg=Yellow guifg=#fefe54 gui=none
hi Ignore ctermfg=Black guifg=#000000
hi Error term=reverse ctermbg=Red ctermfg=White guifg=#ffffff guibg=#ff0000
hi Todo term=standout ctermbg=Yellow ctermfg=Black guifg=#000000 guibg=#fefe54
hi Folded ctermfg=Cyan guifg=#94fefe guibg=#000000
hi FoldColumn ctermfg=Cyan guifg=#54fefe guibg=#000000
" Common groups that link to default highlighting.
" You can specify other highlighting easily.
hi link String Constant
hi link Character Constant
hi link Number Constant
hi link Boolean Constant
hi link Float Number
hi link Conditional Repeat
hi link Label Statement
hi link Keyword Statement
hi link Exception Statement
hi link Include PreProc
hi link Define PreProc
hi link Macro PreProc
hi link PreCondit PreProc
hi link StorageClass Type
hi link Structure Type
hi link Typedef Type
hi link Tag Special
hi link SpecialComment Special
hi link SpecialChar Special
hi link Delimiter Special
hi link Debug Special
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment