25 lines
No EOL
578 B
CSS
25 lines
No EOL
578 B
CSS
@import "userContent/NewTab.css";
|
|
@import "userContent/Preferences.css";
|
|
|
|
@-moz-document url-prefix("about:") {
|
|
:root {
|
|
--body-background: #f5f5f5;
|
|
--body-title-text: #000;
|
|
--body-text: #333;
|
|
|
|
--newtab-tile-background: #fff;
|
|
|
|
--field-background: #fff;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--body-background: #1b1b1b;
|
|
--body-title-text: #fff;
|
|
--body-text: #e0e0e0;
|
|
|
|
--newtab-tile-background: #303030;
|
|
|
|
--field-background: #202020;
|
|
}
|
|
}
|
|
} |