#741193 Color
Color Codes | |
---|---|
Hex Code | #741193 |
RGB Code | rgb(116, 17, 147) |
HSL Code | hsl(286, 79%, 32%) |
#741193 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(116, 17, 147); }
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(286, 79%, 32%); }
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 #741193
RGB Code | Hex Code | Preview |
---|---|---|
rgb(116, 17, 147, 10%) | #7411931a | |
rgb(116, 17, 147, 20%) | #74119333 | |
rgb(116, 17, 147, 40%) | #7411934C | |
rgb(116, 17, 147, 60%) | #74119399 | |
rgb(116, 17, 147, 80%) | #741193CC | |
rgb(116, 17, 147, 100%) | #741193FF |
Saturated and desaturated colors of #741193
HSL Code | Preview |
---|---|
hsl(286, 10%, 32%) | |
hsl(286, 20%, 32%) | |
hsl(286, 40%, 32%) | |
hsl(286, 60%, 32%) | |
hsl(286, 80%, 32%) | |
hsl(286, 100%, 32%) |
#741193 Color Usage In CSS
body { color: #741193; } p { color: rgb(116, 17, 147); } header { border-bottom:1px solid #741193; }