#c9d4c3 Color
Color Codes | |
---|---|
Hex Code | #c9d4c3 |
RGB Code | rgb(201, 212, 195) |
HSL Code | hsl(99, 17%, 80%) |
#c9d4c3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(201, 212, 195); }
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(99, 17%, 80%); }
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 #c9d4c3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(201, 212, 195, 10%) | #c9d4c31a | |
rgb(201, 212, 195, 20%) | #c9d4c333 | |
rgb(201, 212, 195, 40%) | #c9d4c34C | |
rgb(201, 212, 195, 60%) | #c9d4c399 | |
rgb(201, 212, 195, 80%) | #c9d4c3CC | |
rgb(201, 212, 195, 100%) | #c9d4c3FF |
Saturated and desaturated colors of #c9d4c3
HSL Code | Preview |
---|---|
hsl(99, 10%, 80%) | |
hsl(99, 20%, 80%) | |
hsl(99, 40%, 80%) | |
hsl(99, 60%, 80%) | |
hsl(99, 80%, 80%) | |
hsl(99, 100%, 80%) |
#c9d4c3 Color Usage In CSS
body { color: #c9d4c3; } p { color: rgb(201, 212, 195); } header { border-bottom:1px solid #c9d4c3; }