#db6a67 Color
Color Codes | |
---|---|
Hex Code | #db6a67 |
RGB Code | rgb(219, 106, 103) |
HSL Code | hsl(2, 62%, 63%) |
#db6a67 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(219, 106, 103); }
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(2, 62%, 63%); }
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 #db6a67
RGB Code | Hex Code | Preview |
---|---|---|
rgb(219, 106, 103, 10%) | #db6a671a | |
rgb(219, 106, 103, 20%) | #db6a6733 | |
rgb(219, 106, 103, 40%) | #db6a674C | |
rgb(219, 106, 103, 60%) | #db6a6799 | |
rgb(219, 106, 103, 80%) | #db6a67CC | |
rgb(219, 106, 103, 100%) | #db6a67FF |
Saturated and desaturated colors of #db6a67
HSL Code | Preview |
---|---|
hsl(2, 10%, 63%) | |
hsl(2, 20%, 63%) | |
hsl(2, 40%, 63%) | |
hsl(2, 60%, 63%) | |
hsl(2, 80%, 63%) | |
hsl(2, 100%, 63%) |
#db6a67 Color Usage In CSS
body { color: #db6a67; } p { color: rgb(219, 106, 103); } header { border-bottom:1px solid #db6a67; }