#81a892 Color
Color Codes | |
---|---|
Hex Code | #81a892 |
RGB Code | rgb(129, 168, 146) |
HSL Code | hsl(146, 18%, 58%) |
#81a892 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(129, 168, 146); }
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(146, 18%, 58%); }
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 #81a892
RGB Code | Hex Code | Preview |
---|---|---|
rgb(129, 168, 146, 10%) | #81a8921a | |
rgb(129, 168, 146, 20%) | #81a89233 | |
rgb(129, 168, 146, 40%) | #81a8924C | |
rgb(129, 168, 146, 60%) | #81a89299 | |
rgb(129, 168, 146, 80%) | #81a892CC | |
rgb(129, 168, 146, 100%) | #81a892FF |
Saturated and desaturated colors of #81a892
HSL Code | Preview |
---|---|
hsl(146, 10%, 58%) | |
hsl(146, 20%, 58%) | |
hsl(146, 40%, 58%) | |
hsl(146, 60%, 58%) | |
hsl(146, 80%, 58%) | |
hsl(146, 100%, 58%) |
#81a892 Color Usage In CSS
body { color: #81a892; } p { color: rgb(129, 168, 146); } header { border-bottom:1px solid #81a892; }