#a75f4c Color
Color Codes | |
---|---|
Hex Code | #a75f4c |
RGB Code | rgb(167, 95, 76) |
HSL Code | hsl(13, 37%, 48%) |
#a75f4c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(167, 95, 76); }
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, 37%, 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 #a75f4c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(167, 95, 76, 10%) | #a75f4c1a | |
rgb(167, 95, 76, 20%) | #a75f4c33 | |
rgb(167, 95, 76, 40%) | #a75f4c4C | |
rgb(167, 95, 76, 60%) | #a75f4c99 | |
rgb(167, 95, 76, 80%) | #a75f4cCC | |
rgb(167, 95, 76, 100%) | #a75f4cFF |
Saturated and desaturated colors of #a75f4c
HSL Code | Preview |
---|---|
hsl(13, 10%, 48%) | |
hsl(13, 20%, 48%) | |
hsl(13, 40%, 48%) | |
hsl(13, 60%, 48%) | |
hsl(13, 80%, 48%) | |
hsl(13, 100%, 48%) |
#a75f4c Color Usage In CSS
body { color: #a75f4c; } p { color: rgb(167, 95, 76); } header { border-bottom:1px solid #a75f4c; }