#965549 Color
Color Codes | |
---|---|
Hex Code | #965549 |
RGB Code | rgb(150, 85, 73) |
HSL Code | hsl(9, 35%, 44%) |
#965549 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(150, 85, 73); }
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(9, 35%, 44%); }
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 #965549
RGB Code | Hex Code | Preview |
---|---|---|
rgb(150, 85, 73, 10%) | #9655491a | |
rgb(150, 85, 73, 20%) | #96554933 | |
rgb(150, 85, 73, 40%) | #9655494C | |
rgb(150, 85, 73, 60%) | #96554999 | |
rgb(150, 85, 73, 80%) | #965549CC | |
rgb(150, 85, 73, 100%) | #965549FF |
Saturated and desaturated colors of #965549
HSL Code | Preview |
---|---|
hsl(9, 10%, 44%) | |
hsl(9, 20%, 44%) | |
hsl(9, 40%, 44%) | |
hsl(9, 60%, 44%) | |
hsl(9, 80%, 44%) | |
hsl(9, 100%, 44%) |
#965549 Color Usage In CSS
body { color: #965549; } p { color: rgb(150, 85, 73); } header { border-bottom:1px solid #965549; }