#dca247 Color
Color Codes | |
---|---|
Hex Code | #dca247 |
RGB Code | rgb(220, 162, 71) |
HSL Code | hsl(37, 68%, 57%) |
#dca247 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(220, 162, 71); }
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, 68%, 57%); }
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 #dca247
RGB Code | Hex Code | Preview |
---|---|---|
rgb(220, 162, 71, 10%) | #dca2471a | |
rgb(220, 162, 71, 20%) | #dca24733 | |
rgb(220, 162, 71, 40%) | #dca2474C | |
rgb(220, 162, 71, 60%) | #dca24799 | |
rgb(220, 162, 71, 80%) | #dca247CC | |
rgb(220, 162, 71, 100%) | #dca247FF |
Saturated and desaturated colors of #dca247
HSL Code | Preview |
---|---|
hsl(37, 10%, 57%) | |
hsl(37, 20%, 57%) | |
hsl(37, 40%, 57%) | |
hsl(37, 60%, 57%) | |
hsl(37, 80%, 57%) | |
hsl(37, 100%, 57%) |
#dca247 Color Usage In CSS
body { color: #dca247; } p { color: rgb(220, 162, 71); } header { border-bottom:1px solid #dca247; }