#df6135 Color
Color Codes | |
---|---|
Hex Code | #df6135 |
RGB Code | rgb(223, 97, 53) |
HSL Code | hsl(16, 73%, 54%) |
#df6135 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(223, 97, 53); }
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(16, 73%, 54%); }
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 #df6135
RGB Code | Hex Code | Preview |
---|---|---|
rgb(223, 97, 53, 10%) | #df61351a | |
rgb(223, 97, 53, 20%) | #df613533 | |
rgb(223, 97, 53, 40%) | #df61354C | |
rgb(223, 97, 53, 60%) | #df613599 | |
rgb(223, 97, 53, 80%) | #df6135CC | |
rgb(223, 97, 53, 100%) | #df6135FF |
Saturated and desaturated colors of #df6135
HSL Code | Preview |
---|---|
hsl(16, 10%, 54%) | |
hsl(16, 20%, 54%) | |
hsl(16, 40%, 54%) | |
hsl(16, 60%, 54%) | |
hsl(16, 80%, 54%) | |
hsl(16, 100%, 54%) |
#df6135 Color Usage In CSS
body { color: #df6135; } p { color: rgb(223, 97, 53); } header { border-bottom:1px solid #df6135; }