#a94b60 Color
Color Codes | |
---|---|
Hex Code | #a94b60 |
RGB Code | rgb(169, 75, 96) |
HSL Code | hsl(347, 39%, 48%) |
#a94b60 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(169, 75, 96); }
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(347, 39%, 48%); }
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 #a94b60
RGB Code | Hex Code | Preview |
---|---|---|
rgb(169, 75, 96, 10%) | #a94b601a | |
rgb(169, 75, 96, 20%) | #a94b6033 | |
rgb(169, 75, 96, 40%) | #a94b604C | |
rgb(169, 75, 96, 60%) | #a94b6099 | |
rgb(169, 75, 96, 80%) | #a94b60CC | |
rgb(169, 75, 96, 100%) | #a94b60FF |
Saturated and desaturated colors of #a94b60
HSL Code | Preview |
---|---|
hsl(347, 10%, 48%) | |
hsl(347, 20%, 48%) | |
hsl(347, 40%, 48%) | |
hsl(347, 60%, 48%) | |
hsl(347, 80%, 48%) | |
hsl(347, 100%, 48%) |
#a94b60 Color Usage In CSS
body { color: #a94b60; } p { color: rgb(169, 75, 96); } header { border-bottom:1px solid #a94b60; }