#dbec45 Color
Color Codes | |
---|---|
Hex Code | #dbec45 |
RGB Code | rgb(219, 236, 69) |
HSL Code | hsl(66, 81%, 60%) |
#dbec45 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(219, 236, 69); }
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(66, 81%, 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 #dbec45
RGB Code | Hex Code | Preview |
---|---|---|
rgb(219, 236, 69, 10%) | #dbec451a | |
rgb(219, 236, 69, 20%) | #dbec4533 | |
rgb(219, 236, 69, 40%) | #dbec454C | |
rgb(219, 236, 69, 60%) | #dbec4599 | |
rgb(219, 236, 69, 80%) | #dbec45CC | |
rgb(219, 236, 69, 100%) | #dbec45FF |
Saturated and desaturated colors of #dbec45
HSL Code | Preview |
---|---|
hsl(66, 10%, 60%) | |
hsl(66, 20%, 60%) | |
hsl(66, 40%, 60%) | |
hsl(66, 60%, 60%) | |
hsl(66, 80%, 60%) | |
hsl(66, 100%, 60%) |
#dbec45 Color Usage In CSS
body { color: #dbec45; } p { color: rgb(219, 236, 69); } header { border-bottom:1px solid #dbec45; }