#eafaa8 Color
Color Codes | |
---|---|
Hex Code | #eafaa8 |
RGB Code | rgb(234, 250, 168) |
HSL Code | hsl(72, 89%, 82%) |
#eafaa8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(234, 250, 168); }
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(72, 89%, 82%); }
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 #eafaa8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(234, 250, 168, 10%) | #eafaa81a | |
rgb(234, 250, 168, 20%) | #eafaa833 | |
rgb(234, 250, 168, 40%) | #eafaa84C | |
rgb(234, 250, 168, 60%) | #eafaa899 | |
rgb(234, 250, 168, 80%) | #eafaa8CC | |
rgb(234, 250, 168, 100%) | #eafaa8FF |
Saturated and desaturated colors of #eafaa8
HSL Code | Preview |
---|---|
hsl(72, 10%, 82%) | |
hsl(72, 20%, 82%) | |
hsl(72, 40%, 82%) | |
hsl(72, 60%, 82%) | |
hsl(72, 80%, 82%) | |
hsl(72, 100%, 82%) |
#eafaa8 Color Usage In CSS
body { color: #eafaa8; } p { color: rgb(234, 250, 168); } header { border-bottom:1px solid #eafaa8; }