#503488 Color
Color Codes | |
---|---|
Hex Code | #503488 |
RGB Code | rgb(80, 52, 136) |
HSL Code | hsl(260, 45%, 37%) |
#503488 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(80, 52, 136); }
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(260, 45%, 37%); }
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 #503488
RGB Code | Hex Code | Preview |
---|---|---|
rgb(80, 52, 136, 10%) | #5034881a | |
rgb(80, 52, 136, 20%) | #50348833 | |
rgb(80, 52, 136, 40%) | #5034884C | |
rgb(80, 52, 136, 60%) | #50348899 | |
rgb(80, 52, 136, 80%) | #503488CC | |
rgb(80, 52, 136, 100%) | #503488FF |
Saturated and desaturated colors of #503488
HSL Code | Preview |
---|---|
hsl(260, 10%, 37%) | |
hsl(260, 20%, 37%) | |
hsl(260, 40%, 37%) | |
hsl(260, 60%, 37%) | |
hsl(260, 80%, 37%) | |
hsl(260, 100%, 37%) |
#503488 Color Usage In CSS
body { color: #503488; } p { color: rgb(80, 52, 136); } header { border-bottom:1px solid #503488; }