#dfa65a Color
Color Codes | |
---|---|
Hex Code | #dfa65a |
RGB Code | rgb(223, 166, 90) |
HSL Code | hsl(34, 68%, 61%) |
#dfa65a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(223, 166, 90); }
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(34, 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 #dfa65a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(223, 166, 90, 10%) | #dfa65a1a | |
rgb(223, 166, 90, 20%) | #dfa65a33 | |
rgb(223, 166, 90, 40%) | #dfa65a4C | |
rgb(223, 166, 90, 60%) | #dfa65a99 | |
rgb(223, 166, 90, 80%) | #dfa65aCC | |
rgb(223, 166, 90, 100%) | #dfa65aFF |
Saturated and desaturated colors of #dfa65a
HSL Code | Preview |
---|---|
hsl(34, 10%, 61%) | |
hsl(34, 20%, 61%) | |
hsl(34, 40%, 61%) | |
hsl(34, 60%, 61%) | |
hsl(34, 80%, 61%) | |
hsl(34, 100%, 61%) |
#dfa65a Color Usage In CSS
body { color: #dfa65a; } p { color: rgb(223, 166, 90); } header { border-bottom:1px solid #dfa65a; }