HEX: #CC529B
RGB: (204,82,155)
#CC529B contains mainly red and blue colors. Web safe color of #CC529B is #CC6699 (or #C69).
#CC529B color RGB value is (204,82,155).
RGB: (204,82,155) (80%,32%,61%)
R 204 of 255 = 80%
G 82 of 255 = 32%
B 155 of 255 = 61%
R + G + B ~ 58%. #CC529B is middle color (not dark and not light).
R + G + B =
204 + 82 + 155 = 441 (100%)
R 204 of 441 ~ 46.26%
G 82 of 441 ~ 18.59%
B 155 of 441 ~ 35.15%
#CC529B color CMYK value is (0,60,24,20).
CMYK: (0,60,24,20) C0M60Y24K20 (0%,60%,24%,20%) (0.00/0.60/0.24/0.20)
CC | 52 | 9B | |
---|---|---|---|
RGB | 204 | 82 | 155 |
HSL | 324° | 54.46% | 56.08% |
HSB/HSV | 324° | 59.80% | 80.00% |
CMYK | 0.00% | 59.80% | 24.02% |
20.00% |
HEX | CC | 52 | 9B |
Decimal | 204 | 82 | 155 |
Binary | 11001100 | 1010010 | 10011011 |
Octal | 314 | 122 | 233 |
Examples of css and html codes for elements with #CC529B color. Also use rgb(204,82,155) instead hex code.
.myTextColor { color: #CC529B; }
<p style="color:#CC529B">This sample text font color is #CC529B.</p>
This text font color is #CC529B.
.myBgColor { background-color: #CC529B; }
<div style="background-color:#CC529B">Inner text</div>
This div background color is #CC529B.
.myBorderColor { border: 1px solid #CC529B; }
<div style="border:3px solid #CC529B">Div</div>
This div border color is #CC529B.
.myOpacity80 { color: #CC529B; opacity: 0.8; }
<p style="color:#CC529B;opacity:0.8;">80%</p>
Text with #CC529B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CC529B;}
<p style="text-shadow: 3px 3px 1px #CC529B">Text here.</p>
This text has shadow with #CC529B color.
.textShadow {text-shadow: 3px 3px 1px #CC529B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CC529B, 5px 5px 20px red">Text here.</p>
This text has shadow with #CC529B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CC529B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CC529B, Direction=45, Strength=4)">Text</p>
This text has shadow with #CC529B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CC529B; -webkit-box-shadow: 1px 1px 3px 2px #CC529B; box-shadow: 1px 1px 3px 2px #CC529B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CC529B; -webkit-box-shadow: 1px 1px 3px 2px #CC529B; box-shadow:1px 1px 3px 2px #CC529B;">
Div content here</div>
This text has color #CC529B on black background.
This text has color #CC529B on white background.
This text has black color on #CC529B background.
This text has white color on #CC529B background.