#d3cac2 Color
Color Codes | |
---|---|
Hex Code | #d3cac2 |
RGB Code | rgb(211, 202, 194) |
HSL Code | hsl(28, 16%, 79%) |
#d3cac2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(211, 202, 194); }
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(28, 16%, 79%); }
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 #d3cac2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(211, 202, 194, 10%) | #d3cac21a | |
rgb(211, 202, 194, 20%) | #d3cac233 | |
rgb(211, 202, 194, 40%) | #d3cac24C | |
rgb(211, 202, 194, 60%) | #d3cac299 | |
rgb(211, 202, 194, 80%) | #d3cac2CC | |
rgb(211, 202, 194, 100%) | #d3cac2FF |
Saturated and desaturated colors of #d3cac2
HSL Code | Preview |
---|---|
hsl(28, 10%, 79%) | |
hsl(28, 20%, 79%) | |
hsl(28, 40%, 79%) | |
hsl(28, 60%, 79%) | |
hsl(28, 80%, 79%) | |
hsl(28, 100%, 79%) |
#d3cac2 Color Usage In CSS
body { color: #d3cac2; } p { color: rgb(211, 202, 194); } header { border-bottom:1px solid #d3cac2; }