#ecf65a Color
Color Codes | |
---|---|
Hex Code | #ecf65a |
RGB Code | rgb(236, 246, 90) |
HSL Code | hsl(64, 90%, 66%) |
#ecf65a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(236, 246, 90); }
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(64, 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 #ecf65a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(236, 246, 90, 10%) | #ecf65a1a | |
rgb(236, 246, 90, 20%) | #ecf65a33 | |
rgb(236, 246, 90, 40%) | #ecf65a4C | |
rgb(236, 246, 90, 60%) | #ecf65a99 | |
rgb(236, 246, 90, 80%) | #ecf65aCC | |
rgb(236, 246, 90, 100%) | #ecf65aFF |
Saturated and desaturated colors of #ecf65a
HSL Code | Preview |
---|---|
hsl(64, 10%, 66%) | |
hsl(64, 20%, 66%) | |
hsl(64, 40%, 66%) | |
hsl(64, 60%, 66%) | |
hsl(64, 80%, 66%) | |
hsl(64, 100%, 66%) |
#ecf65a Color Usage In CSS
body { color: #ecf65a; } p { color: rgb(236, 246, 90); } header { border-bottom:1px solid #ecf65a; }