#c1bab9 Color
Color Codes | |
---|---|
Hex Code | #c1bab9 |
RGB Code | rgb(193, 186, 185) |
HSL Code | hsl(7, 6%, 74%) |
#c1bab9 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(193, 186, 185); }
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(7, 6%, 74%); }
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 #c1bab9
RGB Code | Hex Code | Preview |
---|---|---|
rgb(193, 186, 185, 10%) | #c1bab91a | |
rgb(193, 186, 185, 20%) | #c1bab933 | |
rgb(193, 186, 185, 40%) | #c1bab94C | |
rgb(193, 186, 185, 60%) | #c1bab999 | |
rgb(193, 186, 185, 80%) | #c1bab9CC | |
rgb(193, 186, 185, 100%) | #c1bab9FF |
Saturated and desaturated colors of #c1bab9
HSL Code | Preview |
---|---|
hsl(7, 10%, 74%) | |
hsl(7, 20%, 74%) | |
hsl(7, 40%, 74%) | |
hsl(7, 60%, 74%) | |
hsl(7, 80%, 74%) | |
hsl(7, 100%, 74%) |
#c1bab9 Color Usage In CSS
body { color: #c1bab9; } p { color: rgb(193, 186, 185); } header { border-bottom:1px solid #c1bab9; }