#cde808 Color
Color Codes | |
---|---|
Hex Code | #cde808 |
RGB Code | rgb(205, 232, 08) |
HSL Code | hsl(67, 93%, 47%) |
#cde808 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(205, 232, 08); }
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(67, 93%, 47%); }
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 #cde808
RGB Code | Hex Code | Preview |
---|---|---|
rgb(205, 232, 08, 10%) | #cde8081a | |
rgb(205, 232, 08, 20%) | #cde80833 | |
rgb(205, 232, 08, 40%) | #cde8084C | |
rgb(205, 232, 08, 60%) | #cde80899 | |
rgb(205, 232, 08, 80%) | #cde808CC | |
rgb(205, 232, 08, 100%) | #cde808FF |
Saturated and desaturated colors of #cde808
HSL Code | Preview |
---|---|
hsl(67, 10%, 47%) | |
hsl(67, 20%, 47%) | |
hsl(67, 40%, 47%) | |
hsl(67, 60%, 47%) | |
hsl(67, 80%, 47%) | |
hsl(67, 100%, 47%) |
#cde808 Color Usage In CSS
body { color: #cde808; } p { color: rgb(205, 232, 08); } header { border-bottom:1px solid #cde808; }