#d5e284 Color
Color Codes | |
---|---|
Hex Code | #d5e284 |
RGB Code | rgb(213, 226, 132) |
HSL Code | hsl(68, 62%, 70%) |
#d5e284 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(213, 226, 132); }
R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.
hsl()
hsl(hue saturation lightness); hsl(hue saturation lightness / alpha); div { background-color: hsl(68, 62%, 70%); }
Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.
Lighter and darker colors of #d5e284
RGB Code | Hex Code | Preview |
---|---|---|
rgb(213, 226, 132, 10%) | #d5e2841a | |
rgb(213, 226, 132, 20%) | #d5e28433 | |
rgb(213, 226, 132, 40%) | #d5e2844C | |
rgb(213, 226, 132, 60%) | #d5e28499 | |
rgb(213, 226, 132, 80%) | #d5e284CC | |
rgb(213, 226, 132, 100%) | #d5e284FF |
Saturated and desaturated colors of #d5e284
HSL Code | Preview |
---|---|
hsl(68, 10%, 70%) | |
hsl(68, 20%, 70%) | |
hsl(68, 40%, 70%) | |
hsl(68, 60%, 70%) | |
hsl(68, 80%, 70%) | |
hsl(68, 100%, 70%) |
#d5e284 Color Usage In CSS
body { color: #d5e284; } p { color: rgb(213, 226, 132); } header { border-bottom:1px solid #d5e284; }