#4b2cd2 Color
Color Codes | |
---|---|
Hex Code | #4b2cd2 |
RGB Code | rgb(75, 44, 210) |
HSL Code | hsl(251, 65%, 50%) |
#4b2cd2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(75, 44, 210); }
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(251, 65%, 50%); }
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 #4b2cd2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(75, 44, 210, 10%) | #4b2cd21a | |
rgb(75, 44, 210, 20%) | #4b2cd233 | |
rgb(75, 44, 210, 40%) | #4b2cd24C | |
rgb(75, 44, 210, 60%) | #4b2cd299 | |
rgb(75, 44, 210, 80%) | #4b2cd2CC | |
rgb(75, 44, 210, 100%) | #4b2cd2FF |
Saturated and desaturated colors of #4b2cd2
HSL Code | Preview |
---|---|
hsl(251, 10%, 50%) | |
hsl(251, 20%, 50%) | |
hsl(251, 40%, 50%) | |
hsl(251, 60%, 50%) | |
hsl(251, 80%, 50%) | |
hsl(251, 100%, 50%) |
#4b2cd2 Color Usage In CSS
body { color: #4b2cd2; } p { color: rgb(75, 44, 210); } header { border-bottom:1px solid #4b2cd2; }