HEX: #E76FCE
RGB: (231,111,206)
#E76FCE contains mainly red and blue colors. Web safe color of #E76FCE is #FF66CC (or #F6C).
#E76FCE color RGB value is (231,111,206).
RGB: (231,111,206) (91%,44%,81%)
R 231 of 255 = 91%
G 111 of 255 = 44%
B 206 of 255 = 81%
R + G + B ~ 72%. #E76FCE is quite light color.
R + G + B =
231 + 111 + 206 = 548 (100%)
R 231 of 548 ~ 42.15%
G 111 of 548 ~ 20.26%
B 206 of 548 ~ 37.59%
#E76FCE color CMYK value is (0,52,11,9).
CMYK: (0,52,11,9) C0M52Y11K9 (0%,52%,11%,9%) (0.00/0.52/0.11/0.09)
E7 | 6F | CE | |
---|---|---|---|
RGB | 231 | 111 | 206 |
HSL | 313° | 71.43% | 67.06% |
HSB/HSV | 313° | 51.95% | 90.59% |
CMYK | 0.00% | 51.95% | 10.82% |
9.41% |
HEX | E7 | 6F | CE |
Decimal | 231 | 111 | 206 |
Binary | 11100111 | 1101111 | 11001110 |
Octal | 347 | 157 | 316 |
Examples of css and html codes for elements with #E76FCE color. Also use rgb(231,111,206) instead hex code.
.myTextColor { color: #E76FCE; }
<p style="color:#E76FCE">This sample text font color is #E76FCE.</p>
This text font color is #E76FCE.
.myBgColor { background-color: #E76FCE; }
<div style="background-color:#E76FCE">Inner text</div>
This div background color is #E76FCE.
.myBorderColor { border: 1px solid #E76FCE; }
<div style="border:3px solid #E76FCE">Div</div>
This div border color is #E76FCE.
.myOpacity80 { color: #E76FCE; opacity: 0.8; }
<p style="color:#E76FCE;opacity:0.8;">80%</p>
Text with #E76FCE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E76FCE;}
<p style="text-shadow: 3px 3px 1px #E76FCE">Text here.</p>
This text has shadow with #E76FCE color.
.textShadow {text-shadow: 3px 3px 1px #E76FCE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E76FCE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E76FCE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E76FCE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E76FCE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E76FCE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E76FCE; -webkit-box-shadow: 1px 1px 3px 2px #E76FCE; box-shadow: 1px 1px 3px 2px #E76FCE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E76FCE; -webkit-box-shadow: 1px 1px 3px 2px #E76FCE; box-shadow:1px 1px 3px 2px #E76FCE;">
Div content here</div>
This text has color #E76FCE on black background.
This text has color #E76FCE on white background.
This text has black color on #E76FCE background.
This text has white color on #E76FCE background.