OzBargain Dark Mode Classic

The classic OzBargain Dark Mode from before the February 2025 site changes

// ==UserScript==
// @name			OzBargain Dark Mode Classic
// @namespace		http://tampermonkey.net/
// @version			0.2
// @description		The classic OzBargain Dark Mode from before the February 2025 site changes
// @match			https://www.ozbargain.com.au/*
// @icon			https://www.ozbargain.com.au/favicon.ico
// @run-at			document-end
// @grant			GM_addStyle
// @license			MIT
// ==/UserScript==

GM_addStyle ( `
[data-color-scheme="dark"] {
	/* main.css */
    --border-clr: #484848;
    --borderhl-clr: #666;
    --comment-hl-bg: #124;
    --comment-op-bg: #333;
    --comment-user-bg: #422;
    --footer-bg: #080808;
    --footer-fg: #888;
    --input-fg: #ddd;
    --input-bg: #222226;
    --input-border: #444;
    --light-bg: #333338;
    --light2-bg: #222226;
    --link-fg: #89e;
    --link2-fg: #b0c0f0;
    --linkv-fg: #abf;
    --meta-fg: #aaa;
	--meta-emphasis-fg: #aaa;
    --page-bg: #181818;
    --page-fg: #c8c8c8;
    --pageads-bg: #0000007f;
    --titlehl-fg: #f63;
    --tooltip-clr: #666;

	/* Inherited from light mode */
	--menu-fg: #000;
	--navmenu-bg: #333;

	/* live.css */
	--live-ad-bg: #030;
    --live-comp-bg: #331;
    --live-forum-bg: #003;

	/* style.css */
	--menuhl-bg: #663300;
    --shade1-bg: #cd6702;
    --shade2-bg: #f7a859;
    --shade3-bg: #b35a02;
	--extra-birthday-bg: #7e5160;
}
` );