#4e4d30 Color
Color Codes | |
---|---|
Hex Code | #4e4d30 |
RGB Code | rgb(78, 77, 48) |
HSL Code | hsl(58, 24%, 25%) |
#4e4d30 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(78, 77, 48); }
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(58, 24%, 25%); }
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 #4e4d30
RGB Code | Hex Code | Preview |
---|---|---|
rgb(78, 77, 48, 10%) | #4e4d301a | |
rgb(78, 77, 48, 20%) | #4e4d3033 | |
rgb(78, 77, 48, 40%) | #4e4d304C | |
rgb(78, 77, 48, 60%) | #4e4d3099 | |
rgb(78, 77, 48, 80%) | #4e4d30CC | |
rgb(78, 77, 48, 100%) | #4e4d30FF |
Saturated and desaturated colors of #4e4d30
HSL Code | Preview |
---|---|
hsl(58, 10%, 25%) | |
hsl(58, 20%, 25%) | |
hsl(58, 40%, 25%) | |
hsl(58, 60%, 25%) | |
hsl(58, 80%, 25%) | |
hsl(58, 100%, 25%) |
#4e4d30 Color Usage In CSS
body { color: #4e4d30; } p { color: rgb(78, 77, 48); } header { border-bottom:1px solid #4e4d30; }