#ccccc9 Color
Color Codes | |
---|---|
Hex Code | #ccccc9 |
RGB Code | rgb(204, 204, 201) |
HSL Code | hsl(60, 3%, 79%) |
#ccccc9 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(204, 204, 201); }
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(60, 3%, 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 #ccccc9
RGB Code | Hex Code | Preview |
---|---|---|
rgb(204, 204, 201, 10%) | #ccccc91a | |
rgb(204, 204, 201, 20%) | #ccccc933 | |
rgb(204, 204, 201, 40%) | #ccccc94C | |
rgb(204, 204, 201, 60%) | #ccccc999 | |
rgb(204, 204, 201, 80%) | #ccccc9CC | |
rgb(204, 204, 201, 100%) | #ccccc9FF |
Saturated and desaturated colors of #ccccc9
HSL Code | Preview |
---|---|
hsl(60, 10%, 79%) | |
hsl(60, 20%, 79%) | |
hsl(60, 40%, 79%) | |
hsl(60, 60%, 79%) | |
hsl(60, 80%, 79%) | |
hsl(60, 100%, 79%) |
#ccccc9 Color Usage In CSS
body { color: #ccccc9; } p { color: rgb(204, 204, 201); } header { border-bottom:1px solid #ccccc9; }