1

I use dark theme and want to change textbox background color in Firefox. How can I do? userContent.css or Stylish?

enter image description here

1 Answers1

2

The following Stylish CSS will work, if it's OK that every textbox everywhere becomes black text on white background:

@namespace url(http://www.w3.org/1999/xhtml);
html input {
  background: #fff !important;
  color: #000 !important;
}

You could try removing the !important so it's just #fff; and #000; which should make it only affect textboxes that are unreadable... but this may cause trouble on some websites.

tripflag
  • 521