Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 871 Bytes

firefox-dark-theme.md

File metadata and controls

42 lines (34 loc) · 871 Bytes

Fix Firefox Text Input Box Themeing Issues

Arc Dark Theme made all my text input box backgrounds, well, dark. Too dark. Here's how to fix it.

cd ~/.mozilla/firefox
ls [Check for the directory for the profile you wish to fix]
cd [profile directory]
mkdir chrome
cd chrome
vi userContent.css

The content of userContent.css should be thus:

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;
}
  • Source(s)