#ac6453 Color
Color Codes | |
---|---|
Hex Code | #ac6453 |
RGB Code | rgb(172, 100, 83) |
HSL Code | hsl(11, 35%, 50%) |
#ac6453 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(172, 100, 83); }
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(11, 35%, 50%); }
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 #ac6453
RGB Code | Hex Code | Preview |
---|---|---|
rgb(172, 100, 83, 10%) | #ac64531a | |
rgb(172, 100, 83, 20%) | #ac645333 | |
rgb(172, 100, 83, 40%) | #ac64534C | |
rgb(172, 100, 83, 60%) | #ac645399 | |
rgb(172, 100, 83, 80%) | #ac6453CC | |
rgb(172, 100, 83, 100%) | #ac6453FF |
Saturated and desaturated colors of #ac6453
HSL Code | Preview |
---|---|
hsl(11, 10%, 50%) | |
hsl(11, 20%, 50%) | |
hsl(11, 40%, 50%) | |
hsl(11, 60%, 50%) | |
hsl(11, 80%, 50%) | |
hsl(11, 100%, 50%) |
#ac6453 Color Usage In CSS
body { color: #ac6453; } p { color: rgb(172, 100, 83); } header { border-bottom:1px solid #ac6453; }