Jump to content

MediaWiki:Common.css: Difference between revisions

From Meridian-Arch Wiki
Undo revision 39 by Evelyn344 (talk)
Tag: Undo
No edit summary
Line 1: Line 1:
:root {
body {
     /* 1. Primary Backgrounds */
     background-color: #040a12 !important;
    --background-color-base: #ffffff;         /* Main page background */
     color: #ffffff !important;
     --background-color-interactive-subtle: #121a12; /* Sidebar, boxes, cards */
     font-family: Arial, sans-serif !important;
     --background-color-interactive: #1a261a;   /* Button hover states */
}
   
 
    /* 2. Text & Content Colors */
#content, .mw-body {
    --color-base: #00ff66;                    /* Standard body text color */
     background-color: #040a12 !important;
    --color-emphasized: #33ff88;              /* Titles, bold text, headers */
     color: #ffffff !important;
    --color-subtle: #00aa44;                  /* Muted/secondary text */
     border: 1px solid #d0d5dd !important;
   
     box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    /* 3. Links */
    --color-link: #33ff99;                    /* Standard links */
     --color-link--visited: #00b34a;           /* Visited links */
     --color-link--red: #ff3344;               /* Missing page / red links */
      
    /* 4. Borders & Lines */
    --border-color-base: #003311;             /* Dividers and borders */
     --border-color-interactive: #006622;       /* Active borders */
}
}


body.skin-theme-clientpref-dark,  
h1, h2, h3 {
.skin-vector-abve body,  
     color: #0f172a !important;
html.skin-theme-clientpref-dark {
    border-bottom: 2px solid #cbd5e1 !important;
     color: #c7d9ed !important;
}
}


body.skin-theme-clientpref-dark #firstHeading,
a {
body.skin-theme-clientpref-dark .mw-page-title-main {
     color: #2563eb !important;
     color: #c7d9ed !important;
}
}


body.skin-theme-clientpref-dark .mw-body,
/* Tables */
body.skin-theme-clientpref-dark #content {
.wikitable th {
     background-color: #040a12 !important;
    background-color: #0f172a !important;
     color: #c7d9ed !important;
    color: #ffffff !important;
}
 
.wikitable td {
     background-color: #ffffff !important;
     color: #1e293b !important;
    border-color: #e2e8f0 !important;
}
}

Revision as of 07:08, 28 July 2026

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