#62aeac Color
Color Codes | |
---|---|
Hex Code | #62aeac |
RGB Code | rgb(98, 174, 172) |
HSL Code | hsl(178, 32%, 53%) |
#62aeac Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(98, 174, 172); }
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(178, 32%, 53%); }
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 #62aeac
RGB Code | Hex Code | Preview |
---|---|---|
rgb(98, 174, 172, 10%) | #62aeac1a | |
rgb(98, 174, 172, 20%) | #62aeac33 | |
rgb(98, 174, 172, 40%) | #62aeac4C | |
rgb(98, 174, 172, 60%) | #62aeac99 | |
rgb(98, 174, 172, 80%) | #62aeacCC | |
rgb(98, 174, 172, 100%) | #62aeacFF |
Saturated and desaturated colors of #62aeac
HSL Code | Preview |
---|---|
hsl(178, 10%, 53%) | |
hsl(178, 20%, 53%) | |
hsl(178, 40%, 53%) | |
hsl(178, 60%, 53%) | |
hsl(178, 80%, 53%) | |
hsl(178, 100%, 53%) |
#62aeac Color Usage In CSS
body { color: #62aeac; } p { color: rgb(98, 174, 172); } header { border-bottom:1px solid #62aeac; }