#411548 Color
Color Codes | |
---|---|
Hex Code | #411548 |
RGB Code | rgb(65, 21, 72) |
HSL Code | hsl(292, 55%, 18%) |
#411548 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(65, 21, 72); }
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(292, 55%, 18%); }
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 #411548
RGB Code | Hex Code | Preview |
---|---|---|
rgb(65, 21, 72, 10%) | #4115481a | |
rgb(65, 21, 72, 20%) | #41154833 | |
rgb(65, 21, 72, 40%) | #4115484C | |
rgb(65, 21, 72, 60%) | #41154899 | |
rgb(65, 21, 72, 80%) | #411548CC | |
rgb(65, 21, 72, 100%) | #411548FF |
Saturated and desaturated colors of #411548
HSL Code | Preview |
---|---|
hsl(292, 10%, 18%) | |
hsl(292, 20%, 18%) | |
hsl(292, 40%, 18%) | |
hsl(292, 60%, 18%) | |
hsl(292, 80%, 18%) | |
hsl(292, 100%, 18%) |
#411548 Color Usage In CSS
body { color: #411548; } p { color: rgb(65, 21, 72); } header { border-bottom:1px solid #411548; }