#b0df85 Color
Color Codes | |
---|---|
Hex Code | #b0df85 |
RGB Code | rgb(176, 223, 133) |
HSL Code | hsl(91, 58%, 70%) |
#b0df85 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(176, 223, 133); }
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(91, 58%, 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 #b0df85
RGB Code | Hex Code | Preview |
---|---|---|
rgb(176, 223, 133, 10%) | #b0df851a | |
rgb(176, 223, 133, 20%) | #b0df8533 | |
rgb(176, 223, 133, 40%) | #b0df854C | |
rgb(176, 223, 133, 60%) | #b0df8599 | |
rgb(176, 223, 133, 80%) | #b0df85CC | |
rgb(176, 223, 133, 100%) | #b0df85FF |
Saturated and desaturated colors of #b0df85
HSL Code | Preview |
---|---|
hsl(91, 10%, 70%) | |
hsl(91, 20%, 70%) | |
hsl(91, 40%, 70%) | |
hsl(91, 60%, 70%) | |
hsl(91, 80%, 70%) | |
hsl(91, 100%, 70%) |
#b0df85 Color Usage In CSS
body { color: #b0df85; } p { color: rgb(176, 223, 133); } header { border-bottom:1px solid #b0df85; }