Azure Ascendancy color palette created on .
/* CSS */
.color-1 {
color: #5C85FF;
}
.color-2 {
color: #4DA0FF;
}
.color-3 {
color: #3DB5FF;
}
.color-4 {
color: #94D4FF;
}
.color-5 {
color: #B3E0FF;
}
/* CSS Variables */
:root {
--color-1: #5C85FF;
--color-2: #4DA0FF;
--color-3: #3DB5FF;
--color-4: #94D4FF;
--color-5: #B3E0FF;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #5C85FF, #4DA0FF, #3DB5FF, #94D4FF, #B3E0FF);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #5C85FF, #4DA0FF, #3DB5FF, #94D4FF, #B3E0FF);
}