#dcef04 Color
Color Codes | |
---|---|
Hex Code | #dcef04 |
RGB Code | rgb(220, 239, 04) |
HSL Code | hsl(65, 97%, 48%) |
#dcef04 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(220, 239, 04); }
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(65, 97%, 48%); }
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 #dcef04
RGB Code | Hex Code | Preview |
---|---|---|
rgb(220, 239, 04, 10%) | #dcef041a | |
rgb(220, 239, 04, 20%) | #dcef0433 | |
rgb(220, 239, 04, 40%) | #dcef044C | |
rgb(220, 239, 04, 60%) | #dcef0499 | |
rgb(220, 239, 04, 80%) | #dcef04CC | |
rgb(220, 239, 04, 100%) | #dcef04FF |
Saturated and desaturated colors of #dcef04
HSL Code | Preview |
---|---|
hsl(65, 10%, 48%) | |
hsl(65, 20%, 48%) | |
hsl(65, 40%, 48%) | |
hsl(65, 60%, 48%) | |
hsl(65, 80%, 48%) | |
hsl(65, 100%, 48%) |
#dcef04 Color Usage In CSS
body { color: #dcef04; } p { color: rgb(220, 239, 04); } header { border-bottom:1px solid #dcef04; }