#81d09a Color
Color Codes | |
---|---|
Hex Code | #81d09a |
RGB Code | rgb(129, 208, 154) |
HSL Code | hsl(139, 46%, 66%) |
#81d09a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(129, 208, 154); }
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(139, 46%, 66%); }
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 #81d09a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(129, 208, 154, 10%) | #81d09a1a | |
rgb(129, 208, 154, 20%) | #81d09a33 | |
rgb(129, 208, 154, 40%) | #81d09a4C | |
rgb(129, 208, 154, 60%) | #81d09a99 | |
rgb(129, 208, 154, 80%) | #81d09aCC | |
rgb(129, 208, 154, 100%) | #81d09aFF |
Saturated and desaturated colors of #81d09a
HSL Code | Preview |
---|---|
hsl(139, 10%, 66%) | |
hsl(139, 20%, 66%) | |
hsl(139, 40%, 66%) | |
hsl(139, 60%, 66%) | |
hsl(139, 80%, 66%) | |
hsl(139, 100%, 66%) |
#81d09a Color Usage In CSS
body { color: #81d09a; } p { color: rgb(129, 208, 154); } header { border-bottom:1px solid #81d09a; }