LLresearch and Law of One Dark Theme

Change dark theme colors for LLresearch and LawOfOne website

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         LLresearch and Law of One Dark Theme
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Change dark theme colors for LLresearch and LawOfOne website
// @match        https://www.lawofone.info/*
// @match        https://www.llresearch.org/*
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    /* Lawofone.info */
    GM_addStyle(`
        :root {
            --background-body: #202020 !important;
            --background: #282828 !important;
            --background-alt: #303030 !important;
            --selection: #68a7a7 !important;
            --text-main: #bfbfbf !important;
            --text-bright: #e0e0e0 !important;
            --text-muted: #909090 !important;
            --links: #68a7a7 !important;
            --focus: #68a7a7ab !important;
            --border: #404040 !important;
            --code: #d4a76a !important;
            --button-base: #303030 !important;
            --button-hover: #404040 !important;
            --scrollbar-thumb: var(--button-hover) !important;
            --scrollbar-thumb-hover: #505050 !important;
            --form-placeholder: #808080 !important;
            --form-text: #bfbfbf !important;
        }
    `);

    /* LLresearch.org */
    GM_addStyle(`
        .dark body {
            color: #bfbfbf !important;
            background-color: #202020 !important;
        }
        .dark .\\~bg-yellow {
            background-color: inherit !important;
        }
        .dark .\\~text-rosegold {
            color: inherit !important;
        }
        a {
            color : #68a7a7 !important;
        }
        .nav-icon {
            color: inherit;
        }
        *,:before,:after {
            --tw-ring-color:  #68a7a7 !important;
        }
    `);

})();