#cdf659 Color
Color Codes | |
---|---|
Hex Code | #cdf659 |
RGB Code | rgb(205, 246, 89) |
HSL Code | hsl(76, 90%, 66%) |
#cdf659 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(205, 246, 89); }
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(76, 90%, 66%); }
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 #cdf659
RGB Code | Hex Code | Preview |
---|---|---|
rgb(205, 246, 89, 10%) | #cdf6591a | |
rgb(205, 246, 89, 20%) | #cdf65933 | |
rgb(205, 246, 89, 40%) | #cdf6594C | |
rgb(205, 246, 89, 60%) | #cdf65999 | |
rgb(205, 246, 89, 80%) | #cdf659CC | |
rgb(205, 246, 89, 100%) | #cdf659FF |
Saturated and desaturated colors of #cdf659
HSL Code | Preview |
---|---|
hsl(76, 10%, 66%) | |
hsl(76, 20%, 66%) | |
hsl(76, 40%, 66%) | |
hsl(76, 60%, 66%) | |
hsl(76, 80%, 66%) | |
hsl(76, 100%, 66%) |
#cdf659 Color Usage In CSS
body { color: #cdf659; } p { color: rgb(205, 246, 89); } header { border-bottom:1px solid #cdf659; }