Here's the script I use:
/* Taken from the Dark Mode extension, Dark Mode #18 (grey dark) */ html {background: rgb(51,51,51) !important} html * { color: rgb(144,144,144) !important; border-color: rgb(57,57,57) !important; background-color: rgb(39,39,39) !important; } a, a * {color: rgb(97,129,169) !important} img[src]:hover, input[type=image]:hover {opacity: 0.4} input, select, button, textarea {background: rgb(74,74,74) !important} a:visited, a:visited *, a:active, a:active * {color: rgb(82,95,102) !important} input[type=radio] { border-width: 0 !important; background: none !important; } /* The stuff below was added by me, Nathan Wailes */ img { opacity: 0.4 !important; } img:hover { opacity: 0.5 !important; } img:active { opacity: 0.6 !important; } /* Twitter */ tcu-imageWrapper[style], tcu-imageWrapper[style]:hover, tcu-imageWrapper[style]:active { opacity: 0.4 !important; } |