#d583b7 Color
Color Codes | |
---|---|
Hex Code | #d583b7 |
RGB Code | rgb(213, 131, 183) |
HSL Code | hsl(322, 49%, 67%) |
#d583b7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(213, 131, 183); }
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(322, 49%, 67%); }
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 #d583b7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(213, 131, 183, 10%) | #d583b71a | |
rgb(213, 131, 183, 20%) | #d583b733 | |
rgb(213, 131, 183, 40%) | #d583b74C | |
rgb(213, 131, 183, 60%) | #d583b799 | |
rgb(213, 131, 183, 80%) | #d583b7CC | |
rgb(213, 131, 183, 100%) | #d583b7FF |
Saturated and desaturated colors of #d583b7
HSL Code | Preview |
---|---|
hsl(322, 10%, 67%) | |
hsl(322, 20%, 67%) | |
hsl(322, 40%, 67%) | |
hsl(322, 60%, 67%) | |
hsl(322, 80%, 67%) | |
hsl(322, 100%, 67%) |
#d583b7 Color Usage In CSS
body { color: #d583b7; } p { color: rgb(213, 131, 183); } header { border-bottom:1px solid #d583b7; }