#cffb4d Color
Color Codes | |
---|---|
Hex Code | #cffb4d |
RGB Code | rgb(207, 251, 77) |
HSL Code | hsl(75, 96%, 64%) |
#cffb4d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(207, 251, 77); }
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(75, 96%, 64%); }
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 #cffb4d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(207, 251, 77, 10%) | #cffb4d1a | |
rgb(207, 251, 77, 20%) | #cffb4d33 | |
rgb(207, 251, 77, 40%) | #cffb4d4C | |
rgb(207, 251, 77, 60%) | #cffb4d99 | |
rgb(207, 251, 77, 80%) | #cffb4dCC | |
rgb(207, 251, 77, 100%) | #cffb4dFF |
Saturated and desaturated colors of #cffb4d
HSL Code | Preview |
---|---|
hsl(75, 10%, 64%) | |
hsl(75, 20%, 64%) | |
hsl(75, 40%, 64%) | |
hsl(75, 60%, 64%) | |
hsl(75, 80%, 64%) | |
hsl(75, 100%, 64%) |
#cffb4d Color Usage In CSS
body { color: #cffb4d; } p { color: rgb(207, 251, 77); } header { border-bottom:1px solid #cffb4d; }