#deb63f Color
Color Codes | |
---|---|
Hex Code | #deb63f |
RGB Code | rgb(222, 182, 63) |
HSL Code | hsl(45, 71%, 56%) |
#deb63f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(222, 182, 63); }
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(45, 71%, 56%); }
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 #deb63f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(222, 182, 63, 10%) | #deb63f1a | |
rgb(222, 182, 63, 20%) | #deb63f33 | |
rgb(222, 182, 63, 40%) | #deb63f4C | |
rgb(222, 182, 63, 60%) | #deb63f99 | |
rgb(222, 182, 63, 80%) | #deb63fCC | |
rgb(222, 182, 63, 100%) | #deb63fFF |
Saturated and desaturated colors of #deb63f
HSL Code | Preview |
---|---|
hsl(45, 10%, 56%) | |
hsl(45, 20%, 56%) | |
hsl(45, 40%, 56%) | |
hsl(45, 60%, 56%) | |
hsl(45, 80%, 56%) | |
hsl(45, 100%, 56%) |
#deb63f Color Usage In CSS
body { color: #deb63f; } p { color: rgb(222, 182, 63); } header { border-bottom:1px solid #deb63f; }