#82818f Color
Color Codes | |
---|---|
Hex Code | #82818f |
RGB Code | rgb(130, 129, 143) |
HSL Code | hsl(244, 6%, 53%) |
#82818f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(130, 129, 143); }
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(244, 6%, 53%); }
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 #82818f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(130, 129, 143, 10%) | #82818f1a | |
rgb(130, 129, 143, 20%) | #82818f33 | |
rgb(130, 129, 143, 40%) | #82818f4C | |
rgb(130, 129, 143, 60%) | #82818f99 | |
rgb(130, 129, 143, 80%) | #82818fCC | |
rgb(130, 129, 143, 100%) | #82818fFF |
Saturated and desaturated colors of #82818f
HSL Code | Preview |
---|---|
hsl(244, 10%, 53%) | |
hsl(244, 20%, 53%) | |
hsl(244, 40%, 53%) | |
hsl(244, 60%, 53%) | |
hsl(244, 80%, 53%) | |
hsl(244, 100%, 53%) |
#82818f Color Usage In CSS
body { color: #82818f; } p { color: rgb(130, 129, 143); } header { border-bottom:1px solid #82818f; }