#a00e35 Color
Color Codes | |
---|---|
Hex Code | #a00e35 |
RGB Code | rgb(160, 14, 53) |
HSL Code | hsl(344, 84%, 34%) |
#a00e35 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(160, 14, 53); }
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(344, 84%, 34%); }
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 #a00e35
RGB Code | Hex Code | Preview |
---|---|---|
rgb(160, 14, 53, 10%) | #a00e351a | |
rgb(160, 14, 53, 20%) | #a00e3533 | |
rgb(160, 14, 53, 40%) | #a00e354C | |
rgb(160, 14, 53, 60%) | #a00e3599 | |
rgb(160, 14, 53, 80%) | #a00e35CC | |
rgb(160, 14, 53, 100%) | #a00e35FF |
Saturated and desaturated colors of #a00e35
HSL Code | Preview |
---|---|
hsl(344, 10%, 34%) | |
hsl(344, 20%, 34%) | |
hsl(344, 40%, 34%) | |
hsl(344, 60%, 34%) | |
hsl(344, 80%, 34%) | |
hsl(344, 100%, 34%) |
#a00e35 Color Usage In CSS
body { color: #a00e35; } p { color: rgb(160, 14, 53); } header { border-bottom:1px solid #a00e35; }