#94f7d7 Color
Color Codes | |
---|---|
Hex Code | #94f7d7 |
RGB Code | rgb(148, 247, 215) |
HSL Code | hsl(161, 86%, 77%) |
#94f7d7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(148, 247, 215); }
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(161, 86%, 77%); }
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 #94f7d7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(148, 247, 215, 10%) | #94f7d71a | |
rgb(148, 247, 215, 20%) | #94f7d733 | |
rgb(148, 247, 215, 40%) | #94f7d74C | |
rgb(148, 247, 215, 60%) | #94f7d799 | |
rgb(148, 247, 215, 80%) | #94f7d7CC | |
rgb(148, 247, 215, 100%) | #94f7d7FF |
Saturated and desaturated colors of #94f7d7
HSL Code | Preview |
---|---|
hsl(161, 10%, 77%) | |
hsl(161, 20%, 77%) | |
hsl(161, 40%, 77%) | |
hsl(161, 60%, 77%) | |
hsl(161, 80%, 77%) | |
hsl(161, 100%, 77%) |
#94f7d7 Color Usage In CSS
body { color: #94f7d7; } p { color: rgb(148, 247, 215); } header { border-bottom:1px solid #94f7d7; }