#d36614 Color
Color Codes | |
---|---|
Hex Code | #d36614 |
RGB Code | rgb(211, 102, 20) |
HSL Code | hsl(26, 83%, 45%) |
#d36614 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(211, 102, 20); }
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(26, 83%, 45%); }
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 #d36614
RGB Code | Hex Code | Preview |
---|---|---|
rgb(211, 102, 20, 10%) | #d366141a | |
rgb(211, 102, 20, 20%) | #d3661433 | |
rgb(211, 102, 20, 40%) | #d366144C | |
rgb(211, 102, 20, 60%) | #d3661499 | |
rgb(211, 102, 20, 80%) | #d36614CC | |
rgb(211, 102, 20, 100%) | #d36614FF |
Saturated and desaturated colors of #d36614
HSL Code | Preview |
---|---|
hsl(26, 10%, 45%) | |
hsl(26, 20%, 45%) | |
hsl(26, 40%, 45%) | |
hsl(26, 60%, 45%) | |
hsl(26, 80%, 45%) | |
hsl(26, 100%, 45%) |
#d36614 Color Usage In CSS
body { color: #d36614; } p { color: rgb(211, 102, 20); } header { border-bottom:1px solid #d36614; }