#dbb740 Color
Color Codes | |
---|---|
Hex Code | #dbb740 |
RGB Code | rgb(219, 183, 64) |
HSL Code | hsl(46, 68%, 55%) |
#dbb740 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(219, 183, 64); }
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(46, 68%, 55%); }
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 #dbb740
RGB Code | Hex Code | Preview |
---|---|---|
rgb(219, 183, 64, 10%) | #dbb7401a | |
rgb(219, 183, 64, 20%) | #dbb74033 | |
rgb(219, 183, 64, 40%) | #dbb7404C | |
rgb(219, 183, 64, 60%) | #dbb74099 | |
rgb(219, 183, 64, 80%) | #dbb740CC | |
rgb(219, 183, 64, 100%) | #dbb740FF |
Saturated and desaturated colors of #dbb740
HSL Code | Preview |
---|---|
hsl(46, 10%, 55%) | |
hsl(46, 20%, 55%) | |
hsl(46, 40%, 55%) | |
hsl(46, 60%, 55%) | |
hsl(46, 80%, 55%) | |
hsl(46, 100%, 55%) |
#dbb740 Color Usage In CSS
body { color: #dbb740; } p { color: rgb(219, 183, 64); } header { border-bottom:1px solid #dbb740; }