blob: 64afe5dea0afadd253c92e2c7ffc8de9d8d1aac9 (
plain)
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
|
" Ice neon theme for Vim with transparent background
if exists("syntax_on")
syntax reset
endif
set background=dark
let g:colors_name = "ice"
set termguicolors
" Clear previous highlights
hi clear
" Normal text
"hi Normal guifg=#ffffff guibg=NONE
hi Normal guifg=NONE guibg=NONE
hi LineNr guifg=#00d7ff guibg=NONE
hi CursorLineNr guifg=#00d7ff guibg=NONE gui=bold
hi CursorLine guibg=NONE
hi StatusLine guifg=#00d7ff guibg=NONE gui=bold
hi StatusLineNC guifg=#8888aa guibg=NONE
hi Search guifg=#000000 guibg=#ffef00 gui=bold
hi Visual guifg=#000000 guibg=#ffef00
hi Comment guifg=#8888aa gui=italic
hi Constant guifg=#00d7ff
hi Identifier guifg=#ff6fff gui=bold
hi Statement guifg=#ffef00 gui=bold
hi PreProc guifg=#ff6fff gui=bold
hi Type guifg=#ffef00 gui=bold
hi Special guifg=#00d7ff
hi Underlined guifg=#00d7ff gui=underline
hi Todo guifg=#ffef00 guibg=NONE gui=bold
|