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