#d5df4f Color
Color Codes | |
---|---|
Hex Code | #d5df4f |
RGB Code | rgb(213, 223, 79) |
HSL Code | hsl(64, 69%, 59%) |
#d5df4f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(213, 223, 79); }
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(64, 69%, 59%); }
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 #d5df4f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(213, 223, 79, 10%) | #d5df4f1a | |
rgb(213, 223, 79, 20%) | #d5df4f33 | |
rgb(213, 223, 79, 40%) | #d5df4f4C | |
rgb(213, 223, 79, 60%) | #d5df4f99 | |
rgb(213, 223, 79, 80%) | #d5df4fCC | |
rgb(213, 223, 79, 100%) | #d5df4fFF |
Saturated and desaturated colors of #d5df4f
HSL Code | Preview |
---|---|
hsl(64, 10%, 59%) | |
hsl(64, 20%, 59%) | |
hsl(64, 40%, 59%) | |
hsl(64, 60%, 59%) | |
hsl(64, 80%, 59%) | |
hsl(64, 100%, 59%) |
#d5df4f Color Usage In CSS
body { color: #d5df4f; } p { color: rgb(213, 223, 79); } header { border-bottom:1px solid #d5df4f; }