#f3e8d6 Color
Color Codes | |
---|---|
Hex Code | #f3e8d6 |
RGB Code | rgb(243, 232, 214) |
HSL Code | hsl(37, 55%, 90%) |
#f3e8d6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 232, 214); }
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(37, 55%, 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 #f3e8d6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 232, 214, 10%) | #f3e8d61a | |
rgb(243, 232, 214, 20%) | #f3e8d633 | |
rgb(243, 232, 214, 40%) | #f3e8d64C | |
rgb(243, 232, 214, 60%) | #f3e8d699 | |
rgb(243, 232, 214, 80%) | #f3e8d6CC | |
rgb(243, 232, 214, 100%) | #f3e8d6FF |
Saturated and desaturated colors of #f3e8d6
HSL Code | Preview |
---|---|
hsl(37, 10%, 90%) | |
hsl(37, 20%, 90%) | |
hsl(37, 40%, 90%) | |
hsl(37, 60%, 90%) | |
hsl(37, 80%, 90%) | |
hsl(37, 100%, 90%) |
#f3e8d6 Color Usage In CSS
body { color: #f3e8d6; } p { color: rgb(243, 232, 214); } header { border-bottom:1px solid #f3e8d6; }