#35cf88 Color
Color Codes | |
---|---|
Hex Code | #35cf88 |
RGB Code | rgb(53, 207, 136) |
HSL Code | hsl(152, 62%, 51%) |
#35cf88 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(53, 207, 136); }
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(152, 62%, 51%); }
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 #35cf88
RGB Code | Hex Code | Preview |
---|---|---|
rgb(53, 207, 136, 10%) | #35cf881a | |
rgb(53, 207, 136, 20%) | #35cf8833 | |
rgb(53, 207, 136, 40%) | #35cf884C | |
rgb(53, 207, 136, 60%) | #35cf8899 | |
rgb(53, 207, 136, 80%) | #35cf88CC | |
rgb(53, 207, 136, 100%) | #35cf88FF |
Saturated and desaturated colors of #35cf88
HSL Code | Preview |
---|---|
hsl(152, 10%, 51%) | |
hsl(152, 20%, 51%) | |
hsl(152, 40%, 51%) | |
hsl(152, 60%, 51%) | |
hsl(152, 80%, 51%) | |
hsl(152, 100%, 51%) |
#35cf88 Color Usage In CSS
body { color: #35cf88; } p { color: rgb(53, 207, 136); } header { border-bottom:1px solid #35cf88; }