#9bd2c2 Color
Color Codes | |
---|---|
Hex Code | #9bd2c2 |
RGB Code | rgb(155, 210, 194) |
HSL Code | hsl(163, 38%, 72%) |
#9bd2c2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(155, 210, 194); }
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(163, 38%, 72%); }
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 #9bd2c2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(155, 210, 194, 10%) | #9bd2c21a | |
rgb(155, 210, 194, 20%) | #9bd2c233 | |
rgb(155, 210, 194, 40%) | #9bd2c24C | |
rgb(155, 210, 194, 60%) | #9bd2c299 | |
rgb(155, 210, 194, 80%) | #9bd2c2CC | |
rgb(155, 210, 194, 100%) | #9bd2c2FF |
Saturated and desaturated colors of #9bd2c2
HSL Code | Preview |
---|---|
hsl(163, 10%, 72%) | |
hsl(163, 20%, 72%) | |
hsl(163, 40%, 72%) | |
hsl(163, 60%, 72%) | |
hsl(163, 80%, 72%) | |
hsl(163, 100%, 72%) |
#9bd2c2 Color Usage In CSS
body { color: #9bd2c2; } p { color: rgb(155, 210, 194); } header { border-bottom:1px solid #9bd2c2; }