Skip to content

Instantly share code, notes, and snippets.

@merqurio
Created October 22, 2017 18:12
Show Gist options
  • Save merqurio/bbd5d89b90b76ef7758d1ccf4735dfbf to your computer and use it in GitHub Desktop.
Save merqurio/bbd5d89b90b76ef7758d1ccf4735dfbf to your computer and use it in GitHub Desktop.
Own NeoVim theme
hi clear
syntax reset
let g:colors_name = "iotheme"
if &background == "light"
hi Boolean gui=NONE guifg=#fec51b guibg=NONE
hi ColorColumn gui=NONE guifg=NONE guibg=#f5f5f5
hi Comment gui=NONE guifg=#969696 guibg=NONE
hi Conceal gui=NONE guifg=#707070 guibg=NONE
hi Conditional gui=NONE guifg=#4a4a4a guibg=NONE
hi Constant gui=NONE guifg=#707070 guibg=NONE
hi Cursor gui=reverse guifg=NONE guibg=NONE
hi CursorColumn gui=NONE guifg=NONE guibg=#f5f5f5
hi CursorLine gui=NONE guifg=NONE guibg=#f5f5f5
hi CursorLineNr gui=NONE guifg=#969696 guibg=NONE
hi DiffAdd gui=NONE guifg=NONE guibg=#d5ffd1
hi DiffChange gui=NONE guifg=NONE guibg=#f5f5f5
hi DiffDelete gui=NONE guifg=NONE guibg=#ffd1d4
hi DiffText gui=NONE guifg=NONE guibg=#e3e3e3
hi Directory gui=NONE guifg=#4a4a4a guibg=NONE
hi Error gui=NONE guifg=NONE guibg=#fff0f0
hi ErrorMsg gui=NONE guifg=NONE guibg=#fff0f0
hi FoldColumn gui=NONE guifg=#c2c2c2 guibg=NONE
hi Folded gui=NONE guifg=#969696 guibg=#f6f8f8
hi Ignore gui=NONE guifg=NONE guibg=NONE
hi IncSearch gui=NONE guifg=NONE guibg=#e3e3e3
hi LineNr gui=NONE guifg=#c2c2c2 guibg=NONE
hi MatchParen gui=NONE guifg=NONE guibg=#e3e3e3
hi ModeMsg gui=NONE guifg=NONE guibg=NONE
hi MoreMsg gui=NONE guifg=NONE guibg=NONE
hi NonText gui=NONE guifg=#c2c2c2 guibg=NONE
hi Normal gui=NONE guifg=#000000 guibg=#ffffff
hi Number gui=NONE guifg=#fec51b guibg=NONE
hi Pmenu gui=NONE guifg=NONE guibg=#f5f5f5
hi PmenuSbar gui=NONE guifg=NONE guibg=#ededed
hi PmenuSel gui=NONE guifg=NONE guibg=#e3e3e3
hi PmenuThumb gui=NONE guifg=NONE guibg=#dbdbdb
hi Question gui=NONE guifg=NONE guibg=NONE
hi Search gui=NONE guifg=NONE guibg=#ededed
hi SignColumn gui=NONE guifg=#c2c2c2 guibg=NONE
hi Special gui=NONE guifg=#cf5e95 guibg=NONE
hi SpecialKey gui=NONE guifg=#c2c2c2 guibg=NONE
hi SpellBad gui=undercurl guisp=NONE guifg=NONE guibg=#fff0f0
hi SpellCap gui=undercurl guisp=NONE guifg=NONE guibg=NONE
hi SpellLocal gui=undercurl guisp=NONE guifg=NONE guibg=#bdffc6
hi SpellRare gui=undercurl guisp=NONE guifg=NONE guibg=#ededed
hi Statement gui=NONE guifg=#34c4f4 guibg=NONE
hi StatusLine gui=NONE guifg=#262626 guibg=#ededed
hi StatusLineNC gui=NONE guifg=#969696 guibg=#ededed
hi StorageClass gui=NONE guifg=#fec51b guibg=NONE
hi String gui=NONE guifg=#49b685 guibg=NONE
hi TabLine gui=NONE guifg=#969696 guibg=#ededed
hi TabLineFill gui=NONE guifg=NONE guibg=#ededed
hi TabLineSel gui=NONE guifg=#262626 guibg=#ffffff
hi Title gui=NONE guifg=#707070 guibg=NONE
hi Todo gui=reverse guifg=#fec51b guibg=NONE
hi Type gui=NONE guifg=#3d8fd1 guibg=NONE
hi Underlined gui=NONE guifg=NONE guibg=NONE
hi VertSplit gui=NONE guifg=#e3e3e3 guibg=NONE
hi Visual gui=NONE guifg=NONE guibg=#e3e3e3
hi VisualNOS gui=NONE guifg=NONE guibg=NONE
hi WarningMsg gui=NONE guifg=NONE guibg=#fffec2
hi WildMenu gui=NONE guifg=NONE guibg=#d1d1d1
hi lCursor gui=NONE guifg=NONE guibg=NONE
hi Identifier gui=NONE guifg=NONE guibg=NONE
hi PreProc gui=NONE guifg=NONE guibg=NONE
elseif &background == "dark"
hi Boolean gui=NONE guifg=#fec51b guibg=NONE
hi ColorColumn gui=NONE guifg=NONE guibg=#202437
hi Comment gui=NONE guifg=#707070 guibg=NONE
hi Conceal gui=NONE guifg=#808080 guibg=NONE
hi Conditional gui=NONE guifg=#ed5d31 guibg=NONE
hi Constant gui=NONE guifg=#808080 guibg=NONE
hi Cursor gui=reverse guifg=NONE guibg=NONE
hi CursorColumn gui=NONE guifg=#202437 guibg=#202437
hi CursorLine gui=NONE guifg=#f2eeed guibg=#202437
hi CursorLineNr gui=NONE guifg=#707070 guibg=NONE
hi DiffAdd gui=NONE guifg=NONE guibg=#386b5b
hi DiffChange gui=NONE guifg=NONE guibg=#333333
hi DiffDelete gui=NONE guifg=NONE guibg=#591213
hi DiffText gui=NONE guifg=NONE guibg=#333333
hi Directory gui=NONE guifg=#8f8f8f guibg=NONE
hi Error gui=NONE guifg=NONE guibg=#c42729
hi ErrorMsg gui=NONE guifg=NONE guibg=#c8565b
hi FoldColumn gui=NONE guifg=#616161 guibg=NONE
hi Folded gui=NONE guifg=#9e9e9e guibg=#2a2f47
hi Ignore gui=NONE guifg=NONE guibg=NONE
hi IncSearch gui=NONE guifg=NONE guibg=#333333
hi LineNr gui=NONE guifg=#F579B5 guibg=#2a2e42
hi MatchParen gui=NONE guifg=NONE guibg=#333333
hi ModeMsg gui=NONE guifg=NONE guibg=NONE
hi MoreMsg gui=NONE guifg=NONE guibg=NONE
hi NonText gui=NONE guifg=#616161 guibg=NONE
hi Normal gui=NONE guifg=#ffffff guibg=#202332
hi Number gui=NONE guifg=#ffc824 guibg=NONE
hi Pmenu gui=NONE guifg=NONE guibg=#202437
hi PmenuSbar gui=NONE guifg=NONE guibg=#1a1d2e
hi PmenuSel gui=NONE guifg=#94a8ff guibg=#2a2f4c
hi PmenuThumb gui=NONE guifg=NONE guibg=#2d3352
hi Question gui=NONE guifg=NONE guibg=NONE
hi Search gui=NONE guifg=NONE guibg=#262626
hi SignColumn gui=NONE guifg=#616161 guibg=NONE
hi Special gui=NONE guifg=#f57ab6 guibg=NONE
hi SpecialKey gui=NONE guifg=#616161 guibg=NONE
hi SpellBad gui=undercurl guisp=NONE guifg=NONE guibg=#851919
hi SpellCap gui=undercurl guisp=NONE guifg=NONE guibg=NONE
hi SpellLocal gui=undercurl guisp=NONE guifg=NONE guibg=#376d5c
hi SpellRare gui=undercurl guisp=NONE guifg=NONE guibg=#262626
hi Statement gui=NONE guifg=#34c4f4 guibg=NONE
hi StatusLine gui=NONE guifg=#9e9e9e guibg=#202437
hi StatusLineNC gui=NONE guifg=#707070 guibg=#1f2337
hi StorageClass gui=NONE guifg=#ffc824 guibg=NONE
hi String gui=NONE guifg=#67e9b1 guibg=NONE
hi TabLine gui=NONE guifg=#707070 guibg=#191c29
hi TabLineFill gui=NONE guifg=NONE guibg=#202437
hi TabLineSel gui=NONE guifg=#9e9e9e guibg=#343956
hi Title gui=NONE guifg=#fec51b guibg=NONE
hi Todo gui=reverse guifg=#fec51b guibg=NONE
hi Type gui=NONE guifg=#959393 guibg=NONE
hi Underlined gui=NONE guifg=NONE guibg=NONE
hi VertSplit gui=NONE guifg=#333333 guibg=NONE
hi Visual gui=NONE guifg=#b3ccff guibg=#6471aa
hi VisualNOS gui=NONE guifg=NONE guibg=NONE
hi WarningMsg gui=NONE guifg=#8a6c00 guibg=#ffc61a
hi WildMenu gui=NONE guifg=NONE guibg=#525252
hi lCursor gui=NONE guifg=NONE guibg=NONE
hi Identifier gui=NONE guifg=NONE guibg=NONE
hi PreProc gui=NONE guifg=NONE guibg=NONE
endif
let g:terminal_color_0 = "#1C203F"
let g:terminal_color_1 = "#DB3700"
let g:terminal_color_2 = "#00BD88"
let g:terminal_color_3 = "#FFC600"
let g:terminal_color_4 = "#218BD5"
let g:terminal_color_5 = "#E14B93"
let g:terminal_color_6 = "#00A2CC"
let g:terminal_color_7 = "#F2EDEC"
let g:terminal_color_8 = "#666666"
let g:terminal_color_9 = "#FF4900"
let g:terminal_color_10 = "#00F3B5"
let g:terminal_color_11 = "#FFCA00"
let g:terminal_color_12 = "#35A8FA"
let g:terminal_color_13 = "#FF62B0"
let g:terminal_color_14 = "#00C6F8"
let g:terminal_color_15 = "#FFFDFD"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment