#86eb43 Color
Color Codes | |
---|---|
Hex Code | #86eb43 |
RGB Code | rgb(134, 235, 67) |
HSL Code | hsl(96, 81%, 59%) |
#86eb43 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(134, 235, 67); }
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(96, 81%, 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 #86eb43
RGB Code | Hex Code | Preview |
---|---|---|
rgb(134, 235, 67, 10%) | #86eb431a | |
rgb(134, 235, 67, 20%) | #86eb4333 | |
rgb(134, 235, 67, 40%) | #86eb434C | |
rgb(134, 235, 67, 60%) | #86eb4399 | |
rgb(134, 235, 67, 80%) | #86eb43CC | |
rgb(134, 235, 67, 100%) | #86eb43FF |
Saturated and desaturated colors of #86eb43
HSL Code | Preview |
---|---|
hsl(96, 10%, 59%) | |
hsl(96, 20%, 59%) | |
hsl(96, 40%, 59%) | |
hsl(96, 60%, 59%) | |
hsl(96, 80%, 59%) | |
hsl(96, 100%, 59%) |
#86eb43 Color Usage In CSS
body { color: #86eb43; } p { color: rgb(134, 235, 67); } header { border-bottom:1px solid #86eb43; }