aboutsummaryrefslogtreecommitdiff
path: root/firefox
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-08-17 20:55:23 -0600
committerkballou <kballou@devnulllabs.io>2016-08-17 20:55:23 -0600
commitb13f546aab6db8544fffbdd763f465fe869d0bde (patch)
treece785ba984d61bd940c0cf50bf7ca54d11bf7607 /firefox
parent4fa448e10a39e5911c9cd94163a2b46057dd1788 (diff)
downloaddotfiles-b13f546aab6db8544fffbdd763f465fe869d0bde.tar.gz
dotfiles-b13f546aab6db8544fffbdd763f465fe869d0bde.tar.xz
Update firefox user settings
* Set {fore|back}ground colors * Set selection colors * Set link colors These settings work with the dark GTK themes and _most_ websites
Diffstat (limited to 'firefox')
-rw-r--r--firefox/.mozilla/firefox/chrome/userContent.css20
1 files changed, 20 insertions, 0 deletions
diff --git a/firefox/.mozilla/firefox/chrome/userContent.css b/firefox/.mozilla/firefox/chrome/userContent.css
index d745c393..95386538 100644
--- a/firefox/.mozilla/firefox/chrome/userContent.css
+++ b/firefox/.mozilla/firefox/chrome/userContent.css
@@ -1,3 +1,7 @@
+html, body {
+ background-color: #FFFFFF;
+ color: #000000;
+}
input:not(.urlbar-input):not(.textbox-input) {
-moz-appearance: none !important;
background-color: white;
@@ -19,3 +23,19 @@ select {
background-color: white;
color: black;
}
+a:link, a:link:active {
+ color: #70A7A9;
+}
+a:link:visited, a:link:visited:active {
+ color: #A770A9;
+}
+::-moz-selection {
+ background: #FF5E99;
+ color: #FFFFFF;
+ text-shadow: none;
+}
+::selection {
+ background: #FF5E99;
+ color: #FFFFFF;
+ text-shadow: none;
+}