#9a445e Color
Color Codes | |
---|---|
Hex Code | #9a445e |
RGB Code | rgb(154, 68, 94) |
HSL Code | hsl(342, 39%, 44%) |
#9a445e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(154, 68, 94); }
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(342, 39%, 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 #9a445e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(154, 68, 94, 10%) | #9a445e1a | |
rgb(154, 68, 94, 20%) | #9a445e33 | |
rgb(154, 68, 94, 40%) | #9a445e4C | |
rgb(154, 68, 94, 60%) | #9a445e99 | |
rgb(154, 68, 94, 80%) | #9a445eCC | |
rgb(154, 68, 94, 100%) | #9a445eFF |
Saturated and desaturated colors of #9a445e
HSL Code | Preview |
---|---|
hsl(342, 10%, 44%) | |
hsl(342, 20%, 44%) | |
hsl(342, 40%, 44%) | |
hsl(342, 60%, 44%) | |
hsl(342, 80%, 44%) | |
hsl(342, 100%, 44%) |
#9a445e Color Usage In CSS
body { color: #9a445e; } p { color: rgb(154, 68, 94); } header { border-bottom:1px solid #9a445e; }