#d17da3 Color
Color Codes | |
---|---|
Hex Code | #d17da3 |
RGB Code | rgb(209, 125, 163) |
HSL Code | hsl(333, 48%, 65%) |
#d17da3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(209, 125, 163); }
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(333, 48%, 65%); }
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 #d17da3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(209, 125, 163, 10%) | #d17da31a | |
rgb(209, 125, 163, 20%) | #d17da333 | |
rgb(209, 125, 163, 40%) | #d17da34C | |
rgb(209, 125, 163, 60%) | #d17da399 | |
rgb(209, 125, 163, 80%) | #d17da3CC | |
rgb(209, 125, 163, 100%) | #d17da3FF |
Saturated and desaturated colors of #d17da3
HSL Code | Preview |
---|---|
hsl(333, 10%, 65%) | |
hsl(333, 20%, 65%) | |
hsl(333, 40%, 65%) | |
hsl(333, 60%, 65%) | |
hsl(333, 80%, 65%) | |
hsl(333, 100%, 65%) |
#d17da3 Color Usage In CSS
body { color: #d17da3; } p { color: rgb(209, 125, 163); } header { border-bottom:1px solid #d17da3; }