#4c3105 Color
Color Codes | |
---|---|
Hex Code | #4c3105 |
RGB Code | rgb(76, 49, 05) |
HSL Code | hsl(37, 88%, 16%) |
#4c3105 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(76, 49, 05); }
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(37, 88%, 16%); }
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 #4c3105
RGB Code | Hex Code | Preview |
---|---|---|
rgb(76, 49, 05, 10%) | #4c31051a | |
rgb(76, 49, 05, 20%) | #4c310533 | |
rgb(76, 49, 05, 40%) | #4c31054C | |
rgb(76, 49, 05, 60%) | #4c310599 | |
rgb(76, 49, 05, 80%) | #4c3105CC | |
rgb(76, 49, 05, 100%) | #4c3105FF |
Saturated and desaturated colors of #4c3105
HSL Code | Preview |
---|---|
hsl(37, 10%, 16%) | |
hsl(37, 20%, 16%) | |
hsl(37, 40%, 16%) | |
hsl(37, 60%, 16%) | |
hsl(37, 80%, 16%) | |
hsl(37, 100%, 16%) |
#4c3105 Color Usage In CSS
body { color: #4c3105; } p { color: rgb(76, 49, 05); } header { border-bottom:1px solid #4c3105; }