#ae1729 Color
Color Codes | |
---|---|
Hex Code | #ae1729 |
RGB Code | rgb(174, 23, 41) |
HSL Code | hsl(353, 77%, 39%) |
#ae1729 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(174, 23, 41); }
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(353, 77%, 39%); }
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 #ae1729
RGB Code | Hex Code | Preview |
---|---|---|
rgb(174, 23, 41, 10%) | #ae17291a | |
rgb(174, 23, 41, 20%) | #ae172933 | |
rgb(174, 23, 41, 40%) | #ae17294C | |
rgb(174, 23, 41, 60%) | #ae172999 | |
rgb(174, 23, 41, 80%) | #ae1729CC | |
rgb(174, 23, 41, 100%) | #ae1729FF |
Saturated and desaturated colors of #ae1729
HSL Code | Preview |
---|---|
hsl(353, 10%, 39%) | |
hsl(353, 20%, 39%) | |
hsl(353, 40%, 39%) | |
hsl(353, 60%, 39%) | |
hsl(353, 80%, 39%) | |
hsl(353, 100%, 39%) |
#ae1729 Color Usage In CSS
body { color: #ae1729; } p { color: rgb(174, 23, 41); } header { border-bottom:1px solid #ae1729; }