Ant Color Palette
Brightness
Saturation
Warmth
UI Examples
Explore beautiful UI components with Ant palette
Ant color palette PNG image
Ant color palette CSS
/* CSS */
.color-1 {
color: #a62b2b;
}
.color-2 {
color: #d2691e;
}
.color-3 {
color: #ff8052;
}
.color-4 {
color: #ffd900;
}
.color-5 {
color: #fff8db;
}
/* CSS Variables */
:root {
--color-1: #a62b2b;
--color-2: #d2691e;
--color-3: #ff8052;
--color-4: #ffd900;
--color-5: #fff8db;
}
Ant background gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #a62b2b, #d2691e, #ff8052, #ffd900, #fff8db);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #a62b2b, #d2691e, #ff8052, #ffd900, #fff8db);
}
Similar color palettes
Ant color palette created on .