#4a209f Color
Color Codes | |
---|---|
Hex Code | #4a209f |
RGB Code | rgb(74, 32, 159) |
HSL Code | hsl(260, 66%, 37%) |
#4a209f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(74, 32, 159); }
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, 66%, 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 #4a209f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(74, 32, 159, 10%) | #4a209f1a | |
rgb(74, 32, 159, 20%) | #4a209f33 | |
rgb(74, 32, 159, 40%) | #4a209f4C | |
rgb(74, 32, 159, 60%) | #4a209f99 | |
rgb(74, 32, 159, 80%) | #4a209fCC | |
rgb(74, 32, 159, 100%) | #4a209fFF |
Saturated and desaturated colors of #4a209f
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%) |
#4a209f Color Usage In CSS
body { color: #4a209f; } p { color: rgb(74, 32, 159); } header { border-bottom:1px solid #4a209f; }