#cc3171 hex color information.
RGB value of #cc3171 is (204,49,113)
Change page background color to #cc3171
| Reset
| RGB | 204 | 49 | 113 |
|---|---|---|---|
| HSL | 0.93 | 0.61 | 0.50 |
| HSV | 335° | 76° | 80° |
| CMYK | 0.00 | 0.76 | 0.45 0.20 |
| XYZ | 28.9808 | 16.2262 | 17.2273 |
| Yxy | 16.2262 | 0.4642 | 0.2599 |
| Hunter Lab | 40.2818 | 57.9291 | 2.8407 |
| CIE-Lab | 47.2699 | 63.8178 | 0.9138 |
#cc3171 hex color red value is 204, green value is 49 and the blue value of its RGB is 49. Cylindrical-coordinate representations (also known as HSL) of color #cc3171 hue: 0.93 , saturation: 0.61 and the lightness value of cc3171 is 0.50.
The process color (four color CMYK) of #cc3171 hex color is 0.00, 0.76, 0.45, 0.20. Web safe color of #cc3171 is #cc3366
Color #cc3171 contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11001100 | 00110001 | 01110001 |
| Octal | 314 | 61 | 161 |
| Decimal | 204 | 49 | 113 |
| Hexadecimal | CC | 31 | 71 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#cc3171; }
.myforecolor {color:#cc3171; }
.mybordercolor {border:3px solid #cc3171; }
This sample text font color is #cc3171
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#cc3171">Text here</p>
This div background color is #cc3171
<div style="background-color:#cc3171">
Div content here</div>
This div border color is #cc3171
<div style="border:3px solid #cc3171">
Div here</div>
| #cc3171 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(204,49,113, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #cc3171;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #cc3171;
-webkit-box-shadow: 1px 1px 3px 2px #cc3171;
box-shadow: 1px 1px 3px 2px #cc3171;
}
<p style="text-shadow: 4px 4px 2px rgba(204,49,113, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #cc3171">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #cc3171
<div style="-moz-box-shadow: 1px 1px 3px 2px #cc3171; -webkit-box-shadow: 1px 1px 3px 2px #cc3171; box-shadow: 1px 1px 3px 2px #cc3171;">
Div content here</div>