#d58d83 Color
Color Codes | |
---|---|
Hex Code | #d58d83 |
RGB Code | rgb(213, 141, 131) |
HSL Code | hsl(7, 49%, 67%) |
#d58d83 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(213, 141, 131); }
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(7, 49%, 67%); }
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 #d58d83
RGB Code | Hex Code | Preview |
---|---|---|
rgb(213, 141, 131, 10%) | #d58d831a | |
rgb(213, 141, 131, 20%) | #d58d8333 | |
rgb(213, 141, 131, 40%) | #d58d834C | |
rgb(213, 141, 131, 60%) | #d58d8399 | |
rgb(213, 141, 131, 80%) | #d58d83CC | |
rgb(213, 141, 131, 100%) | #d58d83FF |
Saturated and desaturated colors of #d58d83
HSL Code | Preview |
---|---|
hsl(7, 10%, 67%) | |
hsl(7, 20%, 67%) | |
hsl(7, 40%, 67%) | |
hsl(7, 60%, 67%) | |
hsl(7, 80%, 67%) | |
hsl(7, 100%, 67%) |
#d58d83 Color Usage In CSS
body { color: #d58d83; } p { color: rgb(213, 141, 131); } header { border-bottom:1px solid #d58d83; }