#d68918 Color
Color Codes | |
---|---|
Hex Code | #d68918 |
RGB Code | rgb(214, 137, 24) |
HSL Code | hsl(36, 80%, 47%) |
#d68918 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(214, 137, 24); }
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, 80%, 47%); }
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 #d68918
RGB Code | Hex Code | Preview |
---|---|---|
rgb(214, 137, 24, 10%) | #d689181a | |
rgb(214, 137, 24, 20%) | #d6891833 | |
rgb(214, 137, 24, 40%) | #d689184C | |
rgb(214, 137, 24, 60%) | #d6891899 | |
rgb(214, 137, 24, 80%) | #d68918CC | |
rgb(214, 137, 24, 100%) | #d68918FF |
Saturated and desaturated colors of #d68918
HSL Code | Preview |
---|---|
hsl(36, 10%, 47%) | |
hsl(36, 20%, 47%) | |
hsl(36, 40%, 47%) | |
hsl(36, 60%, 47%) | |
hsl(36, 80%, 47%) | |
hsl(36, 100%, 47%) |
#d68918 Color Usage In CSS
body { color: #d68918; } p { color: rgb(214, 137, 24); } header { border-bottom:1px solid #d68918; }