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

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά παραβίασης».

Μάθετε περισσότερα

Αυτό το νήμα αρχειοθετήθηκε. Κάντε νέα ερώτηση αν χρειάζεστε βοήθεια.

New Tab page text color

  • 1 απάντηση
  • 3 έχουν αυτό το πρόβλημα
  • 161 προβολές
  • Τελευταία απάντηση από yakov.mirenkov

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?

Επιλεγμένη λύση

userContent.css:

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

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

}

Προβολή απάντησης εντός συζήτησης 👍 1

Όλες οι απαντήσεις (1)

Επιλεγμένη λύση

userContent.css:

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

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

}