Jump to content

MediaWiki:Common.css: Difference between revisions

From Meridian-Arch Wiki
Undo revision 39 by Evelyn344 (talk)
Tag: Undo
No edit summary
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
:root {
html.skin-theme-clientpref-night {
    /* 1. Primary Backgrounds */
     --background-color-base: #040a12;
    --background-color-base: #ffffff;          /* Main page background */
     --background-color-paper: #040a12;
     --background-color-interactive-subtle: #121a12; /* Sidebar, boxes, cards */
     --color-base: #c7d9ed;
     --background-color-interactive: #1a261a;   /* Button hover states */
     --color-link: #800085;
   
}
    /* 2. Text & Content Colors */
body {
     --color-base: #00ff66;                     /* Standard body text color */
     background-color: #040a12 !important;
     --color-emphasized: #33ff88;               /* Titles, bold text, headers */
     color: #c7d9ed !important;
    --color-subtle: #00aa44;                  /* Muted/secondary text */
     font-family: Arial, sans-serif !important;
   
    /* 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,  
#content, .mw-body {
.skin-vector-abve body,  
    background-color: #040a12 !important;
html.skin-theme-clientpref-dark {
    color: #c7d9ed !important;
    border: 1px solid #090f19 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
a{
  color: #479AEC;
}
a:visited {
  color: #7366FF;
}
h1, h2, h3 {
     color: #c7d9ed !important;
     color: #c7d9ed !important;
    border-bottom: 2px solid #7db3e8 !important;
}
}
 
.wikitable th {
body.skin-theme-clientpref-dark #firstHeading,
    background-color: #090f23 !important;
body.skin-theme-clientpref-dark .mw-page-title-main {
     color: #c7d9ed !important;
     color: #c7d9ed !important;
}
}


body.skin-theme-clientpref-dark .mw-body,
.wikitable td {
body.skin-theme-clientpref-dark #content {
     background-color: #090f23 !important;
     background-color: #040a12 !important;
     color: #c7d9ed !important;
     color: #c7d9ed !important;
    border-color: #7db3e8 !important;
}
}

Latest revision as of 06:12, 30 July 2026

html.skin-theme-clientpref-night {
    --background-color-base: #040a12;
    --background-color-paper: #040a12;
    --color-base: #c7d9ed;
    --color-link: #800085;
}
body {
    background-color: #040a12 !important;
    color: #c7d9ed !important;
    font-family: Arial, sans-serif !important;
}

#content, .mw-body {
    background-color: #040a12 !important;
    color: #c7d9ed !important;
    border: 1px solid #090f19 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
a{
  color: #479AEC;
}
a:visited {
  color: #7366FF;
}
h1, h2, h3 {
    color: #c7d9ed !important;
    border-bottom: 2px solid #7db3e8 !important;
}
.wikitable th {
    background-color: #090f23 !important;
    color: #c7d9ed !important;
}

.wikitable td {
    background-color: #090f23 !important;
    color: #c7d9ed !important;
    border-color: #7db3e8 !important;
}