#fc2ce6 Color
Color Codes | |
---|---|
Hex Code | #fc2ce6 |
RGB Code | rgb(252, 44, 230) |
HSL Code | hsl(306, 97%, 58%) |
#fc2ce6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(252, 44, 230); }
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(306, 97%, 58%); }
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 #fc2ce6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(252, 44, 230, 10%) | #fc2ce61a | |
rgb(252, 44, 230, 20%) | #fc2ce633 | |
rgb(252, 44, 230, 40%) | #fc2ce64C | |
rgb(252, 44, 230, 60%) | #fc2ce699 | |
rgb(252, 44, 230, 80%) | #fc2ce6CC | |
rgb(252, 44, 230, 100%) | #fc2ce6FF |
Saturated and desaturated colors of #fc2ce6
HSL Code | Preview |
---|---|
hsl(306, 10%, 58%) | |
hsl(306, 20%, 58%) | |
hsl(306, 40%, 58%) | |
hsl(306, 60%, 58%) | |
hsl(306, 80%, 58%) | |
hsl(306, 100%, 58%) |
#fc2ce6 Color Usage In CSS
body { color: #fc2ce6; } p { color: rgb(252, 44, 230); } header { border-bottom:1px solid #fc2ce6; }