#8aeebc Color
Color Codes | |
---|---|
Hex Code | #8aeebc |
RGB Code | rgb(138, 238, 188) |
HSL Code | hsl(150, 75%, 74%) |
#8aeebc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(138, 238, 188); }
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(150, 75%, 74%); }
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 #8aeebc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(138, 238, 188, 10%) | #8aeebc1a | |
rgb(138, 238, 188, 20%) | #8aeebc33 | |
rgb(138, 238, 188, 40%) | #8aeebc4C | |
rgb(138, 238, 188, 60%) | #8aeebc99 | |
rgb(138, 238, 188, 80%) | #8aeebcCC | |
rgb(138, 238, 188, 100%) | #8aeebcFF |
Saturated and desaturated colors of #8aeebc
HSL Code | Preview |
---|---|
hsl(150, 10%, 74%) | |
hsl(150, 20%, 74%) | |
hsl(150, 40%, 74%) | |
hsl(150, 60%, 74%) | |
hsl(150, 80%, 74%) | |
hsl(150, 100%, 74%) |
#8aeebc Color Usage In CSS
body { color: #8aeebc; } p { color: rgb(138, 238, 188); } header { border-bottom:1px solid #8aeebc; }