/* CSS */
.color-1 {
color: #3BBF7B;
}
.color-2 {
color: #4EC1B5;
}
.color-3 {
color: #5FD3A3;
}
.color-4 {
color: #B1E2B7;
}
.color-5 {
color: #D3F8D8;
}
/* CSS Variables */
:root {
--color-1: #3BBF7B;
--color-2: #4EC1B5;
--color-3: #5FD3A3;
--color-4: #B1E2B7;
--color-5: #D3F8D8;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #3BBF7B, #4EC1B5, #5FD3A3, #B1E2B7, #D3F8D8);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #3BBF7B, #4EC1B5, #5FD3A3, #B1E2B7, #D3F8D8);
}
Green Basil color palette created on .