Explore what your 5 generated colors mean and how to use them effectively in your designs.

Option 1: Simple & Clear

The first color is your main base color.
The other 4 are complementary shades and tints to keep your palette balanced.

Option 2: Usage Tips

Use your base for logos and buttons.
The others provide depth, contrast, and harmony in UI components.

Option 3: Decision-Making

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