#d6d23e Color
Color Codes | |
---|---|
Hex Code | #d6d23e |
RGB Code | rgb(214, 210, 62) |
HSL Code | hsl(58, 65%, 54%) |
#d6d23e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(214, 210, 62); }
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, 65%, 54%); }
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 #d6d23e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(214, 210, 62, 10%) | #d6d23e1a | |
rgb(214, 210, 62, 20%) | #d6d23e33 | |
rgb(214, 210, 62, 40%) | #d6d23e4C | |
rgb(214, 210, 62, 60%) | #d6d23e99 | |
rgb(214, 210, 62, 80%) | #d6d23eCC | |
rgb(214, 210, 62, 100%) | #d6d23eFF |
Saturated and desaturated colors of #d6d23e
HSL Code | Preview |
---|---|
hsl(58, 10%, 54%) | |
hsl(58, 20%, 54%) | |
hsl(58, 40%, 54%) | |
hsl(58, 60%, 54%) | |
hsl(58, 80%, 54%) | |
hsl(58, 100%, 54%) |
#d6d23e Color Usage In CSS
body { color: #d6d23e; } p { color: rgb(214, 210, 62); } header { border-bottom:1px solid #d6d23e; }