#36b98f Color
Color Codes | |
---|---|
Hex Code | #36b98f |
RGB Code | rgb(54, 185, 143) |
HSL Code | hsl(161, 55%, 47%) |
#36b98f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(54, 185, 143); }
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(161, 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 #36b98f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(54, 185, 143, 10%) | #36b98f1a | |
rgb(54, 185, 143, 20%) | #36b98f33 | |
rgb(54, 185, 143, 40%) | #36b98f4C | |
rgb(54, 185, 143, 60%) | #36b98f99 | |
rgb(54, 185, 143, 80%) | #36b98fCC | |
rgb(54, 185, 143, 100%) | #36b98fFF |
Saturated and desaturated colors of #36b98f
HSL Code | Preview |
---|---|
hsl(161, 10%, 47%) | |
hsl(161, 20%, 47%) | |
hsl(161, 40%, 47%) | |
hsl(161, 60%, 47%) | |
hsl(161, 80%, 47%) | |
hsl(161, 100%, 47%) |
#36b98f Color Usage In CSS
body { color: #36b98f; } p { color: rgb(54, 185, 143); } header { border-bottom:1px solid #36b98f; }