#daf939 Color
Color Codes | |
---|---|
Hex Code | #daf939 |
RGB Code | rgb(218, 249, 57) |
HSL Code | hsl(70, 94%, 60%) |
#daf939 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(218, 249, 57); }
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(70, 94%, 60%); }
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 #daf939
RGB Code | Hex Code | Preview |
---|---|---|
rgb(218, 249, 57, 10%) | #daf9391a | |
rgb(218, 249, 57, 20%) | #daf93933 | |
rgb(218, 249, 57, 40%) | #daf9394C | |
rgb(218, 249, 57, 60%) | #daf93999 | |
rgb(218, 249, 57, 80%) | #daf939CC | |
rgb(218, 249, 57, 100%) | #daf939FF |
Saturated and desaturated colors of #daf939
HSL Code | Preview |
---|---|
hsl(70, 10%, 60%) | |
hsl(70, 20%, 60%) | |
hsl(70, 40%, 60%) | |
hsl(70, 60%, 60%) | |
hsl(70, 80%, 60%) | |
hsl(70, 100%, 60%) |
#daf939 Color Usage In CSS
body { color: #daf939; } p { color: rgb(218, 249, 57); } header { border-bottom:1px solid #daf939; }