#ac3527 Color
Color Codes | |
---|---|
Hex Code | #ac3527 |
RGB Code | rgb(172, 53, 39) |
HSL Code | hsl(6, 63%, 41%) |
#ac3527 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(172, 53, 39); }
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(6, 63%, 41%); }
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 #ac3527
RGB Code | Hex Code | Preview |
---|---|---|
rgb(172, 53, 39, 10%) | #ac35271a | |
rgb(172, 53, 39, 20%) | #ac352733 | |
rgb(172, 53, 39, 40%) | #ac35274C | |
rgb(172, 53, 39, 60%) | #ac352799 | |
rgb(172, 53, 39, 80%) | #ac3527CC | |
rgb(172, 53, 39, 100%) | #ac3527FF |
Saturated and desaturated colors of #ac3527
HSL Code | Preview |
---|---|
hsl(6, 10%, 41%) | |
hsl(6, 20%, 41%) | |
hsl(6, 40%, 41%) | |
hsl(6, 60%, 41%) | |
hsl(6, 80%, 41%) | |
hsl(6, 100%, 41%) |
#ac3527 Color Usage In CSS
body { color: #ac3527; } p { color: rgb(172, 53, 39); } header { border-bottom:1px solid #ac3527; }