#082816 Color
Color Codes | |
---|---|
Hex Code | #082816 |
RGB Code | rgb(08, 40, 22) |
HSL Code | hsl(146, 67%, 9%) |
#082816 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(08, 40, 22); }
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(146, 67%, 9%); }
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 #082816
RGB Code | Hex Code | Preview |
---|---|---|
rgb(08, 40, 22, 10%) | #0828161a | |
rgb(08, 40, 22, 20%) | #08281633 | |
rgb(08, 40, 22, 40%) | #0828164C | |
rgb(08, 40, 22, 60%) | #08281699 | |
rgb(08, 40, 22, 80%) | #082816CC | |
rgb(08, 40, 22, 100%) | #082816FF |
Saturated and desaturated colors of #082816
HSL Code | Preview |
---|---|
hsl(146, 10%, 9%) | |
hsl(146, 20%, 9%) | |
hsl(146, 40%, 9%) | |
hsl(146, 60%, 9%) | |
hsl(146, 80%, 9%) | |
hsl(146, 100%, 9%) |
#082816 Color Usage In CSS
body { color: #082816; } p { color: rgb(08, 40, 22); } header { border-bottom:1px solid #082816; }