#36ba73 Color
Color Codes | |
---|---|
Hex Code | #36ba73 |
RGB Code | rgb(54, 186, 115) |
HSL Code | hsl(148, 55%, 47%) |
#36ba73 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(54, 186, 115); }
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(148, 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 #36ba73
RGB Code | Hex Code | Preview |
---|---|---|
rgb(54, 186, 115, 10%) | #36ba731a | |
rgb(54, 186, 115, 20%) | #36ba7333 | |
rgb(54, 186, 115, 40%) | #36ba734C | |
rgb(54, 186, 115, 60%) | #36ba7399 | |
rgb(54, 186, 115, 80%) | #36ba73CC | |
rgb(54, 186, 115, 100%) | #36ba73FF |
Saturated and desaturated colors of #36ba73
HSL Code | Preview |
---|---|
hsl(148, 10%, 47%) | |
hsl(148, 20%, 47%) | |
hsl(148, 40%, 47%) | |
hsl(148, 60%, 47%) | |
hsl(148, 80%, 47%) | |
hsl(148, 100%, 47%) |
#36ba73 Color Usage In CSS
body { color: #36ba73; } p { color: rgb(54, 186, 115); } header { border-bottom:1px solid #36ba73; }