您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Dark mode for wiki.superfamicom.org
/* ==UserStyle== @name wiki.SuperFamicom.org Dark @namespace gitlab.com/Neui/userstyles @homepageURL https://gitlab.com/Neui/userstyles @supportURL https://gitlab.com/Neui/userstyles/issues @version 2.0.2 @license CC-BY-4.0 @description Dark mode for wiki.superfamicom.org @author Neui ==/UserStyle== */ @-moz-document domain("wiki.superfamicom.org") { html, body { background-color: black; color: white; } a { color: #D7D7D7; } a:hover, a:focus { color: #EEE; } .content a:hover { color: #FFF; } /* Buttons */ .button { color: white; border-color: white; } /* Tables */ table { background: unset; /* With border-radius it otherwise show white corners */ } .content tr td, #content tr { background: #303030; } .content tr:nth-child(2n) td, #content tr:nth-child(2n) { background: #3F3F3F; } .content tbody tr:hover td { background: #555; } .content td, .content th, .content table, .content tbody, .content thead { border-color: #666; border-bottom: 1px solid #666; } /* Code */ .content table pre, .content table code { /* Fixes <code> in tables */ background-color: inherit; color: inherit; } /* Fix comments otherwise they are somewhat hard to read */ span.hljs-comment { color: #554; } /* Table of Contents (the box to the right) */ .toc { background: #252525; border-color: #111; } /* Editing and creating */ form textarea.form-control, form input[type=text] { background: black; color: white; border-color: grey; } form textarea.form-control::placeholder, form input[type=text]::placeholder { color: darkgrey; } form#fileupload { background: black; color: white; border-color: grey; } .form-control:focus { border-color: #D7D7D7; } /* Footer */ .content-sections .section h2 { color: #EEE; } .content-sections .section ul li a { color: #EEE; } /* Search */ .search .result { border-bottom-color: rgba(255, 255, 255, 0.25); } }