#d84319 Color
Color Codes | |
---|---|
Hex Code | #d84319 |
RGB Code | rgb(216, 67, 25) |
HSL Code | hsl(13, 79%, 47%) |
#d84319 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(216, 67, 25); }
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(13, 79%, 47%); }
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 #d84319
RGB Code | Hex Code | Preview |
---|---|---|
rgb(216, 67, 25, 10%) | #d843191a | |
rgb(216, 67, 25, 20%) | #d8431933 | |
rgb(216, 67, 25, 40%) | #d843194C | |
rgb(216, 67, 25, 60%) | #d8431999 | |
rgb(216, 67, 25, 80%) | #d84319CC | |
rgb(216, 67, 25, 100%) | #d84319FF |
Saturated and desaturated colors of #d84319
HSL Code | Preview |
---|---|
hsl(13, 10%, 47%) | |
hsl(13, 20%, 47%) | |
hsl(13, 40%, 47%) | |
hsl(13, 60%, 47%) | |
hsl(13, 80%, 47%) | |
hsl(13, 100%, 47%) |
#d84319 Color Usage In CSS
body { color: #d84319; } p { color: rgb(216, 67, 25); } header { border-bottom:1px solid #d84319; }