#951555 Color
Color Codes | |
---|---|
Hex Code | #951555 |
RGB Code | rgb(149, 21, 85) |
HSL Code | hsl(330, 75%, 33%) |
#951555 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(149, 21, 85); }
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(330, 75%, 33%); }
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 #951555
RGB Code | Hex Code | Preview |
---|---|---|
rgb(149, 21, 85, 10%) | #9515551a | |
rgb(149, 21, 85, 20%) | #95155533 | |
rgb(149, 21, 85, 40%) | #9515554C | |
rgb(149, 21, 85, 60%) | #95155599 | |
rgb(149, 21, 85, 80%) | #951555CC | |
rgb(149, 21, 85, 100%) | #951555FF |
Saturated and desaturated colors of #951555
HSL Code | Preview |
---|---|
hsl(330, 10%, 33%) | |
hsl(330, 20%, 33%) | |
hsl(330, 40%, 33%) | |
hsl(330, 60%, 33%) | |
hsl(330, 80%, 33%) | |
hsl(330, 100%, 33%) |
#951555 Color Usage In CSS
body { color: #951555; } p { color: rgb(149, 21, 85); } header { border-bottom:1px solid #951555; }