此討論串已被封存。
如果您有需要幫助,請新增一個新問題
已解決
封存
New Tab page text color
Hi there! The New Tab page looks great with white text, but Firefox 140.0.4 thinks my wallpaper is white, so text should be dark. I can change the body class to "activity-stream darkWallpaper" using the inspector and it works fine, but how make this change permanently?
Hi there! The New Tab page looks great with white text, but Firefox 140.0.4 thinks my wallpaper is white, so text should be dark. I can change the body class to "activity-stream darkWallpaper" using the inspector and it works fine, but how make this change permanently?
所有回覆 (1)
選擇的解決方法
userContent.css:
@-moz-document url("about:home"), url("about:newtab") {
.activity-stream {
color-scheme: dark !important;
}
}