#82b6b7 Color
Color Codes | |
---|---|
Hex Code | #82b6b7 |
RGB Code | rgb(130, 182, 183) |
HSL Code | hsl(181, 27%, 61%) |
#82b6b7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(130, 182, 183); }
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(181, 27%, 61%); }
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 #82b6b7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(130, 182, 183, 10%) | #82b6b71a | |
rgb(130, 182, 183, 20%) | #82b6b733 | |
rgb(130, 182, 183, 40%) | #82b6b74C | |
rgb(130, 182, 183, 60%) | #82b6b799 | |
rgb(130, 182, 183, 80%) | #82b6b7CC | |
rgb(130, 182, 183, 100%) | #82b6b7FF |
Saturated and desaturated colors of #82b6b7
HSL Code | Preview |
---|---|
hsl(181, 10%, 61%) | |
hsl(181, 20%, 61%) | |
hsl(181, 40%, 61%) | |
hsl(181, 60%, 61%) | |
hsl(181, 80%, 61%) | |
hsl(181, 100%, 61%) |
#82b6b7 Color Usage In CSS
body { color: #82b6b7; } p { color: rgb(130, 182, 183); } header { border-bottom:1px solid #82b6b7; }