#dda811 Color
Color Codes | |
---|---|
Hex Code | #dda811 |
RGB Code | rgb(221, 168, 17) |
HSL Code | hsl(44, 86%, 47%) |
#dda811 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(221, 168, 17); }
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(44, 86%, 47%); }
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 #dda811
RGB Code | Hex Code | Preview |
---|---|---|
rgb(221, 168, 17, 10%) | #dda8111a | |
rgb(221, 168, 17, 20%) | #dda81133 | |
rgb(221, 168, 17, 40%) | #dda8114C | |
rgb(221, 168, 17, 60%) | #dda81199 | |
rgb(221, 168, 17, 80%) | #dda811CC | |
rgb(221, 168, 17, 100%) | #dda811FF |
Saturated and desaturated colors of #dda811
HSL Code | Preview |
---|---|
hsl(44, 10%, 47%) | |
hsl(44, 20%, 47%) | |
hsl(44, 40%, 47%) | |
hsl(44, 60%, 47%) | |
hsl(44, 80%, 47%) | |
hsl(44, 100%, 47%) |
#dda811 Color Usage In CSS
body { color: #dda811; } p { color: rgb(221, 168, 17); } header { border-bottom:1px solid #dda811; }