#fd8fd7 Color
Color Codes | |
---|---|
Hex Code | #fd8fd7 |
RGB Code | rgb(253, 143, 215) |
HSL Code | hsl(321, 96%, 78%) |
#fd8fd7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(253, 143, 215); }
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(321, 96%, 78%); }
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 #fd8fd7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(253, 143, 215, 10%) | #fd8fd71a | |
rgb(253, 143, 215, 20%) | #fd8fd733 | |
rgb(253, 143, 215, 40%) | #fd8fd74C | |
rgb(253, 143, 215, 60%) | #fd8fd799 | |
rgb(253, 143, 215, 80%) | #fd8fd7CC | |
rgb(253, 143, 215, 100%) | #fd8fd7FF |
Saturated and desaturated colors of #fd8fd7
HSL Code | Preview |
---|---|
hsl(321, 10%, 78%) | |
hsl(321, 20%, 78%) | |
hsl(321, 40%, 78%) | |
hsl(321, 60%, 78%) | |
hsl(321, 80%, 78%) | |
hsl(321, 100%, 78%) |
#fd8fd7 Color Usage In CSS
body { color: #fd8fd7; } p { color: rgb(253, 143, 215); } header { border-bottom:1px solid #fd8fd7; }