#f629c7 Color
Color Codes | |
---|---|
Hex Code | #f629c7 |
RGB Code | rgb(246, 41, 199) |
HSL Code | hsl(314, 92%, 56%) |
#f629c7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 41, 199); }
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(314, 92%, 56%); }
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 #f629c7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 41, 199, 10%) | #f629c71a | |
rgb(246, 41, 199, 20%) | #f629c733 | |
rgb(246, 41, 199, 40%) | #f629c74C | |
rgb(246, 41, 199, 60%) | #f629c799 | |
rgb(246, 41, 199, 80%) | #f629c7CC | |
rgb(246, 41, 199, 100%) | #f629c7FF |
Saturated and desaturated colors of #f629c7
HSL Code | Preview |
---|---|
hsl(314, 10%, 56%) | |
hsl(314, 20%, 56%) | |
hsl(314, 40%, 56%) | |
hsl(314, 60%, 56%) | |
hsl(314, 80%, 56%) | |
hsl(314, 100%, 56%) |
#f629c7 Color Usage In CSS
body { color: #f629c7; } p { color: rgb(246, 41, 199); } header { border-bottom:1px solid #f629c7; }