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