#dfc657 Color
Color Codes | |
---|---|
Hex Code | #dfc657 |
RGB Code | rgb(223, 198, 87) |
HSL Code | hsl(49, 68%, 61%) |
#dfc657 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(223, 198, 87); }
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(49, 68%, 61%); }
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 #dfc657
RGB Code | Hex Code | Preview |
---|---|---|
rgb(223, 198, 87, 10%) | #dfc6571a | |
rgb(223, 198, 87, 20%) | #dfc65733 | |
rgb(223, 198, 87, 40%) | #dfc6574C | |
rgb(223, 198, 87, 60%) | #dfc65799 | |
rgb(223, 198, 87, 80%) | #dfc657CC | |
rgb(223, 198, 87, 100%) | #dfc657FF |
Saturated and desaturated colors of #dfc657
HSL Code | Preview |
---|---|
hsl(49, 10%, 61%) | |
hsl(49, 20%, 61%) | |
hsl(49, 40%, 61%) | |
hsl(49, 60%, 61%) | |
hsl(49, 80%, 61%) | |
hsl(49, 100%, 61%) |
#dfc657 Color Usage In CSS
body { color: #dfc657; } p { color: rgb(223, 198, 87); } header { border-bottom:1px solid #dfc657; }