#64c8ab Color
Color Codes | |
---|---|
Hex Code | #64c8ab |
RGB Code | rgb(100, 200, 171) |
HSL Code | hsl(163, 48%, 59%) |
#64c8ab Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(100, 200, 171); }
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(163, 48%, 59%); }
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 #64c8ab
RGB Code | Hex Code | Preview |
---|---|---|
rgb(100, 200, 171, 10%) | #64c8ab1a | |
rgb(100, 200, 171, 20%) | #64c8ab33 | |
rgb(100, 200, 171, 40%) | #64c8ab4C | |
rgb(100, 200, 171, 60%) | #64c8ab99 | |
rgb(100, 200, 171, 80%) | #64c8abCC | |
rgb(100, 200, 171, 100%) | #64c8abFF |
Saturated and desaturated colors of #64c8ab
HSL Code | Preview |
---|---|
hsl(163, 10%, 59%) | |
hsl(163, 20%, 59%) | |
hsl(163, 40%, 59%) | |
hsl(163, 60%, 59%) | |
hsl(163, 80%, 59%) | |
hsl(163, 100%, 59%) |
#64c8ab Color Usage In CSS
body { color: #64c8ab; } p { color: rgb(100, 200, 171); } header { border-bottom:1px solid #64c8ab; }