#a41200 Color
Color Codes | |
---|---|
Hex Code | #a41200 |
RGB Code | rgb(164, 18, 00) |
HSL Code | hsl(7, 100%, 32%) |
#a41200 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(164, 18, 00); }
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(7, 100%, 32%); }
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 #a41200
RGB Code | Hex Code | Preview |
---|---|---|
rgb(164, 18, 00, 10%) | #a412001a | |
rgb(164, 18, 00, 20%) | #a4120033 | |
rgb(164, 18, 00, 40%) | #a412004C | |
rgb(164, 18, 00, 60%) | #a4120099 | |
rgb(164, 18, 00, 80%) | #a41200CC | |
rgb(164, 18, 00, 100%) | #a41200FF |
Saturated and desaturated colors of #a41200
HSL Code | Preview |
---|---|
hsl(7, 10%, 32%) | |
hsl(7, 20%, 32%) | |
hsl(7, 40%, 32%) | |
hsl(7, 60%, 32%) | |
hsl(7, 80%, 32%) | |
hsl(7, 100%, 32%) |
#a41200 Color Usage In CSS
body { color: #a41200; } p { color: rgb(164, 18, 00); } header { border-bottom:1px solid #a41200; }