#d7724e Color
Color Codes | |
---|---|
Hex Code | #d7724e |
RGB Code | rgb(215, 114, 78) |
HSL Code | hsl(16, 63%, 57%) |
#d7724e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(215, 114, 78); }
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(16, 63%, 57%); }
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 #d7724e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(215, 114, 78, 10%) | #d7724e1a | |
rgb(215, 114, 78, 20%) | #d7724e33 | |
rgb(215, 114, 78, 40%) | #d7724e4C | |
rgb(215, 114, 78, 60%) | #d7724e99 | |
rgb(215, 114, 78, 80%) | #d7724eCC | |
rgb(215, 114, 78, 100%) | #d7724eFF |
Saturated and desaturated colors of #d7724e
HSL Code | Preview |
---|---|
hsl(16, 10%, 57%) | |
hsl(16, 20%, 57%) | |
hsl(16, 40%, 57%) | |
hsl(16, 60%, 57%) | |
hsl(16, 80%, 57%) | |
hsl(16, 100%, 57%) |
#d7724e Color Usage In CSS
body { color: #d7724e; } p { color: rgb(215, 114, 78); } header { border-bottom:1px solid #d7724e; }