Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

New Tab page text color

  • 1 Antwort
  • 3 haben dieses Problem
  • 252 Aufrufe
  • Letzte Antwort von yakov.mirenkov
  • Gelöst

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?

Ausgewählte Lösung

userContent.css:

@-moz-document url("about:home"), url("about:newtab") {

       .activity-stream {
               color-scheme: dark !important;
       }

}

Diese Antwort im Kontext lesen 👍 1

Alle Antworten (1)

Ausgewählte Lösung

userContent.css:

@-moz-document url("about:home"), url("about:newtab") {

       .activity-stream {
               color-scheme: dark !important;
       }

}