#fc39fc Color
Color Codes | |
---|---|
Hex Code | #fc39fc |
RGB Code | rgb(252, 57, 252) |
HSL Code | hsl(300, 97%, 61%) |
#fc39fc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(252, 57, 252); }
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(300, 97%, 61%); }
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 #fc39fc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(252, 57, 252, 10%) | #fc39fc1a | |
rgb(252, 57, 252, 20%) | #fc39fc33 | |
rgb(252, 57, 252, 40%) | #fc39fc4C | |
rgb(252, 57, 252, 60%) | #fc39fc99 | |
rgb(252, 57, 252, 80%) | #fc39fcCC | |
rgb(252, 57, 252, 100%) | #fc39fcFF |
Saturated and desaturated colors of #fc39fc
HSL Code | Preview |
---|---|
hsl(300, 10%, 61%) | |
hsl(300, 20%, 61%) | |
hsl(300, 40%, 61%) | |
hsl(300, 60%, 61%) | |
hsl(300, 80%, 61%) | |
hsl(300, 100%, 61%) |
#fc39fc Color Usage In CSS
body { color: #fc39fc; } p { color: rgb(252, 57, 252); } header { border-bottom:1px solid #fc39fc; }