#c1088c Color
Color Codes | |
---|---|
Hex Code | #c1088c |
RGB Code | rgb(193, 08, 140) |
HSL Code | hsl(317, 92%, 39%) |
#c1088c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(193, 08, 140); }
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(317, 92%, 39%); }
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 #c1088c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(193, 08, 140, 10%) | #c1088c1a | |
rgb(193, 08, 140, 20%) | #c1088c33 | |
rgb(193, 08, 140, 40%) | #c1088c4C | |
rgb(193, 08, 140, 60%) | #c1088c99 | |
rgb(193, 08, 140, 80%) | #c1088cCC | |
rgb(193, 08, 140, 100%) | #c1088cFF |
Saturated and desaturated colors of #c1088c
HSL Code | Preview |
---|---|
hsl(317, 10%, 39%) | |
hsl(317, 20%, 39%) | |
hsl(317, 40%, 39%) | |
hsl(317, 60%, 39%) | |
hsl(317, 80%, 39%) | |
hsl(317, 100%, 39%) |
#c1088c Color Usage In CSS
body { color: #c1088c; } p { color: rgb(193, 08, 140); } header { border-bottom:1px solid #c1088c; }