#64ecaa Color
Color Codes | |
---|---|
Hex Code | #64ecaa |
RGB Code | rgb(100, 236, 170) |
HSL Code | hsl(151, 78%, 66%) |
#64ecaa Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(100, 236, 170); }
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(151, 78%, 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 #64ecaa
RGB Code | Hex Code | Preview |
---|---|---|
rgb(100, 236, 170, 10%) | #64ecaa1a | |
rgb(100, 236, 170, 20%) | #64ecaa33 | |
rgb(100, 236, 170, 40%) | #64ecaa4C | |
rgb(100, 236, 170, 60%) | #64ecaa99 | |
rgb(100, 236, 170, 80%) | #64ecaaCC | |
rgb(100, 236, 170, 100%) | #64ecaaFF |
Saturated and desaturated colors of #64ecaa
HSL Code | Preview |
---|---|
hsl(151, 10%, 66%) | |
hsl(151, 20%, 66%) | |
hsl(151, 40%, 66%) | |
hsl(151, 60%, 66%) | |
hsl(151, 80%, 66%) | |
hsl(151, 100%, 66%) |
#64ecaa Color Usage In CSS
body { color: #64ecaa; } p { color: rgb(100, 236, 170); } header { border-bottom:1px solid #64ecaa; }