Luogu Helper

Night Mod ForLuogu

目前为 2018-10-08 提交的版本。查看 最新版本

// ==UserScript==
// @name         Luogu Helper
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Night Mod ForLuogu
// @author       FangHao
// @match        https://www.luogu.org/*
// @grant        none
// ==/UserScript==



(function() {
    'use strict';
    var x = document.getElementsByTagName("h1");
    for(var i = 0; i < x.length; i++){
        x[i].style = "color:#ececec";
    }
    x = document.getElementsByTagName("h2");
    for(i = 0; i < x.length; i++){
        x[i].style = "color:#ececec";
    }
    x = document.getElementsByTagName("h3");
    for(i = 0; i < x.length; i++){
        x[i].style = "color:#ececec";
    }
    x = document.getElementsByTagName("h4");
    for(i = 0; i < x.length; i++){
        x[i].style = "color:#ececec";
    }
    x = document.getElementsByTagName("h5");
    for(i = 0; i < x.length; i++){
        x[i].style = "color:#ececec";
    }
    x = document.getElementsByTagName("p");
    for(i = 0; i < x.length; i++){
        x[i].style = "color:#ececec";
    }
    x = document.getElementsByTagName("li");
    for(i = 0; i < x.length; i++){
        x[i].style = "color:#ececec";
    }
    x = document.getElementsByTagName("strong");
    for(i = 0; i < x.length; i++){
        x[i].style = "color:#ececec";
    }
    x = document.getElementsByTagName("pre");
    for(i = 0; i < x.length; i++){
        x[i].style = "background-color: #777777; color: #e8e8e8;";
    }
    var root=document.getElementsByClassName("lg-article am-g")[0];
           root.style.cssText="background-color: #444444;";
    root=document.getElementsByClassName("am-panel am-panel-default lg-summary")[0];
           root.style.cssText="background-color: #444444;";
    root=document.getElementsByClassName("am-panel am-panel-default lg-summary am-hide-sm")[0];
           root.style.cssText="background-color: #444444;";
    root=document.getElementsByClassName("lg-content")[0];
           root.style.cssText="background-color: #353535;";
    root=document.getElementsByClassName("lg-toolbar")[0];
           root.style.cssText="background-color: #353535; border: 1px solid #464646; ";
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址