Para o Google Chrome e o Chromium, você provavelmente é uma vítima da Edição 1373: Navegando em sites de fundo escuro resulta em flashes brancos cegantes entre as páginas .
Há um hack para minimizar, mas não eliminar totalmente, sua infelicidade descrita em comentário 261 :
As a temporary fix, I set the custom user stylesheet to render pages
with a black background so that before it receives styling information
from the website it renders the window black instead of white, and now
it flashes black instead, which is much more bearable on the eyes
until a permanent solution is made.
O truque envolve adicionar as seguintes linhas ao seu Custom.css
, que está localizado em User Stylesheets
na sua pasta Default
. No meu caso, o caminho é ~/.config/chromium/Default/User Stylesheets
.
html, body{
background-color:#000000; //This sets the background color to black
color:#0000FF; //This sets the text to blue, so you can read it on webpages set to use defaults; white is too hard on my eyes and if you dont put this it will be black on black
}
Quanto ao Firefox, eu uso o seguinte código em userChrome.css
, localizado em ~/.mozilla/firefox/profile_name/chrome
:
@namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
/*prevent white flash*/
tabbrowser tabpanels { background-color: #111 !important}
Se a pasta chrome
não existir, crie-a. Observe que chrome
e userChrome.css
fazem distinção entre maiúsculas e minúsculas.