#df5b59 Color
Color Codes | |
---|---|
Hex Code | #df5b59 |
RGB Code | rgb(223, 91, 89) |
HSL Code | hsl(1, 68%, 61%) |
#df5b59 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(223, 91, 89); }
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(1, 68%, 61%); }
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 #df5b59
RGB Code | Hex Code | Preview |
---|---|---|
rgb(223, 91, 89, 10%) | #df5b591a | |
rgb(223, 91, 89, 20%) | #df5b5933 | |
rgb(223, 91, 89, 40%) | #df5b594C | |
rgb(223, 91, 89, 60%) | #df5b5999 | |
rgb(223, 91, 89, 80%) | #df5b59CC | |
rgb(223, 91, 89, 100%) | #df5b59FF |
Saturated and desaturated colors of #df5b59
HSL Code | Preview |
---|---|
hsl(1, 10%, 61%) | |
hsl(1, 20%, 61%) | |
hsl(1, 40%, 61%) | |
hsl(1, 60%, 61%) | |
hsl(1, 80%, 61%) | |
hsl(1, 100%, 61%) |
#df5b59 Color Usage In CSS
body { color: #df5b59; } p { color: rgb(223, 91, 89); } header { border-bottom:1px solid #df5b59; }