#dfda61 Color
Color Codes | |
---|---|
Hex Code | #dfda61 |
RGB Code | rgb(223, 218, 97) |
HSL Code | hsl(58, 66%, 63%) |
#dfda61 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(223, 218, 97); }
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(58, 66%, 63%); }
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 #dfda61
RGB Code | Hex Code | Preview |
---|---|---|
rgb(223, 218, 97, 10%) | #dfda611a | |
rgb(223, 218, 97, 20%) | #dfda6133 | |
rgb(223, 218, 97, 40%) | #dfda614C | |
rgb(223, 218, 97, 60%) | #dfda6199 | |
rgb(223, 218, 97, 80%) | #dfda61CC | |
rgb(223, 218, 97, 100%) | #dfda61FF |
Saturated and desaturated colors of #dfda61
HSL Code | Preview |
---|---|
hsl(58, 10%, 63%) | |
hsl(58, 20%, 63%) | |
hsl(58, 40%, 63%) | |
hsl(58, 60%, 63%) | |
hsl(58, 80%, 63%) | |
hsl(58, 100%, 63%) |
#dfda61 Color Usage In CSS
body { color: #dfda61; } p { color: rgb(223, 218, 97); } header { border-bottom:1px solid #dfda61; }