#4cac90 Color
Color Codes | |
---|---|
Hex Code | #4cac90 |
RGB Code | rgb(76, 172, 144) |
HSL Code | hsl(163, 39%, 49%) |
#4cac90 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(76, 172, 144); }
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(163, 39%, 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 #4cac90
RGB Code | Hex Code | Preview |
---|---|---|
rgb(76, 172, 144, 10%) | #4cac901a | |
rgb(76, 172, 144, 20%) | #4cac9033 | |
rgb(76, 172, 144, 40%) | #4cac904C | |
rgb(76, 172, 144, 60%) | #4cac9099 | |
rgb(76, 172, 144, 80%) | #4cac90CC | |
rgb(76, 172, 144, 100%) | #4cac90FF |
Saturated and desaturated colors of #4cac90
HSL Code | Preview |
---|---|
hsl(163, 10%, 49%) | |
hsl(163, 20%, 49%) | |
hsl(163, 40%, 49%) | |
hsl(163, 60%, 49%) | |
hsl(163, 80%, 49%) | |
hsl(163, 100%, 49%) |
#4cac90 Color Usage In CSS
body { color: #4cac90; } p { color: rgb(76, 172, 144); } header { border-bottom:1px solid #4cac90; }