Fix Firefox unreadable text on dark themes [linux]

cd ~

cd .mozilla/firefox

ls [Check for the directory for the profile you wish to fix]

cd [profile directory]

mkdir chrome

cd chrome

nano userContent.css

[Copy in this code: http://pastebin.com/My5byv4j ]

input:not(.urlbar-input):not(.textbox-input):not(.form-control):not([type=’checkbox’]) {
    -moz-appearance: none !important;
    background-color: white;
    color: black;
}
 
#downloads-indicator-counter {
    color: white;
}
 
textarea {
    -moz-appearance: none !important;
    background-color: white;
    color: black;
}
 
select {
    -moz-appearance: none !important;
    background-color: white;
    color: black;

}

[Press Ctrl+X to save the changes and quit]

Posted in linux and tagged .

Leave a Reply