#67cfc1 Color
Color Codes | |
---|---|
Hex Code | #67cfc1 |
RGB Code | rgb(103, 207, 193) |
HSL Code | hsl(172, 52%, 61%) |
#67cfc1 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(103, 207, 193); }
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(172, 52%, 61%); }
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 #67cfc1
RGB Code | Hex Code | Preview |
---|---|---|
rgb(103, 207, 193, 10%) | #67cfc11a | |
rgb(103, 207, 193, 20%) | #67cfc133 | |
rgb(103, 207, 193, 40%) | #67cfc14C | |
rgb(103, 207, 193, 60%) | #67cfc199 | |
rgb(103, 207, 193, 80%) | #67cfc1CC | |
rgb(103, 207, 193, 100%) | #67cfc1FF |
Saturated and desaturated colors of #67cfc1
HSL Code | Preview |
---|---|
hsl(172, 10%, 61%) | |
hsl(172, 20%, 61%) | |
hsl(172, 40%, 61%) | |
hsl(172, 60%, 61%) | |
hsl(172, 80%, 61%) | |
hsl(172, 100%, 61%) |
#67cfc1 Color Usage In CSS
body { color: #67cfc1; } p { color: rgb(103, 207, 193); } header { border-bottom:1px solid #67cfc1; }