V3rmillion Theme

Theme editor for V3rmillion.net

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         V3rmillion Theme
// @namespace    www.v3rmillion.net
// @version      1.0.0
// @description  Theme editor for V3rmillion.net
// @author       Radio, HIGHLY edited by Internal 1 (UID 171709)
// @match        *://*.v3rmillion.net/*
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.js
// ==/UserScript==
var css = '.postbit_buttons a.postbit_rep span:before{content:"\\f005";}.postbit_buttons a.postbit_like span:before{content:"\\f087"}.postbit_buttons a.postbit_dislike span:before{content: "\\f088"}.main_replacer{background: transparent;border:none;}.forum_on,.usercp_nav_item:before,li.current_rating[style*="20"] ~ li a.one_star,li.current_rating[style*="40"] ~ li:nth-child(n+5) a,li.current_rating[style*="60"] ~ li:nth-child(n+4) a,li.current_rating[style*="80"] ~ li:nth-child(n+3) a,li[style*="100"]~ li:nth-child(n+2) a{color:main_colour}span[style~="#CD1818"],.cRem a:visited,.cRem a:link, .inline_row a:link, .inline_row a:visited{color:main_colour!important}ul.menu li a.active{background:main_colour!important}.thead,.tfoot,.buttons:hover{background:main_colour}.postbit_buttons > a:link,.postbit_buttons > a:visited,.postbit_buttons > a:active,.pagination a,a.button:link,a.button:visited,a.button:active,button,input.button{background:main_colour;border:1px solid main_colour}.buttons{border:1px solid main_colour}.postbit_buttons > a:hover,a.button:hover{background:#404040;border:1px solid #404040}#bridge,.thread_head{border-bottom:5px solid main_colour !important}#footer,ul.menu li ul,.panel_buttons{border-top:5px solid main_colour}input.textbox:focus, textarea:focus{border-color:main_colour;box-shadow:0px 0px 10px main_colour}';
$(document).ready(function() {
    $("<style id='InternalsTheme'></style>").appendTo("head");
	$("#InternalsTheme").html(css.replace(/main_colour/g, "#2a52be"));
	$("#logo img").attr("src", "https://vgy.me/bDrtDW.png");
});