#3ac284 Color
Color Codes | |
---|---|
Hex Code | #3ac284 |
RGB Code | rgb(58, 194, 132) |
HSL Code | hsl(153, 54%, 49%) |
#3ac284 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(58, 194, 132); }
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(153, 54%, 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 #3ac284
RGB Code | Hex Code | Preview |
---|---|---|
rgb(58, 194, 132, 10%) | #3ac2841a | |
rgb(58, 194, 132, 20%) | #3ac28433 | |
rgb(58, 194, 132, 40%) | #3ac2844C | |
rgb(58, 194, 132, 60%) | #3ac28499 | |
rgb(58, 194, 132, 80%) | #3ac284CC | |
rgb(58, 194, 132, 100%) | #3ac284FF |
Saturated and desaturated colors of #3ac284
HSL Code | Preview |
---|---|
hsl(153, 10%, 49%) | |
hsl(153, 20%, 49%) | |
hsl(153, 40%, 49%) | |
hsl(153, 60%, 49%) | |
hsl(153, 80%, 49%) | |
hsl(153, 100%, 49%) |
#3ac284 Color Usage In CSS
body { color: #3ac284; } p { color: rgb(58, 194, 132); } header { border-bottom:1px solid #3ac284; }