Difference between revisions of "User:Maxcodes/common.css"

Explain xkcd: It's 'cause you're dumb.
Jump to: navigation, search
(Initial draft, variable test)
 
m (test)
Line 13: Line 13:
 
   background-color: var(--base);
 
   background-color: var(--base);
 
   color: var(--text);
 
   color: var(--text);
 +
  color: red;
 
}
 
}

Revision as of 12:59, 16 February 2026

/*
Styles adapted from Catppuccin @catpuccin.com
Style guidelines here: github.com/catppuccin/catppuccin/blob/main/docs/style-guide.md

Light theme used: Latte
Dark theme used: Macchiato
*/

body {
  --base: #eff1f5;
  --text: #4c4f69;

  background-color: var(--base);
  color: var(--text);
  color: red;
}