#f5ebf9 Color
Color Codes | |
---|---|
Hex Code | #f5ebf9 |
RGB Code | rgb(245, 235, 249) |
HSL Code | hsl(283, 54%, 95%) |
#f5ebf9 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(245, 235, 249); }
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(283, 54%, 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 #f5ebf9
RGB Code | Hex Code | Preview |
---|---|---|
rgb(245, 235, 249, 10%) | #f5ebf91a | |
rgb(245, 235, 249, 20%) | #f5ebf933 | |
rgb(245, 235, 249, 40%) | #f5ebf94C | |
rgb(245, 235, 249, 60%) | #f5ebf999 | |
rgb(245, 235, 249, 80%) | #f5ebf9CC | |
rgb(245, 235, 249, 100%) | #f5ebf9FF |
Saturated and desaturated colors of #f5ebf9
HSL Code | Preview |
---|---|
hsl(283, 10%, 95%) | |
hsl(283, 20%, 95%) | |
hsl(283, 40%, 95%) | |
hsl(283, 60%, 95%) | |
hsl(283, 80%, 95%) | |
hsl(283, 100%, 95%) |
#f5ebf9 Color Usage In CSS
body { color: #f5ebf9; } p { color: rgb(245, 235, 249); } header { border-bottom:1px solid #f5ebf9; }