#edf0fa Color
Color Codes | |
---|---|
Hex Code | #edf0fa |
RGB Code | rgb(237, 240, 250) |
HSL Code | hsl(226, 57%, 95%) |
#edf0fa Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(237, 240, 250); }
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(226, 57%, 95%); }
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 #edf0fa
RGB Code | Hex Code | Preview |
---|---|---|
rgb(237, 240, 250, 10%) | #edf0fa1a | |
rgb(237, 240, 250, 20%) | #edf0fa33 | |
rgb(237, 240, 250, 40%) | #edf0fa4C | |
rgb(237, 240, 250, 60%) | #edf0fa99 | |
rgb(237, 240, 250, 80%) | #edf0faCC | |
rgb(237, 240, 250, 100%) | #edf0faFF |
Saturated and desaturated colors of #edf0fa
HSL Code | Preview |
---|---|
hsl(226, 10%, 95%) | |
hsl(226, 20%, 95%) | |
hsl(226, 40%, 95%) | |
hsl(226, 60%, 95%) | |
hsl(226, 80%, 95%) | |
hsl(226, 100%, 95%) |
#edf0fa Color Usage In CSS
body { color: #edf0fa; } p { color: rgb(237, 240, 250); } header { border-bottom:1px solid #edf0fa; }