#a55e4b Color
Color Codes | |
---|---|
Hex Code | #a55e4b |
RGB Code | rgb(165, 94, 75) |
HSL Code | hsl(13, 38%, 47%) |
#a55e4b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(165, 94, 75); }
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(13, 38%, 47%); }
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 #a55e4b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(165, 94, 75, 10%) | #a55e4b1a | |
rgb(165, 94, 75, 20%) | #a55e4b33 | |
rgb(165, 94, 75, 40%) | #a55e4b4C | |
rgb(165, 94, 75, 60%) | #a55e4b99 | |
rgb(165, 94, 75, 80%) | #a55e4bCC | |
rgb(165, 94, 75, 100%) | #a55e4bFF |
Saturated and desaturated colors of #a55e4b
HSL Code | Preview |
---|---|
hsl(13, 10%, 47%) | |
hsl(13, 20%, 47%) | |
hsl(13, 40%, 47%) | |
hsl(13, 60%, 47%) | |
hsl(13, 80%, 47%) | |
hsl(13, 100%, 47%) |
#a55e4b Color Usage In CSS
body { color: #a55e4b; } p { color: rgb(165, 94, 75); } header { border-bottom:1px solid #a55e4b; }