Open nikitavoloboev opened 6 years ago
@nikitavoloboev you can change your hint style in the settings. Change it to another colour if the current one is not visible.
.sVim-hint {
background-color: #FFFF01;
color: #000000;
font-size: 10pt;
font-family: monospace;
line-height: 10pt;
padding: 0px;
opacity: 0.7;
position: fixed;
}
I haven't played with that extension, but you might also try something like Stylus (or Stylish) to apply a setting that changes the sVim CSS highlight based on the presence of some a class applied to the document when that plugin is active (assuming it applies some style like that). Or else find a hint style that you can use in your sVim settings that works well both light and dark -- though that sounds hard.
As for building an integration point with that plugin into sVim, that would put us in a position to keep track of any breaking changes that plugin makes and probably isn't something I can get on board with.
I used @luchenyuxx advice and changed my .sVim-hint CSS to this:
.sVim-hint {
/* background-color: #FFFF01; white */
background-color: ##FFFFF8; /* night */
/* color: #000000; white */
color: #EBEBEB; /* night */
font-size: 10pt;
font-family: monospace;
line-height: 10pt;
padding: 0px;
opacity: 0.7;
}
It works well only in some cases I get purple background like here
Anyone knows why?
I am using Nightlight Safari extension to automatically turn all the websites I visit into dark mode as I just downloaded Mojawe and love its night mode.
However with it, sVim link hints become unusable as you can't read the letters any more. Here is how it looks:
Is it possible to fix this?