#de5226 Color
Color Codes | |
---|---|
Hex Code | #de5226 |
RGB Code | rgb(222, 82, 38) |
HSL Code | hsl(14, 74%, 51%) |
#de5226 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(222, 82, 38); }
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, 74%, 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 #de5226
RGB Code | Hex Code | Preview |
---|---|---|
rgb(222, 82, 38, 10%) | #de52261a | |
rgb(222, 82, 38, 20%) | #de522633 | |
rgb(222, 82, 38, 40%) | #de52264C | |
rgb(222, 82, 38, 60%) | #de522699 | |
rgb(222, 82, 38, 80%) | #de5226CC | |
rgb(222, 82, 38, 100%) | #de5226FF |
Saturated and desaturated colors of #de5226
HSL Code | Preview |
---|---|
hsl(14, 10%, 51%) | |
hsl(14, 20%, 51%) | |
hsl(14, 40%, 51%) | |
hsl(14, 60%, 51%) | |
hsl(14, 80%, 51%) | |
hsl(14, 100%, 51%) |
#de5226 Color Usage In CSS
body { color: #de5226; } p { color: rgb(222, 82, 38); } header { border-bottom:1px solid #de5226; }