Files
Zauberwald/src/styles/main.css
T

58 lines
1.0 KiB
CSS
Raw Normal View History

/* Zauberwald Design System */
:root {
/* Grundpalette — warm, einladend, Waldstimmung */
--bg-cream: #fff8f0;
--bg-forest: #e8f5e4;
--text-dark: #3d3225;
--text-warm: #5c4a3a;
--text-light: #8b7d6b;
--accent-green: #6db87d;
--accent-gold: #e8b84b;
--accent-pink: #e88bae;
--accent-purple: #9b7dc4;
--accent-blue: #7db8d4;
/* Fingerfarben — weiche Pastelltoene */
--finger-l-pinky: #e8b4c8;
--finger-l-ring: #c4a8d4;
--finger-l-mid: #a8c4e0;
--finger-l-index: #a8d8b8;
--finger-r-index: #d4d8a8;
--finger-r-mid: #e0c4a8;
--finger-r-ring: #d4a8a8;
--finger-r-pinky: #c8b4e8;
--finger-thumb: #d4cfc8;
}
/* Base styles */
body {
font-family: "Nunito", sans-serif;
background: var(--bg-cream);
color: var(--text-dark);
font-size: 16px;
margin: 0;
padding: 0;
}
h1,
h2,
h3 {
font-family: "Quicksand", sans-serif;
}
/* Screen management */
.screen {
display: none;
opacity: 0;
transition: opacity 0.3s ease;
}
.screen--active {
display: flex;
flex-direction: column;
align-items: center;
opacity: 1;
min-height: 100vh;
}