/* CSS */
.color-1 {
color: #1C2B4A;
}
.color-2 {
color: #3E4B7A;
}
.color-3 {
color: #6C7B99;
}
.color-4 {
color: #A3B8C8;
}
.color-5 {
color: #E0E5EB;
}
/* CSS Variables */
:root {
--color-1: #1C2B4A;
--color-2: #3E4B7A;
--color-3: #6C7B99;
--color-4: #A3B8C8;
--color-5: #E0E5EB;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1C2B4A, #3E4B7A, #6C7B99, #A3B8C8, #E0E5EB);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1C2B4A, #3E4B7A, #6C7B99, #A3B8C8, #E0E5EB);
}
Celestial Twilight color palette created on .