#de7f39 Color
Color Codes | |
---|---|
Hex Code | #de7f39 |
RGB Code | rgb(222, 127, 57) |
HSL Code | hsl(25, 71%, 55%) |
#de7f39 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(222, 127, 57); }
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(25, 71%, 55%); }
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 #de7f39
RGB Code | Hex Code | Preview |
---|---|---|
rgb(222, 127, 57, 10%) | #de7f391a | |
rgb(222, 127, 57, 20%) | #de7f3933 | |
rgb(222, 127, 57, 40%) | #de7f394C | |
rgb(222, 127, 57, 60%) | #de7f3999 | |
rgb(222, 127, 57, 80%) | #de7f39CC | |
rgb(222, 127, 57, 100%) | #de7f39FF |
Saturated and desaturated colors of #de7f39
HSL Code | Preview |
---|---|
hsl(25, 10%, 55%) | |
hsl(25, 20%, 55%) | |
hsl(25, 40%, 55%) | |
hsl(25, 60%, 55%) | |
hsl(25, 80%, 55%) | |
hsl(25, 100%, 55%) |
#de7f39 Color Usage In CSS
body { color: #de7f39; } p { color: rgb(222, 127, 57); } header { border-bottom:1px solid #de7f39; }