Skip to content

Instantly share code, notes, and snippets.

@nielsAD
Last active May 2, 2016 12:41
Show Gist options
  • Save nielsAD/f536797bf95df92867eabc09eaa4ffb9 to your computer and use it in GitHub Desktop.
Save nielsAD/f536797bf95df92867eabc09eaa4ffb9 to your computer and use it in GitHub Desktop.
Firefox Stylish Anti-Dark Theme
textarea,
select,
input:not(.urlbar-input):not(.textbox-input):not(.form-control):not([type="button"]):not([type="submit"]):not([type="reset"])
{
-moz-appearance: none !important;
border: 1px solid grey;
border-radius: 4px;
background-color: white;
color: black;
}
button,input[type="button"]
{
-moz-appearance: none !important;
border: 1px solid darkgrey;
border-radius: 4px;
background-color: #eeeeee;
color: black
}
input[type="submit"]
{
-moz-appearance: none !important;
border: 1px solid darkgreen;
border-radius: 4px;
background-color: #eef5ee;
color: black
}
input[type="reset"]
{
-moz-appearance: none !important;
border: 1px solid darkred;
border-radius: 4px;
background-color: #ffeeee;
color: black
}
::-moz-selection
{
-moz-appearance: none !important;
background-color: #1793d0;
color: white;
}
#downloads-indicator-counter
{
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment