#7ce0bb Color
Color Codes | |
---|---|
Hex Code | #7ce0bb |
RGB Code | rgb(124, 224, 187) |
HSL Code | hsl(158, 62%, 68%) |
#7ce0bb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(124, 224, 187); }
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(158, 62%, 68%); }
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 #7ce0bb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(124, 224, 187, 10%) | #7ce0bb1a | |
rgb(124, 224, 187, 20%) | #7ce0bb33 | |
rgb(124, 224, 187, 40%) | #7ce0bb4C | |
rgb(124, 224, 187, 60%) | #7ce0bb99 | |
rgb(124, 224, 187, 80%) | #7ce0bbCC | |
rgb(124, 224, 187, 100%) | #7ce0bbFF |
Saturated and desaturated colors of #7ce0bb
HSL Code | Preview |
---|---|
hsl(158, 10%, 68%) | |
hsl(158, 20%, 68%) | |
hsl(158, 40%, 68%) | |
hsl(158, 60%, 68%) | |
hsl(158, 80%, 68%) | |
hsl(158, 100%, 68%) |
#7ce0bb Color Usage In CSS
body { color: #7ce0bb; } p { color: rgb(124, 224, 187); } header { border-bottom:1px solid #7ce0bb; }