#da8d83 Color
Color Codes | |
---|---|
Hex Code | #da8d83 |
RGB Code | rgb(218, 141, 131) |
HSL Code | hsl(7, 54%, 68%) |
#da8d83 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(218, 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, 54%, 68%); }
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 #da8d83
RGB Code | Hex Code | Preview |
---|---|---|
rgb(218, 141, 131, 10%) | #da8d831a | |
rgb(218, 141, 131, 20%) | #da8d8333 | |
rgb(218, 141, 131, 40%) | #da8d834C | |
rgb(218, 141, 131, 60%) | #da8d8399 | |
rgb(218, 141, 131, 80%) | #da8d83CC | |
rgb(218, 141, 131, 100%) | #da8d83FF |
Saturated and desaturated colors of #da8d83
HSL Code | Preview |
---|---|
hsl(7, 10%, 68%) | |
hsl(7, 20%, 68%) | |
hsl(7, 40%, 68%) | |
hsl(7, 60%, 68%) | |
hsl(7, 80%, 68%) | |
hsl(7, 100%, 68%) |
#da8d83 Color Usage In CSS
body { color: #da8d83; } p { color: rgb(218, 141, 131); } header { border-bottom:1px solid #da8d83; }