#36bc64 Color
Color Codes | |
---|---|
Hex Code | #36bc64 |
RGB Code | rgb(54, 188, 100) |
HSL Code | hsl(141, 55%, 47%) |
#36bc64 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(54, 188, 100); }
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(141, 55%, 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 #36bc64
RGB Code | Hex Code | Preview |
---|---|---|
rgb(54, 188, 100, 10%) | #36bc641a | |
rgb(54, 188, 100, 20%) | #36bc6433 | |
rgb(54, 188, 100, 40%) | #36bc644C | |
rgb(54, 188, 100, 60%) | #36bc6499 | |
rgb(54, 188, 100, 80%) | #36bc64CC | |
rgb(54, 188, 100, 100%) | #36bc64FF |
Saturated and desaturated colors of #36bc64
HSL Code | Preview |
---|---|
hsl(141, 10%, 47%) | |
hsl(141, 20%, 47%) | |
hsl(141, 40%, 47%) | |
hsl(141, 60%, 47%) | |
hsl(141, 80%, 47%) | |
hsl(141, 100%, 47%) |
#36bc64 Color Usage In CSS
body { color: #36bc64; } p { color: rgb(54, 188, 100); } header { border-bottom:1px solid #36bc64; }