HEX: #CC84C1
RGB: (204,132,193)
#CC84C1 contains mainly red and blue colors. Web safe color of #CC84C1 is #CC99CC (or #C9C).
#CC84C1 color RGB value is (204,132,193).
RGB: (204,132,193) (80%,52%,76%)
R 204 of 255 = 80%
G 132 of 255 = 52%
B 193 of 255 = 76%
R + G + B ~ 69%. #CC84C1 is quite light color.
R + G + B =
204 + 132 + 193 = 529 (100%)
R 204 of 529 ~ 38.56%
G 132 of 529 ~ 24.95%
B 193 of 529 ~ 36.48%
#CC84C1 color CMYK value is (0,35,5,20).
CMYK: (0,35,5,20) C0M35Y5K20 (0%,35%,5%,20%) (0.00/0.35/0.05/0.20)
CC | 84 | C1 | |
---|---|---|---|
RGB | 204 | 132 | 193 |
HSL | 309° | 41.38% | 65.88% |
HSB/HSV | 309° | 35.29% | 80.00% |
CMYK | 0.00% | 35.29% | 5.39% |
20.00% |
HEX | CC | 84 | C1 |
Decimal | 204 | 132 | 193 |
Binary | 11001100 | 10000100 | 11000001 |
Octal | 314 | 204 | 301 |
Examples of css and html codes for elements with #CC84C1 color. Also use rgb(204,132,193) instead hex code.
.myTextColor { color: #CC84C1; }
<p style="color:#CC84C1">This sample text font color is #CC84C1.</p>
This text font color is #CC84C1.
.myBgColor { background-color: #CC84C1; }
<div style="background-color:#CC84C1">Inner text</div>
This div background color is #CC84C1.
.myBorderColor { border: 1px solid #CC84C1; }
<div style="border:3px solid #CC84C1">Div</div>
This div border color is #CC84C1.
.myOpacity80 { color: #CC84C1; opacity: 0.8; }
<p style="color:#CC84C1;opacity:0.8;">80%</p>
Text with #CC84C1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CC84C1;}
<p style="text-shadow: 3px 3px 1px #CC84C1">Text here.</p>
This text has shadow with #CC84C1 color.
.textShadow {text-shadow: 3px 3px 1px #CC84C1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CC84C1, 5px 5px 20px red">Text here.</p>
This text has shadow with #CC84C1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CC84C1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CC84C1, Direction=45, Strength=4)">Text</p>
This text has shadow with #CC84C1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CC84C1; -webkit-box-shadow: 1px 1px 3px 2px #CC84C1; box-shadow: 1px 1px 3px 2px #CC84C1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CC84C1; -webkit-box-shadow: 1px 1px 3px 2px #CC84C1; box-shadow:1px 1px 3px 2px #CC84C1;">
Div content here</div>
This text has color #CC84C1 on black background.
This text has color #CC84C1 on white background.
This text has black color on #CC84C1 background.
This text has white color on #CC84C1 background.