#d76066 Color
Color Codes | |
---|---|
Hex Code | #d76066 |
RGB Code | rgb(215, 96, 102) |
HSL Code | hsl(357, 60%, 61%) |
#d76066 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(215, 96, 102); }
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(357, 60%, 61%); }
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 #d76066
RGB Code | Hex Code | Preview |
---|---|---|
rgb(215, 96, 102, 10%) | #d760661a | |
rgb(215, 96, 102, 20%) | #d7606633 | |
rgb(215, 96, 102, 40%) | #d760664C | |
rgb(215, 96, 102, 60%) | #d7606699 | |
rgb(215, 96, 102, 80%) | #d76066CC | |
rgb(215, 96, 102, 100%) | #d76066FF |
Saturated and desaturated colors of #d76066
HSL Code | Preview |
---|---|
hsl(357, 10%, 61%) | |
hsl(357, 20%, 61%) | |
hsl(357, 40%, 61%) | |
hsl(357, 60%, 61%) | |
hsl(357, 80%, 61%) | |
hsl(357, 100%, 61%) |
#d76066 Color Usage In CSS
body { color: #d76066; } p { color: rgb(215, 96, 102); } header { border-bottom:1px solid #d76066; }