#56ba99 Color
Color Codes | |
---|---|
Hex Code | #56ba99 |
RGB Code | rgb(86, 186, 153) |
HSL Code | hsl(160, 42%, 53%) |
#56ba99 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(86, 186, 153); }
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(160, 42%, 53%); }
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 #56ba99
RGB Code | Hex Code | Preview |
---|---|---|
rgb(86, 186, 153, 10%) | #56ba991a | |
rgb(86, 186, 153, 20%) | #56ba9933 | |
rgb(86, 186, 153, 40%) | #56ba994C | |
rgb(86, 186, 153, 60%) | #56ba9999 | |
rgb(86, 186, 153, 80%) | #56ba99CC | |
rgb(86, 186, 153, 100%) | #56ba99FF |
Saturated and desaturated colors of #56ba99
HSL Code | Preview |
---|---|
hsl(160, 10%, 53%) | |
hsl(160, 20%, 53%) | |
hsl(160, 40%, 53%) | |
hsl(160, 60%, 53%) | |
hsl(160, 80%, 53%) | |
hsl(160, 100%, 53%) |
#56ba99 Color Usage In CSS
body { color: #56ba99; } p { color: rgb(86, 186, 153); } header { border-bottom:1px solid #56ba99; }