护眼版掘金

护眼版掘金(杏木色)

// ==UserScript==
// @name         护眼版掘金
// @namespace    http://tampermonkey.net/
// @version      0.2.0
// @description  护眼版掘金(杏木色)
// @author       me
// @match        https://*.juejin.cn/*
// @grant        none
// @run-at       document-end
// @license      MIT
// ==/UserScript==

(function () {
    "use strict";

    function overrideStyle() {
        const style = document.createElement('style');
        style.textContent = `body, .light-theme {
        --juejin-font-1: #2e2e2e8c !important;
        --juejin-layer-1: rgb(250 249 222) !important;
        --juejin-background: #696861 !important;
        --juejin-gray-2: #efd78363;
        --juejin-brand-5-light: #e3e3e3;
        }`;
        document.head.appendChild(style);
    }

    if (document.readyState !== 'loading') {
        overrideStyle();
    } else {
        document.addEventListener('DOMContentLoaded', overrideStyle);
    }
})();

QingJ © 2025

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