Deprecated: stripos(): Passing null to parameter #1 ($haystack) of type string is deprecated in /var/www/html/skins/Cosmos/includes/CosmosTemplate.php on line 1316
×
Create a new article
Write your page title here:
We currently have 80 articles on Witte Raaf. Type your article name above or click on one of the titles below and start writing!



Witte Raaf
80Articles

MediaWiki:ColorSchemes.css

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/*===================
	 Color Schemes
  ===================*/

/*
 * Test your colorscheme elsewhere before changing it in here.
 * It might take a while for the wiki to update the new colors, please be patient and clear your browser cache.
 * If you change an already existing color scheme, you must say why you changed it or your edit will be undone.
 *
 * To create a new color scheme, use this format:
 * .NAME, .pi-theme-NAME { --colorscheme-bg: #XXXXXX; --colorscheme-txt: #YYYYYY; }
 * where NAME is the name of the colorscheme, XXXXXX is the hex value of the background color and YYYYYY is the hex value of the text color.
 *
 * To use a color scheme, is generally require to add the CSS class "ColorScheme" + the color scheme class to the element desired.
 */


/* Color schemes */
.DefaultColors, .pi-theme-DefaultColors { -colorscheme-bg: #FF0000; -colorscheme-txt: #00FF00; }
.CrossGuildColors, .pi-theme-CrossGuildColors { -colorscheme-bg: #8B008B; -colorscheme-txt: #FFA000; }


/******************
    Auxiliar CSS
 ******************/

/* Applies the color scheme */
.cs,				/* legacy */
.ColorScheme {
	background-color: var(--colorscheme-bg);
	color: var(--colorscheme-txt);
}
/* Applies the color scheme to links */
.cs a,				/* legacy */
.ColorScheme a {
	color: inherit;
	background: inherit;
}