Skip to content

Instantly share code, notes, and snippets.

@codehearts
Last active July 4, 2018 08:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codehearts/3fbc61dcb59f2b9a8012cd44b9065344 to your computer and use it in GitHub Desktop.
Save codehearts/3fbc61dcb59f2b9a8012cd44b9065344 to your computer and use it in GitHub Desktop.
Vim Colors
" Jot
" Author: Kate Hart
"
" Colors:
" Background: #f9ffff
" Normal: #262626
" Light: #b6b6b6
" Highlight: #0c9cf0
" Light: #e4ecf0
" Dark: #0e5591
" Error: #f0090c
hi clear
set background=light
if exists("syntax_on")
syntax reset
endif
let g:colors_name="jot"
hi Normal guifg=#262626 guibg=#f9ffff
hi Comment guifg=#b6b6b6
hi CursorLine guibg=#e4ecf0
hi CursorColumn guibg=#e4ecf0
hi LineNR guifg=#b6b6b6 guibg=#f9ffff
hi Nontext guifg=#b6b6b6 gui=none
hi Constant guifg=#0e5591
hi Delimiter guifg=#0c9cf0
hi MatchParen guifg=#ffffff guibg=#0c9cf0 gui=bold
hi Operator guifg=#0e5591
hi PreCondit guifg=#0e5591
hi PreProc guifg=#0c9cf0
hi Special guifg=#0e5591
if has("spell")
hi SpellBad guisp=#f0090c gui=undercurl
hi SpellCap guisp=#f0090c gui=undercurl
hi SpellLocal guisp=#f0090c gui=undercurl
hi SpellRare guisp=#f0090c gui=undercurl
endif
hi Statement guifg=#0c9cf0 gui=none
hi Title guifg=#262626 gui=bold
hi Type guifg=#b6b6b6 gui=none
hi VertSplit guifg=#0c9cf0 guibg=#0c9cf0
" Momiji
" Author: Kate Hart
"
" Colors:
" Primary (red):
" normal: #ff3232
" light: #ffe5e5
" Secondary (orange):
" normal: #cc4f29
" Tertiary (blue):
" light: #9bb1bf
" dark: #687680
hi clear
set background=light
if exists("syntax_on")
syntax reset
endif
let g:colors_name="momiji"
hi Normal guifg=#262626 guibg=#ffffff
hi Comment guifg=#a6a6a6
hi CursorLine guibg=#f2f2f2
hi CursorColumn guibg=#f2f2f2
hi LineNr guifg=#bbbbbb guibg=#ffffff
hi NonText guifg=#e9e9e9
hi Boolean guifg=#cc4f29
hi Character guifg=#ff3232 guibg=#ffe5e5
hi Number guifg=#cc4f29
hi String guifg=#cc4f29
hi Conditional guifg=#ff3232
hi Constant guifg=#ff3232
hi Cursor guifg=#ffffff guibg=#ff3232
"hi Debug
"hi Define
hi Delimiter guifg=#262626
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
"hi DiffText
"hi Directory
hi Error guifg=#8b0000
hi ErrorMsg guifg=#ffffff guibg=#ff3232
hi Exception guifg=#868686
"hi Float
"hi FoldColumn
"hi Folded
hi Function guifg=#ff3232
hi Identifier guifg=#262626
"hi Ignore
"hi IncSearch
"hi Keyword
hi Label guifg=#868686
hi Macro guifg=#868686
"hi SpecialKey
hi MatchParen guifg=#ffffff guibg=#262626 gui=none
hi ModeMsg guifg=#cc2929
"hi MoreMsg
hi Operator guifg=#ff3232
" Completion menu
hi Pmenu guifg=#eeeeee guibg=#262626
hi PmenuSel guifg=#ffffff guibg=#ff3232
hi PmenuSbar guifg=#eeeeee guibg=#eeeeee
hi PmenuThumb guifg=#666666 guibg=#262626
hi PreCondit guifg=#ff3232
hi PreProc guifg=#ff3232
hi Question guifg=#cc2929
hi Repeat guifg=#ff3232
hi Search guifg=#ffffff guibg=#262626
" Sign column
"hi SignColumn
hi SpecialChar guifg=#ff3232 guibg=#ffe5e5
hi SpecialComment guifg=#565656
hi Special guifg=#868686
"hi SpecialKey
if has("spell")
hi SpellBad guisp=#ff3232 gui=undercurl
hi SpellCap guisp=#ff3232 gui=undercurl
hi SpellLocal guisp=#ff3232 gui=undercurl
hi SpellRare guisp=#ff3232 gui=undercurl
endif
hi Statement guifg=#ff3232 gui=none
hi StatusLine guifg=#dddddd guibg=#868686
hi StatusLineNC guifg=#dddddd guibg=#868686
hi StorageClass guifg=#ff3232
hi Structure guifg=#868686
hi Tag guifg=#ff3232 guibg=#ffe5e5
hi Title guifg=#262626 gui=none
hi Todo guifg=#262626 guibg=#f2f2f2
hi Typedef guifg=#868686
hi Type guifg=#262626 gui=none
"hi Underlined
hi VertSplit guifg=#dddddd guibg=#dddddd
"hi VisualNOS
"hi Visual
"hi WarningMsg
hi WildMenu guifg=#ffffff guibg=#ff3232
" HTML
hi htmlTagN guifg=#ff3232
hi htmlTagName guifg=#ff3232
hi htmlArg guifg=#9bb1bf
hi htmlString guifg=#687680
hi htmlLink guifg=#565656 gui=underline
" JavaDoc
hi javaDocParam guifg=#565656
" Momiji 2
" Author: Kate Hart
"
" Colors:
" Background: #ffffff
" Highlight: #80604c
" Red: #ff3232
" Grey: #262626
" Light: #9bb1bf
" Dark: #6b818f
" Orange: #fc8619
" (Error Colors)
" Red: #ff0000
" White: #ffffff
hi clear
set background=light
if exists("syntax_on")
syntax reset
endif
let g:colors_name="momiji"
hi Normal guifg=#262626 guibg=#ffffff
hi Comment guifg=#9bb1bf
hi CursorLine guibg=#80604c
hi CursorColumn guibg=#80604c
hi LineNR guifg=#ffffff guibg=#9bb1bf
hi Nontext guifg=#262626
hi Boolean guifg=#fc8619
hi Character guifg=#fc8619 guibg=#80604c
hi Number guifg=#ff3232
hi String guifg=#ff3232
hi Conditional guifg=#ff3232
hi Constant guifg=#ff3232
hi Cursor guifg=#ffffff guibg=#ff3232
"hi Debug
"hi Define
hi Delimiter guifg=#262626
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
"hi DiffText
hi Directory guifg=#ff3232
hi Error guifg=#ffffff guibg=#ff0000
hi ErrorMsg guifg=#ffffff guibg=#ff0000
"hi Exception
"hi Float
"hi FoldColumn
"hi Folded
hi Function guifg=#fc8619
hi Identifier guifg=#ff3232
"hi Ignore
"hi IncSearch
"hi Keyword
"hi Label
"hi Macro
hi MatchParen guifg=#ffffff guibg=#262626 gui=none
hi ModeMsg guifg=#262626
"hi MoreMsg
hi Operator guifg=#ff3232
" Completion menu
hi Pmenu guifg=#eeeeee guibg=#262626
hi PmenuSel guifg=#ffffff guibg=#ff3232
hi PmenuSbar guifg=#eeeeee guibg=#eeeeee
hi PmenuThumb guifg=#666666 guibg=#262626
hi PreCondit guifg=#ff3232
hi PreProc guifg=#ff3232
hi Question guifg=#cc2929
hi Repeat guifg=#ff3232
hi Search guifg=#ffffff guibg=#262626
" Sign column
hi SignColumn guibg=#9bb1bf
hi SpecialChar guifg=#fc8619 guibg=#80604c
hi SpecialComment guifg=#262626
hi Special guifg=#262626
hi SpecialKey guifg=#9bb1bf
if has("spell")
hi SpellBad guisp=#ff3232 gui=undercurl
hi SpellCap guisp=#ff3232 gui=undercurl
hi SpellLocal guisp=#ff3232 gui=undercurl
hi SpellRare guisp=#ff3232 gui=undercurl
endif
hi Statement guifg=#ff3232 gui=bold
hi StatusLine guifg=#6b818f guibg=#ffffff
hi StatusLineNC guifg=#9bb1bf guibg=#ffffff
hi StorageClass guifg=#ff3232 gui=italic
"hi Structure
hi Tag guifg=#ff3232 guibg=#80604c
hi Title guifg=#262626 gui=none
hi Todo guifg=#ffffff guibg=#ff3232
hi Typedef guifg=#ff3232
hi Type guifg=#fc8619 gui=none
"hi Underlined
hi VertSplit guifg=#9bb1bf guibg=#9bb1bf
"hi VisualNOS
"hi Visual
"hi WarningMsg
hi WildMenu guifg=#ffffff guibg=#262626 gui=bold
" HTML
hi htmlTagName guifg=#fc8619
hi htmlTagN guifg=#fc8619
hi htmlArg guifg=#9bb1bf
hi htmlString guifg=#ff3232
" JavaScript
hi javascriptFunction guifg=#ff3232
" Smuglo
" Author: Kate Hart
"
" Colors:
" Brown: #584a3b
" Light: #e6ac8a
" Highlight: #80604c
" Green: #d5de32
" Cream: #fbf6e2
" Grey: #998e8b
" (Error Colors)
" Red: #ff0000
" White: #ffffff
hi clear
set background=light
if exists("syntax_on")
syntax reset
endif
let g:colors_name="smuglo"
hi Normal guifg=#fbf6e2 guibg=#584a3b
hi Comment guifg=#998e8b
hi CursorLine guibg=#80604c
hi CursorColumn guibg=#80604c
hi LineNR guifg=#584a3b guibg=#fbf6e2
hi Nontext guifg=#fbf6e2
hi Boolean guifg=#e6ac8a
hi Character guifg=#e6ac8a guibg=#80604c
hi Number guifg=#e6ac8a
hi String guifg=#e6ac8a
hi Conditional guifg=#d5de32
hi Constant guifg=#d5de32
hi Cursor guifg=#ffffff guibg=#d5de32
"hi Debug
"hi Define
hi Delimiter guifg=#fbf6e2
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
"hi DiffText
hi Directory guifg=#d5de32
hi Error guifg=#ffffff guibg=#ff0000
hi ErrorMsg guifg=#ffffff guibg=#ff0000
"hi Exception
"hi Float
"hi FoldColumn
"hi Folded
hi Function guifg=#d5de32
hi Identifier guifg=#d5de32
"hi Ignore
"hi IncSearch
"hi Keyword
"hi Label
"hi Macro
hi MatchParen guifg=#584a3b guibg=#fbf6e2 gui=none
hi ModeMsg guifg=#fbf6e2
"hi MoreMsg
hi Operator guifg=#d5de32
" Completion menu
hi Pmenu guifg=#584a3b guibg=#d5de32
hi PmenuSel guifg=#584a3b guibg=#fbf6e2 gui=bold
hi PmenuSbar guifg=#584a3b guibg=#564033
hi PmenuThumb guifg=#d5de32 guibg=#cfd90c
hi PreCondit guifg=#d5de32
hi PreProc guifg=#d5de32
hi Question guifg=#cc2929
hi Repeat guifg=#d5de32
hi Search guifg=#584a3b guibg=#fbf6e2
" Sign column
hi SignColumn guibg=#998e8b
hi SpecialChar guifg=#e6ac8a guibg=#80604c
hi SpecialComment guifg=#fbf6e2
hi Special guifg=#fbf6e2
hi SpecialKey guifg=#998e8b
if has("spell")
hi SpellBad guisp=#d5de32 gui=undercurl
hi SpellCap guisp=#d5de32 gui=undercurl
hi SpellLocal guisp=#d5de32 gui=undercurl
hi SpellRare guisp=#d5de32 gui=undercurl
endif
hi Statement guifg=#d5de32 gui=none
hi StatusLine guifg=#d5de32 guibg=#584a3b
hi StatusLineNC guifg=#fbf6e2 guibg=#584a3b
hi StorageClass guifg=#d5de32 gui=italic
"hi Structure
hi Tag guifg=#d5de32 guibg=#80604c
hi Title guifg=#fbf6e2 gui=none
hi Todo guifg=#584a3b guibg=#d5de32
hi Typedef guifg=#d5de32
hi Type guifg=#d5de32 gui=none
"hi Underlined
hi VertSplit guifg=#fbf6e2 guibg=#fff9e6
"hi VisualNOS
"hi Visual
"hi WarningMsg
hi WildMenu guifg=#584a3b guibg=#fbf6e2 gui=bold
" HTML
hi htmlTagName guifg=#e6ac8a
hi htmlTagN guifg=#e6ac8a
hi htmlArg guifg=#998e8b
hi htmlString guifg=#d5de32
" JavaScript
hi javascriptFunction guifg=#d5de32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment