#d38da8 Color
Color Codes | |
---|---|
Hex Code | #d38da8 |
RGB Code | rgb(211, 141, 168) |
HSL Code | hsl(337, 44%, 69%) |
#d38da8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(211, 141, 168); }
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(337, 44%, 69%); }
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 #d38da8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(211, 141, 168, 10%) | #d38da81a | |
rgb(211, 141, 168, 20%) | #d38da833 | |
rgb(211, 141, 168, 40%) | #d38da84C | |
rgb(211, 141, 168, 60%) | #d38da899 | |
rgb(211, 141, 168, 80%) | #d38da8CC | |
rgb(211, 141, 168, 100%) | #d38da8FF |
Saturated and desaturated colors of #d38da8
HSL Code | Preview |
---|---|
hsl(337, 10%, 69%) | |
hsl(337, 20%, 69%) | |
hsl(337, 40%, 69%) | |
hsl(337, 60%, 69%) | |
hsl(337, 80%, 69%) | |
hsl(337, 100%, 69%) |
#d38da8 Color Usage In CSS
body { color: #d38da8; } p { color: rgb(211, 141, 168); } header { border-bottom:1px solid #d38da8; }