Explore what your 5 generated colors mean and how to use them effectively in your designs.
The first color is your main base color.
The other 4 are complementary shades and tints to keep your palette balanced.
Use your base for logos and buttons.
The others provide depth, contrast, and harmony in UI components.
These 4 colors enhance or support your base, giving flexibility and branding clarity.
🟩 What the 5 Colors Mean
🛠️ CSS Variable Output (Developer)
:root {
--primary: #507040;
--accent: #3C3C10;
--muted: #4B3B1B;
--neutral: #61561F;
--secondary: #3E3B19;
}
.btn-primary {
background-color: var(--primary);
color: #fff;
}
.card-muted {
background-color: var(--muted);
color: #fff;
}
.text-secondary {
color: var(--secondary);
}
✅ Benefits
💡 Quick Usage Tips
--primary for major UI like nav, CTA, and brand visuals.--accent to draw attention to interactions.--muted for gentle backgrounds.--neutral to stay minimal and readable.--secondary for alternate themes or support layers.