#d58612 Color
Color Codes | |
---|---|
Hex Code | #d58612 |
RGB Code | rgb(213, 134, 18) |
HSL Code | hsl(36, 84%, 45%) |
#d58612 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(213, 134, 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(36, 84%, 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 #d58612
RGB Code | Hex Code | Preview |
---|---|---|
rgb(213, 134, 18, 10%) | #d586121a | |
rgb(213, 134, 18, 20%) | #d5861233 | |
rgb(213, 134, 18, 40%) | #d586124C | |
rgb(213, 134, 18, 60%) | #d5861299 | |
rgb(213, 134, 18, 80%) | #d58612CC | |
rgb(213, 134, 18, 100%) | #d58612FF |
Saturated and desaturated colors of #d58612
HSL Code | Preview |
---|---|
hsl(36, 10%, 45%) | |
hsl(36, 20%, 45%) | |
hsl(36, 40%, 45%) | |
hsl(36, 60%, 45%) | |
hsl(36, 80%, 45%) | |
hsl(36, 100%, 45%) |
#d58612 Color Usage In CSS
body { color: #d58612; } p { color: rgb(213, 134, 18); } header { border-bottom:1px solid #d58612; }