HV Dark 0.80, version 1.0
Cutting the beta version crap, let's be a little serious (or not)  (IMG:[
invalid] 
style_emoticons/default/laugh.gif) 
[attachmentid=71368]
[attachmentid=71369]
This is a supposedly finished version, it includes:
- Some general visual changes: Mana bar brightening (character+monsters), hp/mp/sp bars change (character+monsters)
- Character panel highlights (previously done by tetron, I omitted some code lines)
- A default font color fix (I mixed up some categories)
- The HV Login page fix, almost forgot this one since I rarely use it...
- A tiny color fix for VriskaSerket's HV Monster Lab Babysitter (just brightened the little number that points out the victories for each monster)
Also, you'll be getting some extras:
[attachmentid=71374]
[attachmentid=71375]
This one is for those that care more about efficiency than aesthetics, it's basically the same code with essential images changes.
And the new classical:
[attachmentid=71376]
[attachmentid=71377]
To install the .css directly:
CODE
// ==UserScript==
// @name        HV Dark
// @updateURL   about:blank
// @grant       GM_getResourceURL
// @resource    hv_dark http://forums.e-hentai.org/index.php?act=Attach&type=post&id=71368
// @include     http://hentaiverse.org/*
// ==/UserScript==
var cssId = 'hv_dark'
if(!document.getElementById(cssId)) {
    var link = document.createElement('link')
    link.id = cssId
    link.rel = 'stylesheet'
    link.type = 'text/css'
    link.media = 'all'
    link.href = GM_getResourceURL('hv_dark')
    document.head.appendChild(link)
}
Screenshots:
 
  
  
 
Please don't hesitate to report if you see some ugly things, and enjoy  (IMG:[
invalid] 
style_emoticons/default/tongue.gif)
This post has been edited by boulay: Jan 12 2016, 16:02