#f0dae0 Color
Color Codes | |
---|---|
Hex Code | #f0dae0 |
RGB Code | rgb(240, 218, 224) |
HSL Code | hsl(344, 42%, 90%) |
#f0dae0 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(240, 218, 224); }
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(344, 42%, 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 #f0dae0
RGB Code | Hex Code | Preview |
---|---|---|
rgb(240, 218, 224, 10%) | #f0dae01a | |
rgb(240, 218, 224, 20%) | #f0dae033 | |
rgb(240, 218, 224, 40%) | #f0dae04C | |
rgb(240, 218, 224, 60%) | #f0dae099 | |
rgb(240, 218, 224, 80%) | #f0dae0CC | |
rgb(240, 218, 224, 100%) | #f0dae0FF |
Saturated and desaturated colors of #f0dae0
HSL Code | Preview |
---|---|
hsl(344, 10%, 90%) | |
hsl(344, 20%, 90%) | |
hsl(344, 40%, 90%) | |
hsl(344, 60%, 90%) | |
hsl(344, 80%, 90%) | |
hsl(344, 100%, 90%) |
#f0dae0 Color Usage In CSS
body { color: #f0dae0; } p { color: rgb(240, 218, 224); } header { border-bottom:1px solid #f0dae0; }