#a65052 Color
Color Codes | |
---|---|
Hex Code | #a65052 |
RGB Code | rgb(166, 80, 82) |
HSL Code | hsl(359, 35%, 48%) |
#a65052 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(166, 80, 82); }
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(359, 35%, 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 #a65052
RGB Code | Hex Code | Preview |
---|---|---|
rgb(166, 80, 82, 10%) | #a650521a | |
rgb(166, 80, 82, 20%) | #a6505233 | |
rgb(166, 80, 82, 40%) | #a650524C | |
rgb(166, 80, 82, 60%) | #a6505299 | |
rgb(166, 80, 82, 80%) | #a65052CC | |
rgb(166, 80, 82, 100%) | #a65052FF |
Saturated and desaturated colors of #a65052
HSL Code | Preview |
---|---|
hsl(359, 10%, 48%) | |
hsl(359, 20%, 48%) | |
hsl(359, 40%, 48%) | |
hsl(359, 60%, 48%) | |
hsl(359, 80%, 48%) | |
hsl(359, 100%, 48%) |
#a65052 Color Usage In CSS
body { color: #a65052; } p { color: rgb(166, 80, 82); } header { border-bottom:1px solid #a65052; }