Jump to content

MediaWiki:Common.css: Difference between revisions

From Meridian-Arch Wiki
No edit summary
No edit summary
Line 1: Line 1:
html.skin-theme-clientpref-night {
html.skin-theme-clientpref-night {
     --background-color-base: #101418;  /* Dark background outer area */
     --background-color-base: #090f19;  /* Dark background outer area */
     --background-color-paper: #1a1f26;  /* Dark background article area */
     --background-color-paper: #040a12;  /* Dark background article area */
     --color-base: #f0f3f6;              /* White/light text */
     --color-base: #c7d9ed;              /* White/light text */
     --color-link: #419fff;              /* Bright links for dark background */
     --color-link: #419fff;              /* Bright links for dark background */
}
body {
    background-color: #040a12 !important;
    color: #ffffff !important;
    font-family: Arial, sans-serif !important;
}
#content, .mw-body {
    background-color: #040a12 !important;
    color: #ffffff !important;
    border: 1px solid #d0d5dd !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
h1, h2, h3 {
    color: #0f172a !important;
    border-bottom: 2px solid #cbd5e1 !important;
}
a {
    color: #2563eb !important;
}
/* Tables */
.wikitable th {
    background-color: #0f172a !important;
    color: #ffffff !important;
}
.wikitable td {
    background-color: #ffffff !important;
    color: #1e293b !important;
    border-color: #e2e8f0 !important;
}
}

Revision as of 07:11, 28 July 2026

html.skin-theme-clientpref-night {
    --background-color-base: #090f19;   /* Dark background outer area */
    --background-color-paper: #040a12;  /* Dark background article area */
    --color-base: #c7d9ed;              /* White/light text */
    --color-link: #419fff;              /* Bright links for dark background */
}
body {
    background-color: #040a12 !important;
    color: #ffffff !important;
    font-family: Arial, sans-serif !important;
}

#content, .mw-body {
    background-color: #040a12 !important;
    color: #ffffff !important;
    border: 1px solid #d0d5dd !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

h1, h2, h3 {
    color: #0f172a !important;
    border-bottom: 2px solid #cbd5e1 !important;
}

a {
    color: #2563eb !important;
}

/* Tables */
.wikitable th {
    background-color: #0f172a !important;
    color: #ffffff !important;
}

.wikitable td {
    background-color: #ffffff !important;
    color: #1e293b !important;
    border-color: #e2e8f0 !important;
}