#f719d2 Color
Color Codes | |
---|---|
Hex Code | #f719d2 |
RGB Code | rgb(247, 25, 210) |
HSL Code | hsl(310, 93%, 53%) |
#f719d2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(247, 25, 210); }
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(310, 93%, 53%); }
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 #f719d2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(247, 25, 210, 10%) | #f719d21a | |
rgb(247, 25, 210, 20%) | #f719d233 | |
rgb(247, 25, 210, 40%) | #f719d24C | |
rgb(247, 25, 210, 60%) | #f719d299 | |
rgb(247, 25, 210, 80%) | #f719d2CC | |
rgb(247, 25, 210, 100%) | #f719d2FF |
Saturated and desaturated colors of #f719d2
HSL Code | Preview |
---|---|
hsl(310, 10%, 53%) | |
hsl(310, 20%, 53%) | |
hsl(310, 40%, 53%) | |
hsl(310, 60%, 53%) | |
hsl(310, 80%, 53%) | |
hsl(310, 100%, 53%) |
#f719d2 Color Usage In CSS
body { color: #f719d2; } p { color: rgb(247, 25, 210); } header { border-bottom:1px solid #f719d2; }