#b0ce39 Color
Color Codes | |
---|---|
Hex Code | #b0ce39 |
RGB Code | rgb(176, 206, 57) |
HSL Code | hsl(72, 60%, 52%) |
#b0ce39 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(176, 206, 57); }
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(72, 60%, 52%); }
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 #b0ce39
RGB Code | Hex Code | Preview |
---|---|---|
rgb(176, 206, 57, 10%) | #b0ce391a | |
rgb(176, 206, 57, 20%) | #b0ce3933 | |
rgb(176, 206, 57, 40%) | #b0ce394C | |
rgb(176, 206, 57, 60%) | #b0ce3999 | |
rgb(176, 206, 57, 80%) | #b0ce39CC | |
rgb(176, 206, 57, 100%) | #b0ce39FF |
Saturated and desaturated colors of #b0ce39
HSL Code | Preview |
---|---|
hsl(72, 10%, 52%) | |
hsl(72, 20%, 52%) | |
hsl(72, 40%, 52%) | |
hsl(72, 60%, 52%) | |
hsl(72, 80%, 52%) | |
hsl(72, 100%, 52%) |
#b0ce39 Color Usage In CSS
body { color: #b0ce39; } p { color: rgb(176, 206, 57); } header { border-bottom:1px solid #b0ce39; }