diff --git a/userChrome.css b/userChrome.css index 6029cf5..62458a4 100644 --- a/userChrome.css +++ b/userChrome.css @@ -10,6 +10,7 @@ --bf-sidebar-searchbar-radius: 6px; --bf-accent-bg: #4C5FF9CC; + --bf-blank-page-bg: #252525; --bf-urlbar-hightlight-bg: var(--bf-accent-bg); --bf-urlbar-radius: 9px; diff --git a/userContent.css b/userContent.css index d7c50a4..2639c8c 100644 --- a/userContent.css +++ b/userContent.css @@ -1,9 +1,13 @@ @import url('userChrome.css'); /* Removes the white loading page */ -@-moz-document url(about:blank), url(about:newtab), url(about:home) { - html:not(#ublock0-epicker), html:not(#ublock0-epicker) body, #newtab-customize-overlay { - background: var(--bf-bg) !important; +/* url(about:newtab), url(about:home) */ +@-moz-document url(about:blank) { + html:not(#ublock0-epicker), + html:not(#ublock0-epicker) + body, + #newtab-customize-overlay { + background: var(--bf-blank-page-bg) !important; } }