#e2dcf0 Color
Color Codes | |
---|---|
Hex Code | #e2dcf0 |
RGB Code | rgb(226, 220, 240) |
HSL Code | hsl(258, 40%, 90%) |
#e2dcf0 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(226, 220, 240); }
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(258, 40%, 90%); }
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 #e2dcf0
RGB Code | Hex Code | Preview |
---|---|---|
rgb(226, 220, 240, 10%) | #e2dcf01a | |
rgb(226, 220, 240, 20%) | #e2dcf033 | |
rgb(226, 220, 240, 40%) | #e2dcf04C | |
rgb(226, 220, 240, 60%) | #e2dcf099 | |
rgb(226, 220, 240, 80%) | #e2dcf0CC | |
rgb(226, 220, 240, 100%) | #e2dcf0FF |
Saturated and desaturated colors of #e2dcf0
HSL Code | Preview |
---|---|
hsl(258, 10%, 90%) | |
hsl(258, 20%, 90%) | |
hsl(258, 40%, 90%) | |
hsl(258, 60%, 90%) | |
hsl(258, 80%, 90%) | |
hsl(258, 100%, 90%) |
#e2dcf0 Color Usage In CSS
body { color: #e2dcf0; } p { color: rgb(226, 220, 240); } header { border-bottom:1px solid #e2dcf0; }