#df996f Color
Color Codes | |
---|---|
Hex Code | #df996f |
RGB Code | rgb(223, 153, 111) |
HSL Code | hsl(23, 64%, 65%) |
#df996f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(223, 153, 111); }
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(23, 64%, 65%); }
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 #df996f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(223, 153, 111, 10%) | #df996f1a | |
rgb(223, 153, 111, 20%) | #df996f33 | |
rgb(223, 153, 111, 40%) | #df996f4C | |
rgb(223, 153, 111, 60%) | #df996f99 | |
rgb(223, 153, 111, 80%) | #df996fCC | |
rgb(223, 153, 111, 100%) | #df996fFF |
Saturated and desaturated colors of #df996f
HSL Code | Preview |
---|---|
hsl(23, 10%, 65%) | |
hsl(23, 20%, 65%) | |
hsl(23, 40%, 65%) | |
hsl(23, 60%, 65%) | |
hsl(23, 80%, 65%) | |
hsl(23, 100%, 65%) |
#df996f Color Usage In CSS
body { color: #df996f; } p { color: rgb(223, 153, 111); } header { border-bottom:1px solid #df996f; }