#4010e9 Color
Color Codes | |
---|---|
Hex Code | #4010e9 |
RGB Code | rgb(64, 16, 233) |
HSL Code | hsl(253, 87%, 49%) |
#4010e9 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(64, 16, 233); }
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(253, 87%, 49%); }
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 #4010e9
RGB Code | Hex Code | Preview |
---|---|---|
rgb(64, 16, 233, 10%) | #4010e91a | |
rgb(64, 16, 233, 20%) | #4010e933 | |
rgb(64, 16, 233, 40%) | #4010e94C | |
rgb(64, 16, 233, 60%) | #4010e999 | |
rgb(64, 16, 233, 80%) | #4010e9CC | |
rgb(64, 16, 233, 100%) | #4010e9FF |
Saturated and desaturated colors of #4010e9
HSL Code | Preview |
---|---|
hsl(253, 10%, 49%) | |
hsl(253, 20%, 49%) | |
hsl(253, 40%, 49%) | |
hsl(253, 60%, 49%) | |
hsl(253, 80%, 49%) | |
hsl(253, 100%, 49%) |
#4010e9 Color Usage In CSS
body { color: #4010e9; } p { color: rgb(64, 16, 233); } header { border-bottom:1px solid #4010e9; }