Val Color Palette
Brightness
Saturation
Warmth
UI Examples
Explore beautiful UI components with Val palette
Val color palette CSS
/* CSS */
.color-1 {
color: #f9d86c;
}
.color-2 {
color: #f6a26a;
}
.color-3 {
color: #f87d6d;
}
.color-4 {
color: #d54d78;
}
.color-5 {
color: #9c3eac;
}
/* CSS Variables */
:root {
--color-1: #f9d86c;
--color-2: #f6a26a;
--color-3: #f87d6d;
--color-4: #d54d78;
--color-5: #9c3eac;
}
Val background gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #f9d86c, #f6a26a, #f87d6d, #d54d78, #9c3eac);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #f9d86c, #f6a26a, #f87d6d, #d54d78, #9c3eac);
}
Similar color palettes
Val color palette created on .