MediaWiki:Common.css
From The Jadnix Codex
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* JADNIX CODEX: MINIMALIST DARK THEME */
:root {
/* The Void Colors */
--background-color-base: #0a0a0f !important; /* Deep black-blue */
--color-surface-0: #050508 !important; /* Pure void */
--color-base: #d1d1d1 !important; /* Light gray text */
/* The Jadnix Soul */
--color-primary: #a020f0 !important; /* Signature Purple */
}
/* Force dark backgrounds on everything */
body, .mw-body, .mw-header, .mw-sidebar {
background-color: var(--background-color-base) !important;
color: var(--color-base) !important;
}
/* Clean Purple Links */
a {
color: var(--color-primary) !important;
text-decoration: none;
}
a:hover {
color: #fff !important;
text-shadow: 0 0 5px var(--color-primary);
}
/* Kill the borders for a cleaner look */
.mw-header, .mw-sidebar {
border-color: #222 !important;
}