#35a97e Color
Color Codes | |
---|---|
Hex Code | #35a97e |
RGB Code | rgb(53, 169, 126) |
HSL Code | hsl(158, 52%, 44%) |
#35a97e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(53, 169, 126); }
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, 52%, 44%); }
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 #35a97e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(53, 169, 126, 10%) | #35a97e1a | |
rgb(53, 169, 126, 20%) | #35a97e33 | |
rgb(53, 169, 126, 40%) | #35a97e4C | |
rgb(53, 169, 126, 60%) | #35a97e99 | |
rgb(53, 169, 126, 80%) | #35a97eCC | |
rgb(53, 169, 126, 100%) | #35a97eFF |
Saturated and desaturated colors of #35a97e
HSL Code | Preview |
---|---|
hsl(158, 10%, 44%) | |
hsl(158, 20%, 44%) | |
hsl(158, 40%, 44%) | |
hsl(158, 60%, 44%) | |
hsl(158, 80%, 44%) | |
hsl(158, 100%, 44%) |
#35a97e Color Usage In CSS
body { color: #35a97e; } p { color: rgb(53, 169, 126); } header { border-bottom:1px solid #35a97e; }