#c9c0f3 Color
Color Codes | |
---|---|
Hex Code | #c9c0f3 |
RGB Code | rgb(201, 192, 243) |
HSL Code | hsl(251, 68%, 85%) |
#c9c0f3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(201, 192, 243); }
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(251, 68%, 85%); }
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 #c9c0f3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(201, 192, 243, 10%) | #c9c0f31a | |
rgb(201, 192, 243, 20%) | #c9c0f333 | |
rgb(201, 192, 243, 40%) | #c9c0f34C | |
rgb(201, 192, 243, 60%) | #c9c0f399 | |
rgb(201, 192, 243, 80%) | #c9c0f3CC | |
rgb(201, 192, 243, 100%) | #c9c0f3FF |
Saturated and desaturated colors of #c9c0f3
HSL Code | Preview |
---|---|
hsl(251, 10%, 85%) | |
hsl(251, 20%, 85%) | |
hsl(251, 40%, 85%) | |
hsl(251, 60%, 85%) | |
hsl(251, 80%, 85%) | |
hsl(251, 100%, 85%) |
#c9c0f3 Color Usage In CSS
body { color: #c9c0f3; } p { color: rgb(201, 192, 243); } header { border-bottom:1px solid #c9c0f3; }