#473382 Color
Color Codes | |
---|---|
Hex Code | #473382 |
RGB Code | rgb(71, 51, 130) |
HSL Code | hsl(255, 44%, 35%) |
#473382 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(71, 51, 130); }
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(255, 44%, 35%); }
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 #473382
RGB Code | Hex Code | Preview |
---|---|---|
rgb(71, 51, 130, 10%) | #4733821a | |
rgb(71, 51, 130, 20%) | #47338233 | |
rgb(71, 51, 130, 40%) | #4733824C | |
rgb(71, 51, 130, 60%) | #47338299 | |
rgb(71, 51, 130, 80%) | #473382CC | |
rgb(71, 51, 130, 100%) | #473382FF |
Saturated and desaturated colors of #473382
HSL Code | Preview |
---|---|
hsl(255, 10%, 35%) | |
hsl(255, 20%, 35%) | |
hsl(255, 40%, 35%) | |
hsl(255, 60%, 35%) | |
hsl(255, 80%, 35%) | |
hsl(255, 100%, 35%) |
#473382 Color Usage In CSS
body { color: #473382; } p { color: rgb(71, 51, 130); } header { border-bottom:1px solid #473382; }