This palette evokes the serenity of a juniper grove with earthy greens and a touch of warmth.
/* CSS */
.color-1 {
color: #4B8B3B;
}
.color-2 {
color: #A9CFAE;
}
.color-3 {
color: #2E5B2A;
}
.color-4 {
color: #5D9B7D;
}
.color-5 {
color: #D25F2A;
}
/* CSS Variables */
:root {
--color-1: #4B8B3B;
--color-2: #A9CFAE;
--color-3: #2E5B2A;
--color-4: #5D9B7D;
--color-5: #D25F2A;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #4B8B3B, #A9CFAE, #2E5B2A, #5D9B7D, #D25F2A);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #4B8B3B, #A9CFAE, #2E5B2A, #5D9B7D, #D25F2A);
}
Juniper Bliss color palette created on .