#dedc44 Color
Color Codes | |
---|---|
Hex Code | #dedc44 |
RGB Code | rgb(222, 220, 68) |
HSL Code | hsl(59, 70%, 57%) |
#dedc44 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(222, 220, 68); }
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(59, 70%, 57%); }
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 #dedc44
RGB Code | Hex Code | Preview |
---|---|---|
rgb(222, 220, 68, 10%) | #dedc441a | |
rgb(222, 220, 68, 20%) | #dedc4433 | |
rgb(222, 220, 68, 40%) | #dedc444C | |
rgb(222, 220, 68, 60%) | #dedc4499 | |
rgb(222, 220, 68, 80%) | #dedc44CC | |
rgb(222, 220, 68, 100%) | #dedc44FF |
Saturated and desaturated colors of #dedc44
HSL Code | Preview |
---|---|
hsl(59, 10%, 57%) | |
hsl(59, 20%, 57%) | |
hsl(59, 40%, 57%) | |
hsl(59, 60%, 57%) | |
hsl(59, 80%, 57%) | |
hsl(59, 100%, 57%) |
#dedc44 Color Usage In CSS
body { color: #dedc44; } p { color: rgb(222, 220, 68); } header { border-bottom:1px solid #dedc44; }