#dfa1ca Color
Color Codes | |
---|---|
Hex Code | #dfa1ca |
RGB Code | rgb(223, 161, 202) |
HSL Code | hsl(320, 49%, 75%) |
#dfa1ca Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(223, 161, 202); }
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(320, 49%, 75%); }
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 #dfa1ca
RGB Code | Hex Code | Preview |
---|---|---|
rgb(223, 161, 202, 10%) | #dfa1ca1a | |
rgb(223, 161, 202, 20%) | #dfa1ca33 | |
rgb(223, 161, 202, 40%) | #dfa1ca4C | |
rgb(223, 161, 202, 60%) | #dfa1ca99 | |
rgb(223, 161, 202, 80%) | #dfa1caCC | |
rgb(223, 161, 202, 100%) | #dfa1caFF |
Saturated and desaturated colors of #dfa1ca
HSL Code | Preview |
---|---|
hsl(320, 10%, 75%) | |
hsl(320, 20%, 75%) | |
hsl(320, 40%, 75%) | |
hsl(320, 60%, 75%) | |
hsl(320, 80%, 75%) | |
hsl(320, 100%, 75%) |
#dfa1ca Color Usage In CSS
body { color: #dfa1ca; } p { color: rgb(223, 161, 202); } header { border-bottom:1px solid #dfa1ca; }