MediaWiki:Common.css: Difference between revisions

From Visual Citadel
No edit summary
(add color pallete)
 
Line 1: Line 1:
html, :root {
:root {
   --kyu-accent-hue: 196;
   --vc-accent-red: rgb(255,67,93);
   --accent-color: hsl(var(--kyu-accent-hue), 100%, 40%);
   --vc-accent-yellow: rgb(255,188,77);
   --search-background-color: #E1DFDD;
   --vc-accent-green: rgb(51,219,127);
  --search-hover-color: #FFF;
   --vc-accent-blue: rgb(19,159,255);
  --desktop-search-icon-color: var(--accent-color);
   --vc-accent-magenta: rgb(172,67,255);
   --page-tools-icon-color: var(--accent-color);
}
 
html #fabric-heading #search-box form#p-search input#searchInput {
  color: black;
   caret-color: black;
}
 
html #fabric-heading #search-box form#p-search input#searchInput::placeholder {
  color: black;
  opacity: 0.5;
}
 
html .ve-ui-overlay-global, html .oo-ui-windowManager-modal > .oo-ui-dialog {
  z-index: 100;
}
}

Latest revision as of 19:33, 5 July 2025

:root {
  --vc-accent-red: rgb(255,67,93);
  --vc-accent-yellow: rgb(255,188,77);
  --vc-accent-green: rgb(51,219,127);
  --vc-accent-blue: rgb(19,159,255);
  --vc-accent-magenta: rgb(172,67,255);
}