// ==UserScript==
// @name V3RMILLION Light by Drachenlord
// @namespace https://v3rmillion.net
// @description white theme for Vermillion, only time im updating this
// @author Drachenlord
// @homepage https://userstyles.org/styles/163090
// @include https://v3rmillion.net*
// @include https://v3rmillion.net/siterules.php
// @include https://v3rmillion.net/legal.html
// @include https://v3rmillion.net/removals/
// @run-at document-start
// @version 0.0001
// ==/UserScript==
(function() {var css = "";
if (false || (document.location.href.indexOf("https://v3rmillion.net") == 0))
css += [
"#logo img, .logo",
" {",
" content: url(http://tinyimg.io/i/5uAAq4a.png) !important;",
" }",
"",
" .pm_new, .alert_new, ul.menu li a.active",
" {",
" background: #EFEFEF !important;",
" }",
"",
" #bridge",
" {",
" border-bottom: 5px solid #EFEFEF;",
" }",
"",
" ul.menu li ul, .panel_buttons",
" {",
" border-top: 5px solid #EFEFEF;",
" }",
"",
" .pagination .pagination_current",
" {",
" background: #EFEFEF;",
" border: 1px solid #EFEFEF;",
" border-radius: 2px;",
" }",
"",
" .pagination a",
" {",
" background: #EFEFEF;",
" border: 1px solid #EFEFEF;",
" }",
"",
" .pagination a:hover",
" {",
" transition: background 0.2s ease, border 0.2s ease;",
" background: #cecece;",
" border: 1px solid #EFEFEF;",
" }",
"",
" .thead",
" {",
" background: #EFEFEF;",
" }",
"",
" .popup_menu .popup_item:hover",
" {",
" color: #EFEFEF;",
" }",
"",
" .buttons:hover",
" {",
" transition: border 0.2s ease;",
" background: #EFEFEF;",
" cursor: pointer;",
" }",
"",
" .buttons",
" {",
" border: #EFEFEF;",
" }",
"",
" a.postbit_qdelete, a.postbit_website, a.postbit_reply_pm, a.postbit_forward_pm, a.postbit_delete_pm, a.postbit_email, a.postbit_pm, a.postbit_find, a.postbit_edit, a.postbit_quote, a.postbit_multiquote, a.postbit_multiquote_on, a.postbit_report",
" {",
" background: #cecece !important;",
" border: 1px solid #EFEFEF !important;",
" }",
"",
" a.button.new_thread_button, button, input.button, a.button:link, a.button:visited, a.button:active",
" {",
" background: #cecece;",
" border: 1px solid #EFEFEF;",
" }",
"",
" a.button.new_thread_button:hover, button, input.button:hover, a.button:hover",
" {",
" transition: background 0.2s ease, border 0.2s ease;",
" background: #ffffff;",
" border: 1px solid #ffffff;",
" }",
"",
" .tfoot",
" {",
" background: #EFEFEF;",
" }",
"",
" .usercp_nav_item:before",
" {",
" color: #EFEFEF;",
" }",
"",
" .thead input.textbox, .thead select",
" {",
" border: #EFEFEF;",
" }",
"",
" ul.menu li a:hover, .panel_buttons a:hover, ul.menu li ul li a:hover",
" {",
" transition: background 0.5s ease;",
" background: #ffffff;",
" }",
"",
" .thread_head",
" {",
" border-bottom: 5px solid #EFEFEF !important;",
" }",
"",
" #footer",
" {",
" border-top: 5px solid #EFEFEF;",
" }",
"",
" .forum_on",
" {",
" color: #EFEFEF;",
" }",
"",
" .forum_off",
" {",
" color: #ffffff;",
" }",
"",
" .cRem a:visited, .cRem a:link",
" {",
" color: #EFEFEF !important;",
" }",
"",
" .inline_row a:visited, .inline_row a",
" {",
" color: #EFEFEF !important;",
" }",
"",
" input.textbox:focus",
" {",
" transition: border 0.2s ease, box-shadow 0.2s ease;",
" border: 1px solid #EFEFEF;",
" box-shadow: 0 0 10px #EFEFEF;",
" }",
"",
" form #message:focus",
" {",
" transition: border 0.2s ease, box-shadow 0.2s ease;",
" border: 1px solid #EFEFEF;",
" box-shadow: 0 0 10px #EFEFEF;",
" }",
"",
" div#container span.smalltext a span strong",
" {",
" color: #cecece !important;",
" }",
"",
" .red_alert",
" {",
" background: #EFEFEF;",
" }",
"",
" .red_alert:hover",
" {",
" transition: background 0.5s ease;",
" background: #EFEFEF;",
" }"
].join("\n");
if (false || (location.href.replace(location.hash,'') == "https://v3rmillion.net/siterules.php") || (location.href.replace(location.hash,'') == "https://v3rmillion.net/legal.html") || (location.href.replace(location.hash,'') == "https://v3rmillion.net/removals/"))
css += [
"img",
" {",
" content: url(http://tinyimg.io/i/5uAAq4a.png) !important;",
" }",
"",
" .wrap",
" {",
" border: 1px solid #EFEFEF;",
" }",
"",
" .wrap a",
" {",
" color: #EFEFEF;",
" }",
"",
" .footer",
" {",
" background-color: #EFEFEF;",
" }",
"",
" .footer a",
" {",
" color: #000000;",
" }",
"",
" .footer a:hover",
" {",
" transition: color 0.1s ease;",
" color: #EFEFEF;",
" }",
"",
" a:link, a:visited",
" {",
" color: #EFEFEF;",
" }",
"",
" a:link:hover, a:visited:hover",
" {",
" color: #DDDDFF;",
" }"
].join("\n");
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var node = document.createElement("style");
node.type = "text/css";
node.appendChild(document.createTextNode(css));
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
heads[0].appendChild(node);
} else {
// no head yet, stick it whereever
document.documentElement.appendChild(node);
}
}
})();