#4429fa Color
Color Codes | |
---|---|
Hex Code | #4429fa |
RGB Code | rgb(68, 41, 250) |
HSL Code | hsl(248, 95%, 57%) |
#4429fa Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(68, 41, 250); }
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(248, 95%, 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 #4429fa
RGB Code | Hex Code | Preview |
---|---|---|
rgb(68, 41, 250, 10%) | #4429fa1a | |
rgb(68, 41, 250, 20%) | #4429fa33 | |
rgb(68, 41, 250, 40%) | #4429fa4C | |
rgb(68, 41, 250, 60%) | #4429fa99 | |
rgb(68, 41, 250, 80%) | #4429faCC | |
rgb(68, 41, 250, 100%) | #4429faFF |
Saturated and desaturated colors of #4429fa
HSL Code | Preview |
---|---|
hsl(248, 10%, 57%) | |
hsl(248, 20%, 57%) | |
hsl(248, 40%, 57%) | |
hsl(248, 60%, 57%) | |
hsl(248, 80%, 57%) | |
hsl(248, 100%, 57%) |
#4429fa Color Usage In CSS
body { color: #4429fa; } p { color: rgb(68, 41, 250); } header { border-bottom:1px solid #4429fa; }