mirror of
https://github.com/preservim/vim-indent-guides.git
synced 2025-11-14 12:43:48 -05:00
Lowered the color change percent option default down to 0.05
This commit is contained in:
@@ -106,13 +106,13 @@ endfunction
|
||||
" colorscheme is being used.
|
||||
"
|
||||
function! indent_guides#lighten_or_darken_color(color)
|
||||
let percent = g:indent_guides_auto_colors_change_percent
|
||||
let percent = g:indent_guides_color_change_percent
|
||||
|
||||
let new_color = (&g:background == 'dark') ?
|
||||
\ color_helper#hex_color_lighten(a:color, percent) :
|
||||
\ color_helper#hex_color_darken (a:color, percent)
|
||||
let new_color = (&g:background == 'dark') ?
|
||||
\ color_helper#hex_color_lighten(a:color, percent) :
|
||||
\ color_helper#hex_color_darken (a:color, percent)
|
||||
|
||||
return new_color
|
||||
return new_color
|
||||
endfunction
|
||||
|
||||
"
|
||||
|
||||
Reference in New Issue
Block a user