#82b635 Color
Color Codes | |
---|---|
Hex Code | #82b635 |
RGB Code | rgb(130, 182, 53) |
HSL Code | hsl(84, 55%, 46%) |
#82b635 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(130, 182, 53); }
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(84, 55%, 46%); }
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 #82b635
RGB Code | Hex Code | Preview |
---|---|---|
rgb(130, 182, 53, 10%) | #82b6351a | |
rgb(130, 182, 53, 20%) | #82b63533 | |
rgb(130, 182, 53, 40%) | #82b6354C | |
rgb(130, 182, 53, 60%) | #82b63599 | |
rgb(130, 182, 53, 80%) | #82b635CC | |
rgb(130, 182, 53, 100%) | #82b635FF |
Saturated and desaturated colors of #82b635
HSL Code | Preview |
---|---|
hsl(84, 10%, 46%) | |
hsl(84, 20%, 46%) | |
hsl(84, 40%, 46%) | |
hsl(84, 60%, 46%) | |
hsl(84, 80%, 46%) | |
hsl(84, 100%, 46%) |
#82b635 Color Usage In CSS
body { color: #82b635; } p { color: rgb(130, 182, 53); } header { border-bottom:1px solid #82b635; }