#b2f554 Color
Color Codes | |
---|---|
Hex Code | #b2f554 |
RGB Code | rgb(178, 245, 84) |
HSL Code | hsl(85, 89%, 65%) |
#b2f554 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(178, 245, 84); }
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(85, 89%, 65%); }
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 #b2f554
RGB Code | Hex Code | Preview |
---|---|---|
rgb(178, 245, 84, 10%) | #b2f5541a | |
rgb(178, 245, 84, 20%) | #b2f55433 | |
rgb(178, 245, 84, 40%) | #b2f5544C | |
rgb(178, 245, 84, 60%) | #b2f55499 | |
rgb(178, 245, 84, 80%) | #b2f554CC | |
rgb(178, 245, 84, 100%) | #b2f554FF |
Saturated and desaturated colors of #b2f554
HSL Code | Preview |
---|---|
hsl(85, 10%, 65%) | |
hsl(85, 20%, 65%) | |
hsl(85, 40%, 65%) | |
hsl(85, 60%, 65%) | |
hsl(85, 80%, 65%) | |
hsl(85, 100%, 65%) |
#b2f554 Color Usage In CSS
body { color: #b2f554; } p { color: rgb(178, 245, 84); } header { border-bottom:1px solid #b2f554; }