HEX: #EE77AE
RGB: (238,119,174)
#EE77AE contains mainly red color. Web safe color of #EE77AE is #FF6699 (or #F69).
#EE77AE color RGB value is (238,119,174).
RGB: (238,119,174) (93%,47%,68%)
R 238 of 255 = 93%
G 119 of 255 = 47%
B 174 of 255 = 68%
R + G + B ~ 69%. #EE77AE is quite light color.
R + G + B =
238 + 119 + 174 = 531 (100%)
R 238 of 531 ~ 44.82%
G 119 of 531 ~ 22.41%
B 174 of 531 ~ 32.77%
#EE77AE color CMYK value is (0,50,27,7).
CMYK: (0,50,27,7) C0M50Y27K7 (0%,50%,27%,7%) (0.00/0.50/0.27/0.07)
EE | 77 | AE | |
---|---|---|---|
RGB | 238 | 119 | 174 |
HSL | 332° | 77.78% | 70.00% |
HSB/HSV | 332° | 50.00% | 93.33% |
CMYK | 0.00% | 50.00% | 26.89% |
6.67% |
HEX | EE | 77 | AE |
Decimal | 238 | 119 | 174 |
Binary | 11101110 | 1110111 | 10101110 |
Octal | 356 | 167 | 256 |
Examples of css and html codes for elements with #EE77AE color. Also use rgb(238,119,174) instead hex code.
.myTextColor { color: #EE77AE; }
<p style="color:#EE77AE">This sample text font color is #EE77AE.</p>
This text font color is #EE77AE.
.myBgColor { background-color: #EE77AE; }
<div style="background-color:#EE77AE">Inner text</div>
This div background color is #EE77AE.
.myBorderColor { border: 1px solid #EE77AE; }
<div style="border:3px solid #EE77AE">Div</div>
This div border color is #EE77AE.
.myOpacity80 { color: #EE77AE; opacity: 0.8; }
<p style="color:#EE77AE;opacity:0.8;">80%</p>
Text with #EE77AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EE77AE;}
<p style="text-shadow: 3px 3px 1px #EE77AE">Text here.</p>
This text has shadow with #EE77AE color.
.textShadow {text-shadow: 3px 3px 1px #EE77AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EE77AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EE77AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EE77AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EE77AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EE77AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EE77AE; -webkit-box-shadow: 1px 1px 3px 2px #EE77AE; box-shadow: 1px 1px 3px 2px #EE77AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EE77AE; -webkit-box-shadow: 1px 1px 3px 2px #EE77AE; box-shadow:1px 1px 3px 2px #EE77AE;">
Div content here</div>
This text has color #EE77AE on black background.
This text has color #EE77AE on white background.
This text has black color on #EE77AE background.
This text has white color on #EE77AE background.