#d0f63c Color
Color Codes | |
---|---|
Hex Code | #d0f63c |
RGB Code | rgb(208, 246, 60) |
HSL Code | hsl(72, 91%, 60%) |
#d0f63c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(208, 246, 60); }
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(72, 91%, 60%); }
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 #d0f63c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(208, 246, 60, 10%) | #d0f63c1a | |
rgb(208, 246, 60, 20%) | #d0f63c33 | |
rgb(208, 246, 60, 40%) | #d0f63c4C | |
rgb(208, 246, 60, 60%) | #d0f63c99 | |
rgb(208, 246, 60, 80%) | #d0f63cCC | |
rgb(208, 246, 60, 100%) | #d0f63cFF |
Saturated and desaturated colors of #d0f63c
HSL Code | Preview |
---|---|
hsl(72, 10%, 60%) | |
hsl(72, 20%, 60%) | |
hsl(72, 40%, 60%) | |
hsl(72, 60%, 60%) | |
hsl(72, 80%, 60%) | |
hsl(72, 100%, 60%) |
#d0f63c Color Usage In CSS
body { color: #d0f63c; } p { color: rgb(208, 246, 60); } header { border-bottom:1px solid #d0f63c; }