Discord Text Highlight Remover

Discord theme

目前為 2021-02-26 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Discord Text Highlight Remover
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Discord theme
// @author       Aristo-TTL
// @icon
// @match        *://discord.com/*
// @grant        GM_addStyle
// ==/UserScript==

var Primary = "#373A40"; // #373A40
var Secondary = "#303237"; // #303237

GM_addStyle(`
.theme-dark {
   --background-primary: ${Primary};
   --background-secondary: ${Secondary};
   --background-message-hover: ${Primary};
}
`);