#65ceac Color
Color Codes | |
---|---|
Hex Code | #65ceac |
RGB Code | rgb(101, 206, 172) |
HSL Code | hsl(161, 52%, 60%) |
#65ceac Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(101, 206, 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(161, 52%, 60%); }
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 #65ceac
RGB Code | Hex Code | Preview |
---|---|---|
rgb(101, 206, 172, 10%) | #65ceac1a | |
rgb(101, 206, 172, 20%) | #65ceac33 | |
rgb(101, 206, 172, 40%) | #65ceac4C | |
rgb(101, 206, 172, 60%) | #65ceac99 | |
rgb(101, 206, 172, 80%) | #65ceacCC | |
rgb(101, 206, 172, 100%) | #65ceacFF |
Saturated and desaturated colors of #65ceac
HSL Code | Preview |
---|---|
hsl(161, 10%, 60%) | |
hsl(161, 20%, 60%) | |
hsl(161, 40%, 60%) | |
hsl(161, 60%, 60%) | |
hsl(161, 80%, 60%) | |
hsl(161, 100%, 60%) |
#65ceac Color Usage In CSS
body { color: #65ceac; } p { color: rgb(101, 206, 172); } header { border-bottom:1px solid #65ceac; }