#dabfae Color
Color Codes | |
---|---|
Hex Code | #dabfae |
RGB Code | rgb(218, 191, 174) |
HSL Code | hsl(23, 37%, 77%) |
#dabfae Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(218, 191, 174); }
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(23, 37%, 77%); }
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 #dabfae
RGB Code | Hex Code | Preview |
---|---|---|
rgb(218, 191, 174, 10%) | #dabfae1a | |
rgb(218, 191, 174, 20%) | #dabfae33 | |
rgb(218, 191, 174, 40%) | #dabfae4C | |
rgb(218, 191, 174, 60%) | #dabfae99 | |
rgb(218, 191, 174, 80%) | #dabfaeCC | |
rgb(218, 191, 174, 100%) | #dabfaeFF |
Saturated and desaturated colors of #dabfae
HSL Code | Preview |
---|---|
hsl(23, 10%, 77%) | |
hsl(23, 20%, 77%) | |
hsl(23, 40%, 77%) | |
hsl(23, 60%, 77%) | |
hsl(23, 80%, 77%) | |
hsl(23, 100%, 77%) |
#dabfae Color Usage In CSS
body { color: #dabfae; } p { color: rgb(218, 191, 174); } header { border-bottom:1px solid #dabfae; }