#65f4ef Color
Color Codes | |
---|---|
Hex Code | #65f4ef |
RGB Code | rgb(101, 244, 239) |
HSL Code | hsl(178, 87%, 68%) |
#65f4ef Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(101, 244, 239); }
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, 87%, 68%); }
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 #65f4ef
RGB Code | Hex Code | Preview |
---|---|---|
rgb(101, 244, 239, 10%) | #65f4ef1a | |
rgb(101, 244, 239, 20%) | #65f4ef33 | |
rgb(101, 244, 239, 40%) | #65f4ef4C | |
rgb(101, 244, 239, 60%) | #65f4ef99 | |
rgb(101, 244, 239, 80%) | #65f4efCC | |
rgb(101, 244, 239, 100%) | #65f4efFF |
Saturated and desaturated colors of #65f4ef
HSL Code | Preview |
---|---|
hsl(178, 10%, 68%) | |
hsl(178, 20%, 68%) | |
hsl(178, 40%, 68%) | |
hsl(178, 60%, 68%) | |
hsl(178, 80%, 68%) | |
hsl(178, 100%, 68%) |
#65f4ef Color Usage In CSS
body { color: #65f4ef; } p { color: rgb(101, 244, 239); } header { border-bottom:1px solid #65f4ef; }