#d73c0e Color
Color Codes | |
---|---|
Hex Code | #d73c0e |
RGB Code | rgb(215, 60, 14) |
HSL Code | hsl(14, 88%, 45%) |
#d73c0e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(215, 60, 14); }
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(14, 88%, 45%); }
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 #d73c0e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(215, 60, 14, 10%) | #d73c0e1a | |
rgb(215, 60, 14, 20%) | #d73c0e33 | |
rgb(215, 60, 14, 40%) | #d73c0e4C | |
rgb(215, 60, 14, 60%) | #d73c0e99 | |
rgb(215, 60, 14, 80%) | #d73c0eCC | |
rgb(215, 60, 14, 100%) | #d73c0eFF |
Saturated and desaturated colors of #d73c0e
HSL Code | Preview |
---|---|
hsl(14, 10%, 45%) | |
hsl(14, 20%, 45%) | |
hsl(14, 40%, 45%) | |
hsl(14, 60%, 45%) | |
hsl(14, 80%, 45%) | |
hsl(14, 100%, 45%) |
#d73c0e Color Usage In CSS
body { color: #d73c0e; } p { color: rgb(215, 60, 14); } header { border-bottom:1px solid #d73c0e; }