#624dcf Color
Color Codes | |
---|---|
Hex Code | #624dcf |
RGB Code | rgb(98, 77, 207) |
HSL Code | hsl(250, 58%, 56%) |
#624dcf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(98, 77, 207); }
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(250, 58%, 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 #624dcf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(98, 77, 207, 10%) | #624dcf1a | |
rgb(98, 77, 207, 20%) | #624dcf33 | |
rgb(98, 77, 207, 40%) | #624dcf4C | |
rgb(98, 77, 207, 60%) | #624dcf99 | |
rgb(98, 77, 207, 80%) | #624dcfCC | |
rgb(98, 77, 207, 100%) | #624dcfFF |
Saturated and desaturated colors of #624dcf
HSL Code | Preview |
---|---|
hsl(250, 10%, 56%) | |
hsl(250, 20%, 56%) | |
hsl(250, 40%, 56%) | |
hsl(250, 60%, 56%) | |
hsl(250, 80%, 56%) | |
hsl(250, 100%, 56%) |
#624dcf Color Usage In CSS
body { color: #624dcf; } p { color: rgb(98, 77, 207); } header { border-bottom:1px solid #624dcf; }