HEX: #EE7FBC
RGB: (238,127,188)
#EE7FBC contains mainly red and blue colors. Web safe color of #EE7FBC is #FF66CC (or #F6C).
#EE7FBC color RGB value is (238,127,188).
RGB: (238,127,188) (93%,50%,74%)
R 238 of 255 = 93%
G 127 of 255 = 50%
B 188 of 255 = 74%
R + G + B ~ 72%. #EE7FBC is quite light color.
R + G + B =
238 + 127 + 188 = 553 (100%)
R 238 of 553 ~ 43.04%
G 127 of 553 ~ 22.97%
B 188 of 553 ~ 34%
#EE7FBC color CMYK value is (0,47,21,7).
CMYK: (0,47,21,7) C0M47Y21K7 (0%,47%,21%,7%) (0.00/0.47/0.21/0.07)
EE | 7F | BC | |
---|---|---|---|
RGB | 238 | 127 | 188 |
HSL | 327° | 76.55% | 71.57% |
HSB/HSV | 327° | 46.64% | 93.33% |
CMYK | 0.00% | 46.64% | 21.01% |
6.67% |
HEX | EE | 7F | BC |
Decimal | 238 | 127 | 188 |
Binary | 11101110 | 1111111 | 10111100 |
Octal | 356 | 177 | 274 |
Examples of css and html codes for elements with #EE7FBC color. Also use rgb(238,127,188) instead hex code.
.myTextColor { color: #EE7FBC; }
<p style="color:#EE7FBC">This sample text font color is #EE7FBC.</p>
This text font color is #EE7FBC.
.myBgColor { background-color: #EE7FBC; }
<div style="background-color:#EE7FBC">Inner text</div>
This div background color is #EE7FBC.
.myBorderColor { border: 1px solid #EE7FBC; }
<div style="border:3px solid #EE7FBC">Div</div>
This div border color is #EE7FBC.
.myOpacity80 { color: #EE7FBC; opacity: 0.8; }
<p style="color:#EE7FBC;opacity:0.8;">80%</p>
Text with #EE7FBC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EE7FBC;}
<p style="text-shadow: 3px 3px 1px #EE7FBC">Text here.</p>
This text has shadow with #EE7FBC color.
.textShadow {text-shadow: 3px 3px 1px #EE7FBC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EE7FBC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EE7FBC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EE7FBC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EE7FBC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EE7FBC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EE7FBC; -webkit-box-shadow: 1px 1px 3px 2px #EE7FBC; box-shadow: 1px 1px 3px 2px #EE7FBC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EE7FBC; -webkit-box-shadow: 1px 1px 3px 2px #EE7FBC; box-shadow:1px 1px 3px 2px #EE7FBC;">
Div content here</div>
This text has color #EE7FBC on black background.
This text has color #EE7FBC on white background.
This text has black color on #EE7FBC background.
This text has white color on #EE7FBC background.