#fc60de Color
Color Codes | |
---|---|
Hex Code | #fc60de |
RGB Code | rgb(252, 96, 222) |
HSL Code | hsl(312, 96%, 68%) |
#fc60de Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(252, 96, 222); }
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(312, 96%, 68%); }
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 #fc60de
RGB Code | Hex Code | Preview |
---|---|---|
rgb(252, 96, 222, 10%) | #fc60de1a | |
rgb(252, 96, 222, 20%) | #fc60de33 | |
rgb(252, 96, 222, 40%) | #fc60de4C | |
rgb(252, 96, 222, 60%) | #fc60de99 | |
rgb(252, 96, 222, 80%) | #fc60deCC | |
rgb(252, 96, 222, 100%) | #fc60deFF |
Saturated and desaturated colors of #fc60de
HSL Code | Preview |
---|---|
hsl(312, 10%, 68%) | |
hsl(312, 20%, 68%) | |
hsl(312, 40%, 68%) | |
hsl(312, 60%, 68%) | |
hsl(312, 80%, 68%) | |
hsl(312, 100%, 68%) |
#fc60de Color Usage In CSS
body { color: #fc60de; } p { color: rgb(252, 96, 222); } header { border-bottom:1px solid #fc60de; }