Jump to content

MediaWiki:Common.css: Difference between revisions

From EquinoxxMC
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
@media screen {
@media screen {
   html.skin-theme-clientpref-os {
   html.skin-theme-clientpref-os and (prefers-color-scheme: dark) {
     --background-color-neutral-subtle: #101418;
     --background-color-neutral-subtle: #101418;
   }
   }
}
}


/*  and (prefers-color-scheme: dark) */
@media screen {
  html.skin-theme-clientpref-night {
    --background-color-neutral-subtle: #101418;
  }
}

Revision as of 02:23, 22 January 2025

/* CSS placed here will be applied to all skins */
@media screen {
  html.skin-theme-clientpref-os and (prefers-color-scheme: dark) {
    --background-color-neutral-subtle: #101418;
  }
}

@media screen {
  html.skin-theme-clientpref-night {
    --background-color-neutral-subtle: #101418;
  }
}