#d3662b Color
Color Codes | |
---|---|
Hex Code | #d3662b |
RGB Code | rgb(211, 102, 43) |
HSL Code | hsl(21, 66%, 50%) |
#d3662b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(211, 102, 43); }
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(21, 66%, 50%); }
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 #d3662b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(211, 102, 43, 10%) | #d3662b1a | |
rgb(211, 102, 43, 20%) | #d3662b33 | |
rgb(211, 102, 43, 40%) | #d3662b4C | |
rgb(211, 102, 43, 60%) | #d3662b99 | |
rgb(211, 102, 43, 80%) | #d3662bCC | |
rgb(211, 102, 43, 100%) | #d3662bFF |
Saturated and desaturated colors of #d3662b
HSL Code | Preview |
---|---|
hsl(21, 10%, 50%) | |
hsl(21, 20%, 50%) | |
hsl(21, 40%, 50%) | |
hsl(21, 60%, 50%) | |
hsl(21, 80%, 50%) | |
hsl(21, 100%, 50%) |
#d3662b Color Usage In CSS
body { color: #d3662b; } p { color: rgb(211, 102, 43); } header { border-bottom:1px solid #d3662b; }