#35c6bf Color
Color Codes | |
---|---|
Hex Code | #35c6bf |
RGB Code | rgb(53, 198, 191) |
HSL Code | hsl(177, 58%, 49%) |
#35c6bf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(53, 198, 191); }
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(177, 58%, 49%); }
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 #35c6bf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(53, 198, 191, 10%) | #35c6bf1a | |
rgb(53, 198, 191, 20%) | #35c6bf33 | |
rgb(53, 198, 191, 40%) | #35c6bf4C | |
rgb(53, 198, 191, 60%) | #35c6bf99 | |
rgb(53, 198, 191, 80%) | #35c6bfCC | |
rgb(53, 198, 191, 100%) | #35c6bfFF |
Saturated and desaturated colors of #35c6bf
HSL Code | Preview |
---|---|
hsl(177, 10%, 49%) | |
hsl(177, 20%, 49%) | |
hsl(177, 40%, 49%) | |
hsl(177, 60%, 49%) | |
hsl(177, 80%, 49%) | |
hsl(177, 100%, 49%) |
#35c6bf Color Usage In CSS
body { color: #35c6bf; } p { color: rgb(53, 198, 191); } header { border-bottom:1px solid #35c6bf; }