#51fbce Color
Color Codes | |
---|---|
Hex Code | #51fbce |
RGB Code | rgb(81, 251, 206) |
HSL Code | hsl(164, 96%, 65%) |
#51fbce Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(81, 251, 206); }
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(164, 96%, 65%); }
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 #51fbce
RGB Code | Hex Code | Preview |
---|---|---|
rgb(81, 251, 206, 10%) | #51fbce1a | |
rgb(81, 251, 206, 20%) | #51fbce33 | |
rgb(81, 251, 206, 40%) | #51fbce4C | |
rgb(81, 251, 206, 60%) | #51fbce99 | |
rgb(81, 251, 206, 80%) | #51fbceCC | |
rgb(81, 251, 206, 100%) | #51fbceFF |
Saturated and desaturated colors of #51fbce
HSL Code | Preview |
---|---|
hsl(164, 10%, 65%) | |
hsl(164, 20%, 65%) | |
hsl(164, 40%, 65%) | |
hsl(164, 60%, 65%) | |
hsl(164, 80%, 65%) | |
hsl(164, 100%, 65%) |
#51fbce Color Usage In CSS
body { color: #51fbce; } p { color: rgb(81, 251, 206); } header { border-bottom:1px solid #51fbce; }