#d82003 Color
Color Codes | |
---|---|
Hex Code | #d82003 |
RGB Code | rgb(216, 32, 03) |
HSL Code | hsl(8, 97%, 43%) |
#d82003 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(216, 32, 03); }
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(8, 97%, 43%); }
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 #d82003
RGB Code | Hex Code | Preview |
---|---|---|
rgb(216, 32, 03, 10%) | #d820031a | |
rgb(216, 32, 03, 20%) | #d8200333 | |
rgb(216, 32, 03, 40%) | #d820034C | |
rgb(216, 32, 03, 60%) | #d8200399 | |
rgb(216, 32, 03, 80%) | #d82003CC | |
rgb(216, 32, 03, 100%) | #d82003FF |
Saturated and desaturated colors of #d82003
HSL Code | Preview |
---|---|
hsl(8, 10%, 43%) | |
hsl(8, 20%, 43%) | |
hsl(8, 40%, 43%) | |
hsl(8, 60%, 43%) | |
hsl(8, 80%, 43%) | |
hsl(8, 100%, 43%) |
#d82003 Color Usage In CSS
body { color: #d82003; } p { color: rgb(216, 32, 03); } header { border-bottom:1px solid #d82003; }