#d3e227 Color
Color Codes | |
---|---|
Hex Code | #d3e227 |
RGB Code | rgb(211, 226, 39) |
HSL Code | hsl(65, 76%, 52%) |
#d3e227 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(211, 226, 39); }
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(65, 76%, 52%); }
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 #d3e227
RGB Code | Hex Code | Preview |
---|---|---|
rgb(211, 226, 39, 10%) | #d3e2271a | |
rgb(211, 226, 39, 20%) | #d3e22733 | |
rgb(211, 226, 39, 40%) | #d3e2274C | |
rgb(211, 226, 39, 60%) | #d3e22799 | |
rgb(211, 226, 39, 80%) | #d3e227CC | |
rgb(211, 226, 39, 100%) | #d3e227FF |
Saturated and desaturated colors of #d3e227
HSL Code | Preview |
---|---|
hsl(65, 10%, 52%) | |
hsl(65, 20%, 52%) | |
hsl(65, 40%, 52%) | |
hsl(65, 60%, 52%) | |
hsl(65, 80%, 52%) | |
hsl(65, 100%, 52%) |
#d3e227 Color Usage In CSS
body { color: #d3e227; } p { color: rgb(211, 226, 39); } header { border-bottom:1px solid #d3e227; }