Methu Serenity Color Palette CSS
/* CSS */
.color-1 {
color: #4D8F9D;
}
.color-2 {
color: #90D5C1;
}
.color-3 {
color: #C8EAD6;
}
.color-4 {
color: #F4E4B3;
}
.color-5 {
color: #F9CA48;
}
/* CSS Variables */
:root {
--color-1: #4D8F9D;
--color-2: #90D5C1;
--color-3: #C8EAD6;
--color-4: #F4E4B3;
--color-5: #F9CA48;
}Methu Serenity Gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #4D8F9D, #90D5C1, #C8EAD6, #F4E4B3, #F9CA48);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #4D8F9D, #90D5C1, #C8EAD6, #F4E4B3, #F9CA48);
}Methu Serenity color palette created on .
29 views