#4e3313 Color
Color Codes | |
---|---|
Hex Code | #4e3313 |
RGB Code | rgb(78, 51, 19) |
HSL Code | hsl(33, 61%, 19%) |
#4e3313 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(78, 51, 19); }
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(33, 61%, 19%); }
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 #4e3313
RGB Code | Hex Code | Preview |
---|---|---|
rgb(78, 51, 19, 10%) | #4e33131a | |
rgb(78, 51, 19, 20%) | #4e331333 | |
rgb(78, 51, 19, 40%) | #4e33134C | |
rgb(78, 51, 19, 60%) | #4e331399 | |
rgb(78, 51, 19, 80%) | #4e3313CC | |
rgb(78, 51, 19, 100%) | #4e3313FF |
Saturated and desaturated colors of #4e3313
HSL Code | Preview |
---|---|
hsl(33, 10%, 19%) | |
hsl(33, 20%, 19%) | |
hsl(33, 40%, 19%) | |
hsl(33, 60%, 19%) | |
hsl(33, 80%, 19%) | |
hsl(33, 100%, 19%) |
#4e3313 Color Usage In CSS
body { color: #4e3313; } p { color: rgb(78, 51, 19); } header { border-bottom:1px solid #4e3313; }