HEX: #C47FE6
RGB: (196,127,230)
#C47FE6 contains mainly red and blue colors. Web safe color of #C47FE6 is #CC66CC (or #C6C).
#C47FE6 color RGB value is (196,127,230).
RGB: (196,127,230) (77%,50%,90%)
R 196 of 255 = 77%
G 127 of 255 = 50%
B 230 of 255 = 90%
R + G + B ~ 72%. #C47FE6 is quite light color.
R + G + B =
196 + 127 + 230 = 553 (100%)
R 196 of 553 ~ 35.44%
G 127 of 553 ~ 22.97%
B 230 of 553 ~ 41.59%
#C47FE6 color CMYK value is (15,45,0,10).
CMYK: (15,45,0,10) C15M45Y0K10 (15%,45%,0%,10%) (0.15/0.45/0.00/0.10)
C4 | 7F | E6 | |
---|---|---|---|
RGB | 196 | 127 | 230 |
HSL | 280° | 67.32% | 70.00% |
HSB/HSV | 280° | 44.78% | 90.20% |
CMYK | 14.78% | 44.78% | 0.00% |
9.80% |
HEX | C4 | 7F | E6 |
Decimal | 196 | 127 | 230 |
Binary | 11000100 | 1111111 | 11100110 |
Octal | 304 | 177 | 346 |
Examples of css and html codes for elements with #C47FE6 color. Also use rgb(196,127,230) instead hex code.
.myTextColor { color: #C47FE6; }
<p style="color:#C47FE6">This sample text font color is #C47FE6.</p>
This text font color is #C47FE6.
.myBgColor { background-color: #C47FE6; }
<div style="background-color:#C47FE6">Inner text</div>
This div background color is #C47FE6.
.myBorderColor { border: 1px solid #C47FE6; }
<div style="border:3px solid #C47FE6">Div</div>
This div border color is #C47FE6.
.myOpacity80 { color: #C47FE6; opacity: 0.8; }
<p style="color:#C47FE6;opacity:0.8;">80%</p>
Text with #C47FE6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C47FE6;}
<p style="text-shadow: 3px 3px 1px #C47FE6">Text here.</p>
This text has shadow with #C47FE6 color.
.textShadow {text-shadow: 3px 3px 1px #C47FE6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C47FE6, 5px 5px 20px red">Text here.</p>
This text has shadow with #C47FE6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C47FE6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C47FE6, Direction=45, Strength=4)">Text</p>
This text has shadow with #C47FE6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C47FE6; -webkit-box-shadow: 1px 1px 3px 2px #C47FE6; box-shadow: 1px 1px 3px 2px #C47FE6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C47FE6; -webkit-box-shadow: 1px 1px 3px 2px #C47FE6; box-shadow:1px 1px 3px 2px #C47FE6;">
Div content here</div>
This text has color #C47FE6 on black background.
This text has color #C47FE6 on white background.
This text has black color on #C47FE6 background.
This text has white color on #C47FE6 background.