#47296c Color
Color Codes | |
---|---|
Hex Code | #47296c |
RGB Code | rgb(71, 41, 108) |
HSL Code | hsl(267, 45%, 29%) |
#47296c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(71, 41, 108); }
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(267, 45%, 29%); }
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 #47296c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(71, 41, 108, 10%) | #47296c1a | |
rgb(71, 41, 108, 20%) | #47296c33 | |
rgb(71, 41, 108, 40%) | #47296c4C | |
rgb(71, 41, 108, 60%) | #47296c99 | |
rgb(71, 41, 108, 80%) | #47296cCC | |
rgb(71, 41, 108, 100%) | #47296cFF |
Saturated and desaturated colors of #47296c
HSL Code | Preview |
---|---|
hsl(267, 10%, 29%) | |
hsl(267, 20%, 29%) | |
hsl(267, 40%, 29%) | |
hsl(267, 60%, 29%) | |
hsl(267, 80%, 29%) | |
hsl(267, 100%, 29%) |
#47296c Color Usage In CSS
body { color: #47296c; } p { color: rgb(71, 41, 108); } header { border-bottom:1px solid #47296c; }