#622cf7 Color
Color Codes | |
---|---|
Hex Code | #622cf7 |
RGB Code | rgb(98, 44, 247) |
HSL Code | hsl(256, 93%, 57%) |
#622cf7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(98, 44, 247); }
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(256, 93%, 57%); }
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 #622cf7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(98, 44, 247, 10%) | #622cf71a | |
rgb(98, 44, 247, 20%) | #622cf733 | |
rgb(98, 44, 247, 40%) | #622cf74C | |
rgb(98, 44, 247, 60%) | #622cf799 | |
rgb(98, 44, 247, 80%) | #622cf7CC | |
rgb(98, 44, 247, 100%) | #622cf7FF |
Saturated and desaturated colors of #622cf7
HSL Code | Preview |
---|---|
hsl(256, 10%, 57%) | |
hsl(256, 20%, 57%) | |
hsl(256, 40%, 57%) | |
hsl(256, 60%, 57%) | |
hsl(256, 80%, 57%) | |
hsl(256, 100%, 57%) |
#622cf7 Color Usage In CSS
body { color: #622cf7; } p { color: rgb(98, 44, 247); } header { border-bottom:1px solid #622cf7; }