#3ba79d Color
Color Codes | |
---|---|
Hex Code | #3ba79d |
RGB Code | rgb(59, 167, 157) |
HSL Code | hsl(174, 48%, 44%) |
#3ba79d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(59, 167, 157); }
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(174, 48%, 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 #3ba79d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(59, 167, 157, 10%) | #3ba79d1a | |
rgb(59, 167, 157, 20%) | #3ba79d33 | |
rgb(59, 167, 157, 40%) | #3ba79d4C | |
rgb(59, 167, 157, 60%) | #3ba79d99 | |
rgb(59, 167, 157, 80%) | #3ba79dCC | |
rgb(59, 167, 157, 100%) | #3ba79dFF |
Saturated and desaturated colors of #3ba79d
HSL Code | Preview |
---|---|
hsl(174, 10%, 44%) | |
hsl(174, 20%, 44%) | |
hsl(174, 40%, 44%) | |
hsl(174, 60%, 44%) | |
hsl(174, 80%, 44%) | |
hsl(174, 100%, 44%) |
#3ba79d Color Usage In CSS
body { color: #3ba79d; } p { color: rgb(59, 167, 157); } header { border-bottom:1px solid #3ba79d; }