Beginner's Playground Color Palette
Brightness
Saturation
Warmth
UI Examples
Explore beautiful UI components with Beginner's Playground palette
Beginner's Playground color palette CSS
/* CSS */
.color-1 {
color: #1d9a77;
}
.color-2 {
color: #d4e0ae;
}
.color-3 {
color: #f0a800;
}
.color-4 {
color: #f28d3a;
}
.color-5 {
color: #da4b2b;
}
/* CSS Variables */
:root {
--color-1: #1d9a77;
--color-2: #d4e0ae;
--color-3: #f0a800;
--color-4: #f28d3a;
--color-5: #da4b2b;
}
Beginner's Playground background gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1d9a77, #d4e0ae, #f0a800, #f28d3a, #da4b2b);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1d9a77, #d4e0ae, #f0a800, #f28d3a, #da4b2b);
}
Similar color palettes
Beginner's Playground color palette created on .