#97f7eb Color
Color Codes | |
---|---|
Hex Code | #97f7eb |
RGB Code | rgb(151, 247, 235) |
HSL Code | hsl(173, 86%, 78%) |
#97f7eb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(151, 247, 235); }
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(173, 86%, 78%); }
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 #97f7eb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(151, 247, 235, 10%) | #97f7eb1a | |
rgb(151, 247, 235, 20%) | #97f7eb33 | |
rgb(151, 247, 235, 40%) | #97f7eb4C | |
rgb(151, 247, 235, 60%) | #97f7eb99 | |
rgb(151, 247, 235, 80%) | #97f7ebCC | |
rgb(151, 247, 235, 100%) | #97f7ebFF |
Saturated and desaturated colors of #97f7eb
HSL Code | Preview |
---|---|
hsl(173, 10%, 78%) | |
hsl(173, 20%, 78%) | |
hsl(173, 40%, 78%) | |
hsl(173, 60%, 78%) | |
hsl(173, 80%, 78%) | |
hsl(173, 100%, 78%) |
#97f7eb Color Usage In CSS
body { color: #97f7eb; } p { color: rgb(151, 247, 235); } header { border-bottom:1px solid #97f7eb; }