#f321c6 Color
Color Codes | |
---|---|
Hex Code | #f321c6 |
RGB Code | rgb(243, 33, 198) |
HSL Code | hsl(313, 90%, 54%) |
#f321c6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 33, 198); }
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(313, 90%, 54%); }
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 #f321c6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 33, 198, 10%) | #f321c61a | |
rgb(243, 33, 198, 20%) | #f321c633 | |
rgb(243, 33, 198, 40%) | #f321c64C | |
rgb(243, 33, 198, 60%) | #f321c699 | |
rgb(243, 33, 198, 80%) | #f321c6CC | |
rgb(243, 33, 198, 100%) | #f321c6FF |
Saturated and desaturated colors of #f321c6
HSL Code | Preview |
---|---|
hsl(313, 10%, 54%) | |
hsl(313, 20%, 54%) | |
hsl(313, 40%, 54%) | |
hsl(313, 60%, 54%) | |
hsl(313, 80%, 54%) | |
hsl(313, 100%, 54%) |
#f321c6 Color Usage In CSS
body { color: #f321c6; } p { color: rgb(243, 33, 198); } header { border-bottom:1px solid #f321c6; }