#8cb812 Color
Color Codes | |
---|---|
Hex Code | #8cb812 |
RGB Code | rgb(140, 184, 18) |
HSL Code | hsl(76, 82%, 40%) |
#8cb812 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(140, 184, 18); }
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(76, 82%, 40%); }
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 #8cb812
RGB Code | Hex Code | Preview |
---|---|---|
rgb(140, 184, 18, 10%) | #8cb8121a | |
rgb(140, 184, 18, 20%) | #8cb81233 | |
rgb(140, 184, 18, 40%) | #8cb8124C | |
rgb(140, 184, 18, 60%) | #8cb81299 | |
rgb(140, 184, 18, 80%) | #8cb812CC | |
rgb(140, 184, 18, 100%) | #8cb812FF |
Saturated and desaturated colors of #8cb812
HSL Code | Preview |
---|---|
hsl(76, 10%, 40%) | |
hsl(76, 20%, 40%) | |
hsl(76, 40%, 40%) | |
hsl(76, 60%, 40%) | |
hsl(76, 80%, 40%) | |
hsl(76, 100%, 40%) |
#8cb812 Color Usage In CSS
body { color: #8cb812; } p { color: rgb(140, 184, 18); } header { border-bottom:1px solid #8cb812; }