#4a1572 Color
Color Codes | |
---|---|
Hex Code | #4a1572 |
RGB Code | rgb(74, 21, 114) |
HSL Code | hsl(274, 69%, 26%) |
#4a1572 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(74, 21, 114); }
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(274, 69%, 26%); }
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 #4a1572
RGB Code | Hex Code | Preview |
---|---|---|
rgb(74, 21, 114, 10%) | #4a15721a | |
rgb(74, 21, 114, 20%) | #4a157233 | |
rgb(74, 21, 114, 40%) | #4a15724C | |
rgb(74, 21, 114, 60%) | #4a157299 | |
rgb(74, 21, 114, 80%) | #4a1572CC | |
rgb(74, 21, 114, 100%) | #4a1572FF |
Saturated and desaturated colors of #4a1572
HSL Code | Preview |
---|---|
hsl(274, 10%, 26%) | |
hsl(274, 20%, 26%) | |
hsl(274, 40%, 26%) | |
hsl(274, 60%, 26%) | |
hsl(274, 80%, 26%) | |
hsl(274, 100%, 26%) |
#4a1572 Color Usage In CSS
body { color: #4a1572; } p { color: rgb(74, 21, 114); } header { border-bottom:1px solid #4a1572; }