#7bfccf Color
Color Codes | |
---|---|
Hex Code | #7bfccf |
RGB Code | rgb(123, 252, 207) |
HSL Code | hsl(159, 96%, 74%) |
#7bfccf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(123, 252, 207); }
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(159, 96%, 74%); }
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 #7bfccf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(123, 252, 207, 10%) | #7bfccf1a | |
rgb(123, 252, 207, 20%) | #7bfccf33 | |
rgb(123, 252, 207, 40%) | #7bfccf4C | |
rgb(123, 252, 207, 60%) | #7bfccf99 | |
rgb(123, 252, 207, 80%) | #7bfccfCC | |
rgb(123, 252, 207, 100%) | #7bfccfFF |
Saturated and desaturated colors of #7bfccf
HSL Code | Preview |
---|---|
hsl(159, 10%, 74%) | |
hsl(159, 20%, 74%) | |
hsl(159, 40%, 74%) | |
hsl(159, 60%, 74%) | |
hsl(159, 80%, 74%) | |
hsl(159, 100%, 74%) |
#7bfccf Color Usage In CSS
body { color: #7bfccf; } p { color: rgb(123, 252, 207); } header { border-bottom:1px solid #7bfccf; }