#84b875 Color
Color Codes | |
---|---|
Hex Code | #84b875 |
RGB Code | rgb(132, 184, 117) |
HSL Code | hsl(107, 32%, 59%) |
#84b875 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 184, 117); }
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(107, 32%, 59%); }
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 #84b875
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 184, 117, 10%) | #84b8751a | |
rgb(132, 184, 117, 20%) | #84b87533 | |
rgb(132, 184, 117, 40%) | #84b8754C | |
rgb(132, 184, 117, 60%) | #84b87599 | |
rgb(132, 184, 117, 80%) | #84b875CC | |
rgb(132, 184, 117, 100%) | #84b875FF |
Saturated and desaturated colors of #84b875
HSL Code | Preview |
---|---|
hsl(107, 10%, 59%) | |
hsl(107, 20%, 59%) | |
hsl(107, 40%, 59%) | |
hsl(107, 60%, 59%) | |
hsl(107, 80%, 59%) | |
hsl(107, 100%, 59%) |
#84b875 Color Usage In CSS
body { color: #84b875; } p { color: rgb(132, 184, 117); } header { border-bottom:1px solid #84b875; }