Update floats.

This commit is contained in:
Michael Welford 2021-03-22 20:59:15 +10:30
parent 9127c0ad09
commit 851cf87820
3 changed files with 13 additions and 11 deletions

View File

@ -4,7 +4,7 @@
" URL: https://github.com/fenetikm/falcon
" Author: Michael Welford
" License: MIT
" Last Change: 2021/03/22 20:37
" Last Change: 2021/03/22 20:53
" ===============================================================
set background=dark
@ -311,8 +311,9 @@ hi mkdCodeDelimiter guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE c
hi link mkdHeading Delimiter
hi healthSuccess guifg=#020221 ctermfg=0 guibg=#718E3F ctermbg=65 gui=NONE cterm=NONE
hi healthError guifg=#020221 ctermfg=0 guibg=#FF3600 ctermbg=202 gui=NONE cterm=NONE
hi NormalFloat guifg=NONE ctermfg=NONE guibg=#4F4F59 ctermbg=239 gui=NONE cterm=NONE
hi NormalFloat guifg=NONE ctermfg=NONE guibg=#2F2F3A ctermbg=236 gui=NONE cterm=NONE
hi NormalFloatAlt guifg=NONE ctermfg=NONE guibg=#0A0A29 ctermbg=232 gui=NONE cterm=NONE
hi NormalInactive guifg=NONE ctermfg=NONE guibg=#FF3600 ctermbg=202 gui=NONE cterm=NONE
hi NERDTreeCWD guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
hi NERDTreeOpenable guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
hi NERDTreeClosable guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE

View File

@ -1,2 +1,2 @@
NormalFloat: '- blue_mid_gray'
NormalFloat: '- blue_dark_gray'
NormalFloatAlt: '- bg_alt'

View File

@ -46,15 +46,16 @@ function s:HandleInactiveBackground()
if exists('+winhighlight') && g:falcon_inactive == 1
hi ActiveWindow guibg=NONE
hi InactiveWindow guibg=#151521
set winhighlight=Normal:ActiveWindow,NormalNC:InactiveWindow
return
endif
if g:falcon_background == 1
hi ActiveWindow guibg=#020221
hi InactiveWindow guibg=#151521
else
if g:falcon_background == 1
hi ActiveWindow guibg=#020221
hi InactiveWindow guibg=#151521
else
hi ActiveWindow guibg=NONE
hi InactiveWindow guibg=NONE
endif
hi ActiveWindow guibg=NONE
hi InactiveWindow guibg=NONE
endif
endfunction