#d86b63 Color
Color Codes | |
---|---|
Hex Code | #d86b63 |
RGB Code | rgb(216, 107, 99) |
HSL Code | hsl(4, 60%, 62%) |
#d86b63 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(216, 107, 99); }
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(4, 60%, 62%); }
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 #d86b63
RGB Code | Hex Code | Preview |
---|---|---|
rgb(216, 107, 99, 10%) | #d86b631a | |
rgb(216, 107, 99, 20%) | #d86b6333 | |
rgb(216, 107, 99, 40%) | #d86b634C | |
rgb(216, 107, 99, 60%) | #d86b6399 | |
rgb(216, 107, 99, 80%) | #d86b63CC | |
rgb(216, 107, 99, 100%) | #d86b63FF |
Saturated and desaturated colors of #d86b63
HSL Code | Preview |
---|---|
hsl(4, 10%, 62%) | |
hsl(4, 20%, 62%) | |
hsl(4, 40%, 62%) | |
hsl(4, 60%, 62%) | |
hsl(4, 80%, 62%) | |
hsl(4, 100%, 62%) |
#d86b63 Color Usage In CSS
body { color: #d86b63; } p { color: rgb(216, 107, 99); } header { border-bottom:1px solid #d86b63; }