#b1ef87 Color
Color Codes | |
---|---|
Hex Code | #b1ef87 |
RGB Code | rgb(177, 239, 135) |
HSL Code | hsl(96, 76%, 73%) |
#b1ef87 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(177, 239, 135); }
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(96, 76%, 73%); }
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 #b1ef87
RGB Code | Hex Code | Preview |
---|---|---|
rgb(177, 239, 135, 10%) | #b1ef871a | |
rgb(177, 239, 135, 20%) | #b1ef8733 | |
rgb(177, 239, 135, 40%) | #b1ef874C | |
rgb(177, 239, 135, 60%) | #b1ef8799 | |
rgb(177, 239, 135, 80%) | #b1ef87CC | |
rgb(177, 239, 135, 100%) | #b1ef87FF |
Saturated and desaturated colors of #b1ef87
HSL Code | Preview |
---|---|
hsl(96, 10%, 73%) | |
hsl(96, 20%, 73%) | |
hsl(96, 40%, 73%) | |
hsl(96, 60%, 73%) | |
hsl(96, 80%, 73%) | |
hsl(96, 100%, 73%) |
#b1ef87 Color Usage In CSS
body { color: #b1ef87; } p { color: rgb(177, 239, 135); } header { border-bottom:1px solid #b1ef87; }