#dfb632 Color
Color Codes | |
---|---|
Hex Code | #dfb632 |
RGB Code | rgb(223, 182, 50) |
HSL Code | hsl(46, 73%, 54%) |
#dfb632 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(223, 182, 50); }
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, 73%, 54%); }
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 #dfb632
RGB Code | Hex Code | Preview |
---|---|---|
rgb(223, 182, 50, 10%) | #dfb6321a | |
rgb(223, 182, 50, 20%) | #dfb63233 | |
rgb(223, 182, 50, 40%) | #dfb6324C | |
rgb(223, 182, 50, 60%) | #dfb63299 | |
rgb(223, 182, 50, 80%) | #dfb632CC | |
rgb(223, 182, 50, 100%) | #dfb632FF |
Saturated and desaturated colors of #dfb632
HSL Code | Preview |
---|---|
hsl(46, 10%, 54%) | |
hsl(46, 20%, 54%) | |
hsl(46, 40%, 54%) | |
hsl(46, 60%, 54%) | |
hsl(46, 80%, 54%) | |
hsl(46, 100%, 54%) |
#dfb632 Color Usage In CSS
body { color: #dfb632; } p { color: rgb(223, 182, 50); } header { border-bottom:1px solid #dfb632; }