#d48b57 Color
Color Codes | |
---|---|
Hex Code | #d48b57 |
RGB Code | rgb(212, 139, 87) |
HSL Code | hsl(25, 59%, 59%) |
#d48b57 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(212, 139, 87); }
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(25, 59%, 59%); }
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 #d48b57
RGB Code | Hex Code | Preview |
---|---|---|
rgb(212, 139, 87, 10%) | #d48b571a | |
rgb(212, 139, 87, 20%) | #d48b5733 | |
rgb(212, 139, 87, 40%) | #d48b574C | |
rgb(212, 139, 87, 60%) | #d48b5799 | |
rgb(212, 139, 87, 80%) | #d48b57CC | |
rgb(212, 139, 87, 100%) | #d48b57FF |
Saturated and desaturated colors of #d48b57
HSL Code | Preview |
---|---|
hsl(25, 10%, 59%) | |
hsl(25, 20%, 59%) | |
hsl(25, 40%, 59%) | |
hsl(25, 60%, 59%) | |
hsl(25, 80%, 59%) | |
hsl(25, 100%, 59%) |
#d48b57 Color Usage In CSS
body { color: #d48b57; } p { color: rgb(212, 139, 87); } header { border-bottom:1px solid #d48b57; }