#471ae9 Color
Color Codes | |
---|---|
Hex Code | #471ae9 |
RGB Code | rgb(71, 26, 233) |
HSL Code | hsl(253, 82%, 51%) |
#471ae9 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(71, 26, 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, 82%, 51%); }
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 #471ae9
RGB Code | Hex Code | Preview |
---|---|---|
rgb(71, 26, 233, 10%) | #471ae91a | |
rgb(71, 26, 233, 20%) | #471ae933 | |
rgb(71, 26, 233, 40%) | #471ae94C | |
rgb(71, 26, 233, 60%) | #471ae999 | |
rgb(71, 26, 233, 80%) | #471ae9CC | |
rgb(71, 26, 233, 100%) | #471ae9FF |
Saturated and desaturated colors of #471ae9
HSL Code | Preview |
---|---|
hsl(253, 10%, 51%) | |
hsl(253, 20%, 51%) | |
hsl(253, 40%, 51%) | |
hsl(253, 60%, 51%) | |
hsl(253, 80%, 51%) | |
hsl(253, 100%, 51%) |
#471ae9 Color Usage In CSS
body { color: #471ae9; } p { color: rgb(71, 26, 233); } header { border-bottom:1px solid #471ae9; }