-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hard to read lualine inactive tabs #3
Comments
pushed out an update to increase the contrast a bit on those. but to answer your question: lualine is a bit of a special case because the colours for those are defined by a lualine theme. found here: https://github.com/sho-87/kanagawa-paper.nvim/blob/master/lua/lualine/themes/kanagawa-paper.lua the inactive highlights are controlled by this block. a, b, and c are your regular lualine a,b,c sections:
so if you want to override those colours, you can create a custom theme based on the included theme, but assign different highlight groups to the sections you want. this is just the same as customizing a theme as per the lualine docs. For example, this will change the bg and fg of your
Besides the special case of lualine, heres how you would adjust colours in general... Lets say you want to change the bg colour of floating windows, which is defined in the theme file here. You have a couple of options: Option 1: retarget the theme colorIn your config for this plugin, you can set
Option 2: retarget the palette colorThis is more extreme. Notice that by default
NoteIf you use transparency mode, using either option above might not seem to do anything (especially in the case of bg colors). This is because of how transparency mode works, which just sets bg color to none. Transparency mode can be a bit finicky in general because of how different plugins do transparency |
Perfect! Thank you kindly for elaborative explanation 🙏 Maybe next time I will be able to send a PR instead :-) |
I'm attempting to understand the hues of your palette and subtly manipulate them to better suit my needs. Yet, I've encountered another issue I'm unable to resolve. The colour scheme in lualine makes the inactive tabs hard to read. Could you guide me on how to adjust this?
The text was updated successfully, but these errors were encountered: