#d1696c Color
Color Codes | |
---|---|
Hex Code | #d1696c |
RGB Code | rgb(209, 105, 108) |
HSL Code | hsl(358, 53%, 62%) |
#d1696c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(209, 105, 108); }
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(358, 53%, 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 #d1696c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(209, 105, 108, 10%) | #d1696c1a | |
rgb(209, 105, 108, 20%) | #d1696c33 | |
rgb(209, 105, 108, 40%) | #d1696c4C | |
rgb(209, 105, 108, 60%) | #d1696c99 | |
rgb(209, 105, 108, 80%) | #d1696cCC | |
rgb(209, 105, 108, 100%) | #d1696cFF |
Saturated and desaturated colors of #d1696c
HSL Code | Preview |
---|---|
hsl(358, 10%, 62%) | |
hsl(358, 20%, 62%) | |
hsl(358, 40%, 62%) | |
hsl(358, 60%, 62%) | |
hsl(358, 80%, 62%) | |
hsl(358, 100%, 62%) |
#d1696c Color Usage In CSS
body { color: #d1696c; } p { color: rgb(209, 105, 108); } header { border-bottom:1px solid #d1696c; }