#d86612 Color
Color Codes | |
---|---|
Hex Code | #d86612 |
RGB Code | rgb(216, 102, 18) |
HSL Code | hsl(25, 85%, 46%) |
#d86612 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(216, 102, 18); }
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(25, 85%, 46%); }
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 #d86612
RGB Code | Hex Code | Preview |
---|---|---|
rgb(216, 102, 18, 10%) | #d866121a | |
rgb(216, 102, 18, 20%) | #d8661233 | |
rgb(216, 102, 18, 40%) | #d866124C | |
rgb(216, 102, 18, 60%) | #d8661299 | |
rgb(216, 102, 18, 80%) | #d86612CC | |
rgb(216, 102, 18, 100%) | #d86612FF |
Saturated and desaturated colors of #d86612
HSL Code | Preview |
---|---|
hsl(25, 10%, 46%) | |
hsl(25, 20%, 46%) | |
hsl(25, 40%, 46%) | |
hsl(25, 60%, 46%) | |
hsl(25, 80%, 46%) | |
hsl(25, 100%, 46%) |
#d86612 Color Usage In CSS
body { color: #d86612; } p { color: rgb(216, 102, 18); } header { border-bottom:1px solid #d86612; }