#dd9216 Color
Color Codes | |
---|---|
Hex Code | #dd9216 |
RGB Code | rgb(221, 146, 22) |
HSL Code | hsl(37, 82%, 48%) |
#dd9216 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(221, 146, 22); }
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(37, 82%, 48%); }
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 #dd9216
RGB Code | Hex Code | Preview |
---|---|---|
rgb(221, 146, 22, 10%) | #dd92161a | |
rgb(221, 146, 22, 20%) | #dd921633 | |
rgb(221, 146, 22, 40%) | #dd92164C | |
rgb(221, 146, 22, 60%) | #dd921699 | |
rgb(221, 146, 22, 80%) | #dd9216CC | |
rgb(221, 146, 22, 100%) | #dd9216FF |
Saturated and desaturated colors of #dd9216
HSL Code | Preview |
---|---|
hsl(37, 10%, 48%) | |
hsl(37, 20%, 48%) | |
hsl(37, 40%, 48%) | |
hsl(37, 60%, 48%) | |
hsl(37, 80%, 48%) | |
hsl(37, 100%, 48%) |
#dd9216 Color Usage In CSS
body { color: #dd9216; } p { color: rgb(221, 146, 22); } header { border-bottom:1px solid #dd9216; }