#b5cc13 Color
Color Codes | |
---|---|
Hex Code | #b5cc13 |
RGB Code | rgb(181, 204, 19) |
HSL Code | hsl(67, 83%, 44%) |
#b5cc13 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(181, 204, 19); }
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(67, 83%, 44%); }
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 #b5cc13
RGB Code | Hex Code | Preview |
---|---|---|
rgb(181, 204, 19, 10%) | #b5cc131a | |
rgb(181, 204, 19, 20%) | #b5cc1333 | |
rgb(181, 204, 19, 40%) | #b5cc134C | |
rgb(181, 204, 19, 60%) | #b5cc1399 | |
rgb(181, 204, 19, 80%) | #b5cc13CC | |
rgb(181, 204, 19, 100%) | #b5cc13FF |
Saturated and desaturated colors of #b5cc13
HSL Code | Preview |
---|---|
hsl(67, 10%, 44%) | |
hsl(67, 20%, 44%) | |
hsl(67, 40%, 44%) | |
hsl(67, 60%, 44%) | |
hsl(67, 80%, 44%) | |
hsl(67, 100%, 44%) |
#b5cc13 Color Usage In CSS
body { color: #b5cc13; } p { color: rgb(181, 204, 19); } header { border-bottom:1px solid #b5cc13; }