#59c4bf Color
Color Codes | |
---|---|
Hex Code | #59c4bf |
RGB Code | rgb(89, 196, 191) |
HSL Code | hsl(177, 48%, 56%) |
#59c4bf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(89, 196, 191); }
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(177, 48%, 56%); }
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 #59c4bf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(89, 196, 191, 10%) | #59c4bf1a | |
rgb(89, 196, 191, 20%) | #59c4bf33 | |
rgb(89, 196, 191, 40%) | #59c4bf4C | |
rgb(89, 196, 191, 60%) | #59c4bf99 | |
rgb(89, 196, 191, 80%) | #59c4bfCC | |
rgb(89, 196, 191, 100%) | #59c4bfFF |
Saturated and desaturated colors of #59c4bf
HSL Code | Preview |
---|---|
hsl(177, 10%, 56%) | |
hsl(177, 20%, 56%) | |
hsl(177, 40%, 56%) | |
hsl(177, 60%, 56%) | |
hsl(177, 80%, 56%) | |
hsl(177, 100%, 56%) |
#59c4bf Color Usage In CSS
body { color: #59c4bf; } p { color: rgb(89, 196, 191); } header { border-bottom:1px solid #59c4bf; }