HEX: #EEB4CC
RGB: (238,180,204)
#EEB4CC contains red, green and blue colors in about the same proportion. Web safe color of #EEB4CC is #FFCCCC (or #FCC).
#EEB4CC color RGB value is (238,180,204).
RGB: (238,180,204) (93%,71%,80%)
R 238 of 255 = 93%
G 180 of 255 = 71%
B 204 of 255 = 80%
R + G + B ~ 81%. #EEB4CC is quite light color.
R + G + B =
238 + 180 + 204 = 622 (100%)
R 238 of 622 ~ 38.26%
G 180 of 622 ~ 28.94%
B 204 of 622 ~ 32.8%
#EEB4CC color CMYK value is (0,24,14,7).
CMYK: (0,24,14,7) C0M24Y14K7 (0%,24%,14%,7%) (0.00/0.24/0.14/0.07)
EE | B4 | CC | |
---|---|---|---|
RGB | 238 | 180 | 204 |
HSL | 335° | 63.04% | 81.96% |
HSB/HSV | 335° | 24.37% | 93.33% |
CMYK | 0.00% | 24.37% | 14.29% |
6.67% |
HEX | EE | B4 | CC |
Decimal | 238 | 180 | 204 |
Binary | 11101110 | 10110100 | 11001100 |
Octal | 356 | 264 | 314 |
Examples of css and html codes for elements with #EEB4CC color. Also use rgb(238,180,204) instead hex code.
.myTextColor { color: #EEB4CC; }
<p style="color:#EEB4CC">This sample text font color is #EEB4CC.</p>
This text font color is #EEB4CC.
.myBgColor { background-color: #EEB4CC; }
<div style="background-color:#EEB4CC">Inner text</div>
This div background color is #EEB4CC.
.myBorderColor { border: 1px solid #EEB4CC; }
<div style="border:3px solid #EEB4CC">Div</div>
This div border color is #EEB4CC.
.myOpacity80 { color: #EEB4CC; opacity: 0.8; }
<p style="color:#EEB4CC;opacity:0.8;">80%</p>
Text with #EEB4CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEB4CC;}
<p style="text-shadow: 3px 3px 1px #EEB4CC">Text here.</p>
This text has shadow with #EEB4CC color.
.textShadow {text-shadow: 3px 3px 1px #EEB4CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEB4CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEB4CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEB4CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEB4CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEB4CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEB4CC; -webkit-box-shadow: 1px 1px 3px 2px #EEB4CC; box-shadow: 1px 1px 3px 2px #EEB4CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEB4CC; -webkit-box-shadow: 1px 1px 3px 2px #EEB4CC; box-shadow:1px 1px 3px 2px #EEB4CC;">
Div content here</div>
This text has color #EEB4CC on black background.
This text has color #EEB4CC on white background.
This text has black color on #EEB4CC background.
This text has white color on #EEB4CC background.