#d88459 Color
Color Codes | |
---|---|
Hex Code | #d88459 |
RGB Code | rgb(216, 132, 89) |
HSL Code | hsl(20, 62%, 60%) |
#d88459 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(216, 132, 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(20, 62%, 60%); }
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 #d88459
RGB Code | Hex Code | Preview |
---|---|---|
rgb(216, 132, 89, 10%) | #d884591a | |
rgb(216, 132, 89, 20%) | #d8845933 | |
rgb(216, 132, 89, 40%) | #d884594C | |
rgb(216, 132, 89, 60%) | #d8845999 | |
rgb(216, 132, 89, 80%) | #d88459CC | |
rgb(216, 132, 89, 100%) | #d88459FF |
Saturated and desaturated colors of #d88459
HSL Code | Preview |
---|---|
hsl(20, 10%, 60%) | |
hsl(20, 20%, 60%) | |
hsl(20, 40%, 60%) | |
hsl(20, 60%, 60%) | |
hsl(20, 80%, 60%) | |
hsl(20, 100%, 60%) |
#d88459 Color Usage In CSS
body { color: #d88459; } p { color: rgb(216, 132, 89); } header { border-bottom:1px solid #d88459; }