#81ae97 Color
Color Codes | |
---|---|
Hex Code | #81ae97 |
RGB Code | rgb(129, 174, 151) |
HSL Code | hsl(149, 22%, 59%) |
#81ae97 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(129, 174, 151); }
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(149, 22%, 59%); }
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 #81ae97
RGB Code | Hex Code | Preview |
---|---|---|
rgb(129, 174, 151, 10%) | #81ae971a | |
rgb(129, 174, 151, 20%) | #81ae9733 | |
rgb(129, 174, 151, 40%) | #81ae974C | |
rgb(129, 174, 151, 60%) | #81ae9799 | |
rgb(129, 174, 151, 80%) | #81ae97CC | |
rgb(129, 174, 151, 100%) | #81ae97FF |
Saturated and desaturated colors of #81ae97
HSL Code | Preview |
---|---|
hsl(149, 10%, 59%) | |
hsl(149, 20%, 59%) | |
hsl(149, 40%, 59%) | |
hsl(149, 60%, 59%) | |
hsl(149, 80%, 59%) | |
hsl(149, 100%, 59%) |
#81ae97 Color Usage In CSS
body { color: #81ae97; } p { color: rgb(129, 174, 151); } header { border-bottom:1px solid #81ae97; }