#4b2cef Color
Color Codes | |
---|---|
Hex Code | #4b2cef |
RGB Code | rgb(75, 44, 239) |
HSL Code | hsl(250, 86%, 55%) |
#4b2cef Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(75, 44, 239); }
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, 86%, 55%); }
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 #4b2cef
RGB Code | Hex Code | Preview |
---|---|---|
rgb(75, 44, 239, 10%) | #4b2cef1a | |
rgb(75, 44, 239, 20%) | #4b2cef33 | |
rgb(75, 44, 239, 40%) | #4b2cef4C | |
rgb(75, 44, 239, 60%) | #4b2cef99 | |
rgb(75, 44, 239, 80%) | #4b2cefCC | |
rgb(75, 44, 239, 100%) | #4b2cefFF |
Saturated and desaturated colors of #4b2cef
HSL Code | Preview |
---|---|
hsl(250, 10%, 55%) | |
hsl(250, 20%, 55%) | |
hsl(250, 40%, 55%) | |
hsl(250, 60%, 55%) | |
hsl(250, 80%, 55%) | |
hsl(250, 100%, 55%) |
#4b2cef Color Usage In CSS
body { color: #4b2cef; } p { color: rgb(75, 44, 239); } header { border-bottom:1px solid #4b2cef; }