User:Polavux/common.css

Revision as of 07:59, 24 February 2025 by Polavux (talk | contribs) (Created page with "light mode palette wip: note: do not try this yourself or you will crap your pants and die: :root { --text: #202122!important; --text-emphasized: #000000!important; --text-subtle: #a2a9b1; --text-link: #0645ad!important; --text-link--hover: #7fc6ef; --text-external: #8891df; --text-external--hover: #b6c3ff; --text-redlink: #ef6266; --text-redlink--hover: #ff91a4; --bg-primary: #a2a9b1!important; --bg-secondary: #dcdcdc...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.
/* light mode palette wip */
/* note: do not try this yourself or you will crap your pants and die */
:root {
	--text: #202122!important;
	--text-emphasized: #000000!important;
    --text-subtle: #a2a9b1;
    --text-link: #0645ad!important;
    --text-link--hover: #7fc6ef;
    --text-external: #8891df;
    --text-external--hover: #b6c3ff;
    --text-redlink: #ef6266;
    --text-redlink--hover: #ff91a4;
    
    --bg-primary: #a2a9b1!important;
    --bg-secondary: #dcdcdc!important;
    --bg-tertiary: #f6f6f6!important;
    --bg-border-primary: #909ac2;
    --bg-border-secondary: #cadcff;
    
    --item-primary: #c0a886!important;
    --item-secondary: #b8a282!important;
    --item-tertiary: #d0bd97!important;
    --item-border-primary: #5e524c;
    --item-border-secondary: #7d716b;
    --item-highlight: #20315a;
    
    --bg-error: #ff4242;
    --bg-warning: #301d00;
    --bg-success: #00261e;
    --bg-notice: #202122;
    --bg-error-subtle: #421211;
    --bg-warning-subtle: #301d00;
    --bg-success-subtle: #00261e;
    --bg-notice-subtle: #202122;
    --border-error: #ff4242;
    --border-warning: #fc3;
    --border-success: #00af89;
    --border-notice: #c8ccd1;
    
    --text-added: #44c97c;
    --text-removed: #ef6164;
    --bg-added: #2a4b8d;
    --bg-removed: #a66200;
    --border-added: #2a4b8d;
    --border-removed: #a66200;
}