#4f1a81 Color
Color Codes | |
---|---|
Hex Code | #4f1a81 |
RGB Code | rgb(79, 26, 129) |
HSL Code | hsl(271, 66%, 30%) |
#4f1a81 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(79, 26, 129); }
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(271, 66%, 30%); }
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 #4f1a81
RGB Code | Hex Code | Preview |
---|---|---|
rgb(79, 26, 129, 10%) | #4f1a811a | |
rgb(79, 26, 129, 20%) | #4f1a8133 | |
rgb(79, 26, 129, 40%) | #4f1a814C | |
rgb(79, 26, 129, 60%) | #4f1a8199 | |
rgb(79, 26, 129, 80%) | #4f1a81CC | |
rgb(79, 26, 129, 100%) | #4f1a81FF |
Saturated and desaturated colors of #4f1a81
HSL Code | Preview |
---|---|
hsl(271, 10%, 30%) | |
hsl(271, 20%, 30%) | |
hsl(271, 40%, 30%) | |
hsl(271, 60%, 30%) | |
hsl(271, 80%, 30%) | |
hsl(271, 100%, 30%) |
#4f1a81 Color Usage In CSS
body { color: #4f1a81; } p { color: rgb(79, 26, 129); } header { border-bottom:1px solid #4f1a81; }