#88b65f Color
Color Codes | |
---|---|
Hex Code | #88b65f |
RGB Code | rgb(136, 182, 95) |
HSL Code | hsl(92, 37%, 54%) |
#88b65f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(136, 182, 95); }
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(92, 37%, 54%); }
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 #88b65f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(136, 182, 95, 10%) | #88b65f1a | |
rgb(136, 182, 95, 20%) | #88b65f33 | |
rgb(136, 182, 95, 40%) | #88b65f4C | |
rgb(136, 182, 95, 60%) | #88b65f99 | |
rgb(136, 182, 95, 80%) | #88b65fCC | |
rgb(136, 182, 95, 100%) | #88b65fFF |
Saturated and desaturated colors of #88b65f
HSL Code | Preview |
---|---|
hsl(92, 10%, 54%) | |
hsl(92, 20%, 54%) | |
hsl(92, 40%, 54%) | |
hsl(92, 60%, 54%) | |
hsl(92, 80%, 54%) | |
hsl(92, 100%, 54%) |
#88b65f Color Usage In CSS
body { color: #88b65f; } p { color: rgb(136, 182, 95); } header { border-bottom:1px solid #88b65f; }