#496207 Color
Color Codes | |
---|---|
Hex Code | #496207 |
RGB Code | rgb(73, 98, 07) |
HSL Code | hsl(76, 87%, 21%) |
#496207 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(73, 98, 07); }
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, 87%, 21%); }
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 #496207
RGB Code | Hex Code | Preview |
---|---|---|
rgb(73, 98, 07, 10%) | #4962071a | |
rgb(73, 98, 07, 20%) | #49620733 | |
rgb(73, 98, 07, 40%) | #4962074C | |
rgb(73, 98, 07, 60%) | #49620799 | |
rgb(73, 98, 07, 80%) | #496207CC | |
rgb(73, 98, 07, 100%) | #496207FF |
Saturated and desaturated colors of #496207
HSL Code | Preview |
---|---|
hsl(76, 10%, 21%) | |
hsl(76, 20%, 21%) | |
hsl(76, 40%, 21%) | |
hsl(76, 60%, 21%) | |
hsl(76, 80%, 21%) | |
hsl(76, 100%, 21%) |
#496207 Color Usage In CSS
body { color: #496207; } p { color: rgb(73, 98, 07); } header { border-bottom:1px solid #496207; }