#d16851 Color
Color Codes | |
---|---|
Hex Code | #d16851 |
RGB Code | rgb(209, 104, 81) |
HSL Code | hsl(11, 58%, 57%) |
#d16851 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(209, 104, 81); }
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(11, 58%, 57%); }
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 #d16851
RGB Code | Hex Code | Preview |
---|---|---|
rgb(209, 104, 81, 10%) | #d168511a | |
rgb(209, 104, 81, 20%) | #d1685133 | |
rgb(209, 104, 81, 40%) | #d168514C | |
rgb(209, 104, 81, 60%) | #d1685199 | |
rgb(209, 104, 81, 80%) | #d16851CC | |
rgb(209, 104, 81, 100%) | #d16851FF |
Saturated and desaturated colors of #d16851
HSL Code | Preview |
---|---|
hsl(11, 10%, 57%) | |
hsl(11, 20%, 57%) | |
hsl(11, 40%, 57%) | |
hsl(11, 60%, 57%) | |
hsl(11, 80%, 57%) | |
hsl(11, 100%, 57%) |
#d16851 Color Usage In CSS
body { color: #d16851; } p { color: rgb(209, 104, 81); } header { border-bottom:1px solid #d16851; }