#d6e37f Color
Color Codes | |
---|---|
Hex Code | #d6e37f |
RGB Code | rgb(214, 227, 127) |
HSL Code | hsl(68, 64%, 69%) |
#d6e37f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(214, 227, 127); }
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(68, 64%, 69%); }
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 #d6e37f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(214, 227, 127, 10%) | #d6e37f1a | |
rgb(214, 227, 127, 20%) | #d6e37f33 | |
rgb(214, 227, 127, 40%) | #d6e37f4C | |
rgb(214, 227, 127, 60%) | #d6e37f99 | |
rgb(214, 227, 127, 80%) | #d6e37fCC | |
rgb(214, 227, 127, 100%) | #d6e37fFF |
Saturated and desaturated colors of #d6e37f
HSL Code | Preview |
---|---|
hsl(68, 10%, 69%) | |
hsl(68, 20%, 69%) | |
hsl(68, 40%, 69%) | |
hsl(68, 60%, 69%) | |
hsl(68, 80%, 69%) | |
hsl(68, 100%, 69%) |
#d6e37f Color Usage In CSS
body { color: #d6e37f; } p { color: rgb(214, 227, 127); } header { border-bottom:1px solid #d6e37f; }