#4e5503 Color
Color Codes | |
---|---|
Hex Code | #4e5503 |
RGB Code | rgb(78, 85, 03) |
HSL Code | hsl(65, 93%, 17%) |
#4e5503 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(78, 85, 03); }
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(65, 93%, 17%); }
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 #4e5503
RGB Code | Hex Code | Preview |
---|---|---|
rgb(78, 85, 03, 10%) | #4e55031a | |
rgb(78, 85, 03, 20%) | #4e550333 | |
rgb(78, 85, 03, 40%) | #4e55034C | |
rgb(78, 85, 03, 60%) | #4e550399 | |
rgb(78, 85, 03, 80%) | #4e5503CC | |
rgb(78, 85, 03, 100%) | #4e5503FF |
Saturated and desaturated colors of #4e5503
HSL Code | Preview |
---|---|
hsl(65, 10%, 17%) | |
hsl(65, 20%, 17%) | |
hsl(65, 40%, 17%) | |
hsl(65, 60%, 17%) | |
hsl(65, 80%, 17%) | |
hsl(65, 100%, 17%) |
#4e5503 Color Usage In CSS
body { color: #4e5503; } p { color: rgb(78, 85, 03); } header { border-bottom:1px solid #4e5503; }