#d17257 Color
Color Codes | |
---|---|
Hex Code | #d17257 |
RGB Code | rgb(209, 114, 87) |
HSL Code | hsl(13, 57%, 58%) |
#d17257 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(209, 114, 87); }
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(13, 57%, 58%); }
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 #d17257
RGB Code | Hex Code | Preview |
---|---|---|
rgb(209, 114, 87, 10%) | #d172571a | |
rgb(209, 114, 87, 20%) | #d1725733 | |
rgb(209, 114, 87, 40%) | #d172574C | |
rgb(209, 114, 87, 60%) | #d1725799 | |
rgb(209, 114, 87, 80%) | #d17257CC | |
rgb(209, 114, 87, 100%) | #d17257FF |
Saturated and desaturated colors of #d17257
HSL Code | Preview |
---|---|
hsl(13, 10%, 58%) | |
hsl(13, 20%, 58%) | |
hsl(13, 40%, 58%) | |
hsl(13, 60%, 58%) | |
hsl(13, 80%, 58%) | |
hsl(13, 100%, 58%) |
#d17257 Color Usage In CSS
body { color: #d17257; } p { color: rgb(209, 114, 87); } header { border-bottom:1px solid #d17257; }