HEX: #C47DD6
RGB: (196,125,214)
#C47DD6 contains mainly red and blue colors. Web safe color of #C47DD6 is #CC66CC (or #C6C).
#C47DD6 color RGB value is (196,125,214).
RGB: (196,125,214) (77%,49%,84%)
R 196 of 255 = 77%
G 125 of 255 = 49%
B 214 of 255 = 84%
R + G + B ~ 70%. #C47DD6 is quite light color.
R + G + B =
196 + 125 + 214 = 535 (100%)
R 196 of 535 ~ 36.64%
G 125 of 535 ~ 23.36%
B 214 of 535 ~ 40%
#C47DD6 color CMYK value is (8,42,0,16).
CMYK: (8,42,0,16) C8M42Y0K16 (8%,42%,0%,16%) (0.08/0.42/0.00/0.16)
C4 | 7D | D6 | |
---|---|---|---|
RGB | 196 | 125 | 214 |
HSL | 288° | 52.05% | 66.47% |
HSB/HSV | 288° | 41.59% | 83.92% |
CMYK | 8.41% | 41.59% | 0.00% |
16.08% |
HEX | C4 | 7D | D6 |
Decimal | 196 | 125 | 214 |
Binary | 11000100 | 1111101 | 11010110 |
Octal | 304 | 175 | 326 |
Examples of css and html codes for elements with #C47DD6 color. Also use rgb(196,125,214) instead hex code.
.myTextColor { color: #C47DD6; }
<p style="color:#C47DD6">This sample text font color is #C47DD6.</p>
This text font color is #C47DD6.
.myBgColor { background-color: #C47DD6; }
<div style="background-color:#C47DD6">Inner text</div>
This div background color is #C47DD6.
.myBorderColor { border: 1px solid #C47DD6; }
<div style="border:3px solid #C47DD6">Div</div>
This div border color is #C47DD6.
.myOpacity80 { color: #C47DD6; opacity: 0.8; }
<p style="color:#C47DD6;opacity:0.8;">80%</p>
Text with #C47DD6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C47DD6;}
<p style="text-shadow: 3px 3px 1px #C47DD6">Text here.</p>
This text has shadow with #C47DD6 color.
.textShadow {text-shadow: 3px 3px 1px #C47DD6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C47DD6, 5px 5px 20px red">Text here.</p>
This text has shadow with #C47DD6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C47DD6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C47DD6, Direction=45, Strength=4)">Text</p>
This text has shadow with #C47DD6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C47DD6; -webkit-box-shadow: 1px 1px 3px 2px #C47DD6; box-shadow: 1px 1px 3px 2px #C47DD6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C47DD6; -webkit-box-shadow: 1px 1px 3px 2px #C47DD6; box-shadow:1px 1px 3px 2px #C47DD6;">
Div content here</div>
This text has color #C47DD6 on black background.
This text has color #C47DD6 on white background.
This text has black color on #C47DD6 background.
This text has white color on #C47DD6 background.