MediaWiki:Common.css: Difference between revisions

From The Jadnix Codex

Blanked the page
Tag: Blanking
No edit summary
Line 1: Line 1:
/* 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;
}

Revision as of 22:38, 7 February 2026

/* 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;
}