#d5722e Color
Color Codes | |
---|---|
Hex Code | #d5722e |
RGB Code | rgb(213, 114, 46) |
HSL Code | hsl(24, 67%, 51%) |
#d5722e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(213, 114, 46); }
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(24, 67%, 51%); }
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 #d5722e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(213, 114, 46, 10%) | #d5722e1a | |
rgb(213, 114, 46, 20%) | #d5722e33 | |
rgb(213, 114, 46, 40%) | #d5722e4C | |
rgb(213, 114, 46, 60%) | #d5722e99 | |
rgb(213, 114, 46, 80%) | #d5722eCC | |
rgb(213, 114, 46, 100%) | #d5722eFF |
Saturated and desaturated colors of #d5722e
HSL Code | Preview |
---|---|
hsl(24, 10%, 51%) | |
hsl(24, 20%, 51%) | |
hsl(24, 40%, 51%) | |
hsl(24, 60%, 51%) | |
hsl(24, 80%, 51%) | |
hsl(24, 100%, 51%) |
#d5722e Color Usage In CSS
body { color: #d5722e; } p { color: rgb(213, 114, 46); } header { border-bottom:1px solid #d5722e; }