#d5ff6a Color
Color Codes | |
---|---|
Hex Code | #d5ff6a |
RGB Code | rgb(213, 255, 106) |
HSL Code | hsl(77, 100%, 71%) |
#d5ff6a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(213, 255, 106); }
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(77, 100%, 71%); }
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 #d5ff6a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(213, 255, 106, 10%) | #d5ff6a1a | |
rgb(213, 255, 106, 20%) | #d5ff6a33 | |
rgb(213, 255, 106, 40%) | #d5ff6a4C | |
rgb(213, 255, 106, 60%) | #d5ff6a99 | |
rgb(213, 255, 106, 80%) | #d5ff6aCC | |
rgb(213, 255, 106, 100%) | #d5ff6aFF |
Saturated and desaturated colors of #d5ff6a
HSL Code | Preview |
---|---|
hsl(77, 10%, 71%) | |
hsl(77, 20%, 71%) | |
hsl(77, 40%, 71%) | |
hsl(77, 60%, 71%) | |
hsl(77, 80%, 71%) | |
hsl(77, 100%, 71%) |
#d5ff6a Color Usage In CSS
body { color: #d5ff6a; } p { color: rgb(213, 255, 106); } header { border-bottom:1px solid #d5ff6a; }