MediaWiki:Theme-dark.css: Difference between revisions

From C# Gamedev Wiki
No edit summary
No edit summary
Line 10: Line 10:
--theme-header-color: #fff;
--theme-header-color: #fff;
--theme-header-icon-filter: invert(100%);
--theme-header-icon-filter: invert(100%);
--theme-content-bg: #112211;
/* syntax highlighting colors */
/* syntax highlighting colors */
Line 46: Line 48:
--theme-dropdown-bg: #112211;
--theme-dropdown-bg: #112211;
--theme-content-bg: #112211;
}
}

Revision as of 19:55, 15 June 2024

.mw-body {
	background: #111;
}

/* dark vector theme */
:root {
	--theme-body-bg: #072207;
	--theme-body-color: #202122;
	--theme-header-bg: #151;
	--theme-header-color: #fff;
	--theme-header-icon-filter: invert(100%);
	
	--theme-content-bg: #112211;
	
	/* syntax highlighting colors */
	--theme-hljs-bg: #1e1e1e;
	--theme-hljs-unset: #dbdbdb;
	--theme-hljs-comment: #57a64a;
	--theme-hljs-doctag: #556b2f;
	--theme-hljs-keyword: #569cd6;
	--theme-hljs-type: #4ec9b0;
	--theme-hljs-function: #dcdcaa;
	--theme-hljs-string: #d69d85;
	--theme-hljs-number: #dbdbdb;
	--theme-hljs-variable: #9cdcfe;
	--theme-hljs-symbol: #d8a0df;
	--theme-hljs-regexp: #9a5334;
	--theme-hljs-meta: #9b9b9b;
	--theme-hljs-section: gold;
	--theme-hljs-attribute: #92caf4;
	--theme-hljs-bullet: #d7ba7d;
	--theme-hljs-selector: #d7ba7d;
	--theme-hljs-addition: #144212;
	--theme-hljs-deletion: #600;
	--theme-hljs-tsql-symbol: #dcdcdc;
	--theme-hljs-tsql-string: #cb4141;
	--theme-hljs-tsql-built_in: #c975d5;
	--theme-hljs-tsql-sp: #b3725b;
}

/* dark vector theme body colors */
.mw-content-container {
	--theme-pinnable-header-label-color: #54595d;
	--theme-pinnable-header-link-color: #3366cc;
	--theme-pinnable-header-link-hover-color: #447ff5;
	--theme-pinnable-list-heading-color: #54595d;
	--theme-pinnable-list-link-color: #3366cc;
	
	--theme-dropdown-bg: #112211;
}