#49a99f Color
Color Codes | |
---|---|
Hex Code | #49a99f |
RGB Code | rgb(73, 169, 159) |
HSL Code | hsl(174, 40%, 47%) |
#49a99f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(73, 169, 159); }
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, 40%, 47%); }
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 #49a99f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(73, 169, 159, 10%) | #49a99f1a | |
rgb(73, 169, 159, 20%) | #49a99f33 | |
rgb(73, 169, 159, 40%) | #49a99f4C | |
rgb(73, 169, 159, 60%) | #49a99f99 | |
rgb(73, 169, 159, 80%) | #49a99fCC | |
rgb(73, 169, 159, 100%) | #49a99fFF |
Saturated and desaturated colors of #49a99f
HSL Code | Preview |
---|---|
hsl(174, 10%, 47%) | |
hsl(174, 20%, 47%) | |
hsl(174, 40%, 47%) | |
hsl(174, 60%, 47%) | |
hsl(174, 80%, 47%) | |
hsl(174, 100%, 47%) |
#49a99f Color Usage In CSS
body { color: #49a99f; } p { color: rgb(73, 169, 159); } header { border-bottom:1px solid #49a99f; }