#dfffab Color
Color Codes | |
---|---|
Hex Code | #dfffab |
RGB Code | rgb(223, 255, 171) |
HSL Code | hsl(83, 100%, 84%) |
#dfffab Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(223, 255, 171); }
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(83, 100%, 84%); }
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 #dfffab
RGB Code | Hex Code | Preview |
---|---|---|
rgb(223, 255, 171, 10%) | #dfffab1a | |
rgb(223, 255, 171, 20%) | #dfffab33 | |
rgb(223, 255, 171, 40%) | #dfffab4C | |
rgb(223, 255, 171, 60%) | #dfffab99 | |
rgb(223, 255, 171, 80%) | #dfffabCC | |
rgb(223, 255, 171, 100%) | #dfffabFF |
Saturated and desaturated colors of #dfffab
HSL Code | Preview |
---|---|
hsl(83, 10%, 84%) | |
hsl(83, 20%, 84%) | |
hsl(83, 40%, 84%) | |
hsl(83, 60%, 84%) | |
hsl(83, 80%, 84%) | |
hsl(83, 100%, 84%) |
#dfffab Color Usage In CSS
body { color: #dfffab; } p { color: rgb(223, 255, 171); } header { border-bottom:1px solid #dfffab; }