blob: ca88a0d3dab8ea2cc4f049c2c1e91dc1e80f66fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
dark background in new tabs without a white flash (with tridactyl newtab)
@see: https://github.com/tridactyl/tridactyl/issues/2510
*/
:root {
--tridactyl-bg: #2a2a2e !important;
--tridactyl-fg: #b1b1b3 !important;
}
/*
set the background color of the new tab page (without tridactyl or with tridactyl without newtab)
*/
@-moz-document url-prefix(about:home), url-prefix(about:newtab), url-prefix(about:blank) {
body {
background: #1d1b19;
}
}
|