I was trying to use your theme with neovim and gitsigns plugin but its missing some highlights
When I added these it was working fine
hi GitSignsAdd guifg=#5FFF87
hi GitSignsChange guifg=#FFFF87
hi GitSignsDelete guifg=#FF875F
Can you add them into your theme?
Before Adding those highlights
I think its using these highlights then it do not find hi for GitSignsXXX
call s:hi('DiffAdd', { 'fg': s:black, 'bg': s:green })
call s:hi('DiffChange', { 'fg': s:black, 'bg': s:yellow })
call s:hi('DiffDelete', { 'fg': s:black, 'bg': s:salmon })

After

I was trying to use your theme with neovim and gitsigns plugin but its missing some highlights
When I added these it was working fine
hi GitSignsAdd guifg=#5FFF87
hi GitSignsChange guifg=#FFFF87
hi GitSignsDelete guifg=#FF875F
Can you add them into your theme?
Before Adding those highlights
I think its using these highlights then it do not find hi for GitSignsXXX
After
