वैसे, मुझे कहना होगा कि @danicotra द्वारा दिया गया समाधान फ़ायरफ़ॉक्स 57 के साथ भी नए टैब के लिए काम करता है। हालाँकि, पेज लोड करने के दौरान, एक खाली फ़्लैश अभी भी आपकी आँखों को व्यवस्थित रूप से जला देगा।
आपके लिए सामग्री का एक अन्य प्रस्ताव यहां दिया गया है ~/.mozilla/firefox/xxxxxxxx.default/chrome/userContent.css
, जो कुछ और स्थानों को काला कर देता है, लेकिन लोड पर रिक्त फ़्लैश को हल नहीं करेगा।
/* https://userstyles.org/styles/90565/firefox-adjust-white-flash-when-opening-new-tab */
/* https://userstyles.org/styles/142191/remove-new-tab-flash */
@-moz-document url-prefix(about:preferences), url-prefix(about:blank), url-prefix(about:newtab) {
html, body, #newtab-customize-overlay {
background: #303030 !important;
color: #b2b2b2 !important;
}
}
@-moz-document url(chrome://browser/content/browser.xul)
{
browser[type="content-primary"]
{
background: #303030 !important;
color: #b2b2b2 !important;
}
}
@-moz-document url(chrome://browser/content/browser.xul)
{
browser[type="content-primary"], tabbrowser tabpanels, #appcontent > #content
{
background: #1B1B1B url("chrome://global/skin/media/imagedoc-darknoise.png") repeat fixed !important;
color: #b2b2b2 !important;
}
}
@-moz-document url(about:blank),
url(about:preferences),
url(about:config),
url(about:newtab)
{
#newtab-window,
html,
body,
#newtab-customize-overlay
{
background: #1B1B1B url("chrome://global/skin/media/imagedoc-darknoise.png") repeat fixed;
color: #b2b2b2 !important;
}
}
html>body {
background: #303030 !important;
color: #b2b2b2 !important;
}