#36b749 Color
Color Codes | |
---|---|
Hex Code | #36b749 |
RGB Code | rgb(54, 183, 73) |
HSL Code | hsl(129, 54%, 46%) |
#36b749 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(54, 183, 73); }
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(129, 54%, 46%); }
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 #36b749
RGB Code | Hex Code | Preview |
---|---|---|
rgb(54, 183, 73, 10%) | #36b7491a | |
rgb(54, 183, 73, 20%) | #36b74933 | |
rgb(54, 183, 73, 40%) | #36b7494C | |
rgb(54, 183, 73, 60%) | #36b74999 | |
rgb(54, 183, 73, 80%) | #36b749CC | |
rgb(54, 183, 73, 100%) | #36b749FF |
Saturated and desaturated colors of #36b749
HSL Code | Preview |
---|---|
hsl(129, 10%, 46%) | |
hsl(129, 20%, 46%) | |
hsl(129, 40%, 46%) | |
hsl(129, 60%, 46%) | |
hsl(129, 80%, 46%) | |
hsl(129, 100%, 46%) |
#36b749 Color Usage In CSS
body { color: #36b749; } p { color: rgb(54, 183, 73); } header { border-bottom:1px solid #36b749; }