#a34863 Color
Color Codes | |
---|---|
Hex Code | #a34863 |
RGB Code | rgb(163, 72, 99) |
HSL Code | hsl(342, 39%, 46%) |
#a34863 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(163, 72, 99); }
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%, 46%); }
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 #a34863
RGB Code | Hex Code | Preview |
---|---|---|
rgb(163, 72, 99, 10%) | #a348631a | |
rgb(163, 72, 99, 20%) | #a3486333 | |
rgb(163, 72, 99, 40%) | #a348634C | |
rgb(163, 72, 99, 60%) | #a3486399 | |
rgb(163, 72, 99, 80%) | #a34863CC | |
rgb(163, 72, 99, 100%) | #a34863FF |
Saturated and desaturated colors of #a34863
HSL Code | Preview |
---|---|
hsl(342, 10%, 46%) | |
hsl(342, 20%, 46%) | |
hsl(342, 40%, 46%) | |
hsl(342, 60%, 46%) | |
hsl(342, 80%, 46%) | |
hsl(342, 100%, 46%) |
#a34863 Color Usage In CSS
body { color: #a34863; } p { color: rgb(163, 72, 99); } header { border-bottom:1px solid #a34863; }