#d7fb29 Color
Color Codes | |
---|---|
Hex Code | #d7fb29 |
RGB Code | rgb(215, 251, 41) |
HSL Code | hsl(70, 96%, 57%) |
#d7fb29 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(215, 251, 41); }
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, 96%, 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 #d7fb29
RGB Code | Hex Code | Preview |
---|---|---|
rgb(215, 251, 41, 10%) | #d7fb291a | |
rgb(215, 251, 41, 20%) | #d7fb2933 | |
rgb(215, 251, 41, 40%) | #d7fb294C | |
rgb(215, 251, 41, 60%) | #d7fb2999 | |
rgb(215, 251, 41, 80%) | #d7fb29CC | |
rgb(215, 251, 41, 100%) | #d7fb29FF |
Saturated and desaturated colors of #d7fb29
HSL Code | Preview |
---|---|
hsl(70, 10%, 57%) | |
hsl(70, 20%, 57%) | |
hsl(70, 40%, 57%) | |
hsl(70, 60%, 57%) | |
hsl(70, 80%, 57%) | |
hsl(70, 100%, 57%) |
#d7fb29 Color Usage In CSS
body { color: #d7fb29; } p { color: rgb(215, 251, 41); } header { border-bottom:1px solid #d7fb29; }