#d66140 Color
Color Codes | |
---|---|
Hex Code | #d66140 |
RGB Code | rgb(214, 97, 64) |
HSL Code | hsl(13, 65%, 55%) |
#d66140 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(214, 97, 64); }
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(13, 65%, 55%); }
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 #d66140
RGB Code | Hex Code | Preview |
---|---|---|
rgb(214, 97, 64, 10%) | #d661401a | |
rgb(214, 97, 64, 20%) | #d6614033 | |
rgb(214, 97, 64, 40%) | #d661404C | |
rgb(214, 97, 64, 60%) | #d6614099 | |
rgb(214, 97, 64, 80%) | #d66140CC | |
rgb(214, 97, 64, 100%) | #d66140FF |
Saturated and desaturated colors of #d66140
HSL Code | Preview |
---|---|
hsl(13, 10%, 55%) | |
hsl(13, 20%, 55%) | |
hsl(13, 40%, 55%) | |
hsl(13, 60%, 55%) | |
hsl(13, 80%, 55%) | |
hsl(13, 100%, 55%) |
#d66140 Color Usage In CSS
body { color: #d66140; } p { color: rgb(214, 97, 64); } header { border-bottom:1px solid #d66140; }