AlphaTechnolog/pywal.nvim

Tab margin separator doesn't change with margin color

zakissimo opened this issue · 4 comments

I would like to change the color of the seperations between my tabs in lualine (here in white) and either have them sync with the margin color and size, or at least, make them blend in with lualine background color.

2022-02-04-132402_1268x58_scrot

The reason I'm posting here and not on lualine's github is because I don't see this problem with other color schemes.

My config file:
`
local pywal = require('pywal')

pywal.setup()
`

Really, I do not know why that white appears there, maybe I happened to put the color of the background or in your case the blue in the lualine theme. Although a possible solution is to put a light color that synchronizes with the white color so that it is not so ugly

This is a test, the lualine with a light color in normal mode:

Screenshot from 2022-02-08 11-29-42

Screenshot from 2022-02-08 11-30-40

This is an experimental fix, I will search what is going on with it white color

I found the problem, the problem is I miss this highlights in the config of the colorscheme:

  • StatusLine
  • StatusLineNC

If I set guibg to colors.background and guifg to colors.background in it's highlights, the problem is solved

Screenshot from 2022-02-08 11-47-33

I will push this fix to the main branch, update the plugin :D

I close this issue because the problem is solved for me
If you have any problem, reopen the issue :)