#9bafa6 Color
Color Codes | |
---|---|
Hex Code | #9bafa6 |
RGB Code | rgb(155, 175, 166) |
HSL Code | hsl(153, 11%, 65%) |
#9bafa6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(155, 175, 166); }
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(153, 11%, 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 #9bafa6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(155, 175, 166, 10%) | #9bafa61a | |
rgb(155, 175, 166, 20%) | #9bafa633 | |
rgb(155, 175, 166, 40%) | #9bafa64C | |
rgb(155, 175, 166, 60%) | #9bafa699 | |
rgb(155, 175, 166, 80%) | #9bafa6CC | |
rgb(155, 175, 166, 100%) | #9bafa6FF |
Saturated and desaturated colors of #9bafa6
HSL Code | Preview |
---|---|
hsl(153, 10%, 65%) | |
hsl(153, 20%, 65%) | |
hsl(153, 40%, 65%) | |
hsl(153, 60%, 65%) | |
hsl(153, 80%, 65%) | |
hsl(153, 100%, 65%) |
#9bafa6 Color Usage In CSS
body { color: #9bafa6; } p { color: rgb(155, 175, 166); } header { border-bottom:1px solid #9bafa6; }