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;
}