HEX: #EFBBB9
RGB: (239,187,185)
#EFBBB9 contains red, green and blue colors in about the same proportion. Web safe color of #EFBBB9 is #FFCCCC (or #FCC).
#EFBBB9 color RGB value is (239,187,185).
RGB: (239,187,185) (94%,73%,73%)
R 239 of 255 = 94%
G 187 of 255 = 73%
B 185 of 255 = 73%
R + G + B ~ 80%. #EFBBB9 is quite light color.
R + G + B =
239 + 187 + 185 = 611 (100%)
R 239 of 611 ~ 39.12%
G 187 of 611 ~ 30.61%
B 185 of 611 ~ 30.28%
#EFBBB9 color CMYK value is (0,22,23,6).
CMYK: (0,22,23,6) C0M22Y23K6 (0%,22%,23%,6%) (0.00/0.22/0.23/0.06)
EF | BB | B9 | |
---|---|---|---|
RGB | 239 | 187 | 185 |
HSL | 2° | 62.79% | 83.14% |
HSB/HSV | 2° | 22.59% | 93.73% |
CMYK | 0.00% | 21.76% | 22.59% |
6.27% |
HEX | EF | BB | B9 |
Decimal | 239 | 187 | 185 |
Binary | 11101111 | 10111011 | 10111001 |
Octal | 357 | 273 | 271 |
Examples of css and html codes for elements with #EFBBB9 color. Also use rgb(239,187,185) instead hex code.
.myTextColor { color: #EFBBB9; }
<p style="color:#EFBBB9">This sample text font color is #EFBBB9.</p>
This text font color is #EFBBB9.
.myBgColor { background-color: #EFBBB9; }
<div style="background-color:#EFBBB9">Inner text</div>
This div background color is #EFBBB9.
.myBorderColor { border: 1px solid #EFBBB9; }
<div style="border:3px solid #EFBBB9">Div</div>
This div border color is #EFBBB9.
.myOpacity80 { color: #EFBBB9; opacity: 0.8; }
<p style="color:#EFBBB9;opacity:0.8;">80%</p>
Text with #EFBBB9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFBBB9;}
<p style="text-shadow: 3px 3px 1px #EFBBB9">Text here.</p>
This text has shadow with #EFBBB9 color.
.textShadow {text-shadow: 3px 3px 1px #EFBBB9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFBBB9, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFBBB9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFBBB9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFBBB9, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFBBB9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFBBB9; -webkit-box-shadow: 1px 1px 3px 2px #EFBBB9; box-shadow: 1px 1px 3px 2px #EFBBB9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFBBB9; -webkit-box-shadow: 1px 1px 3px 2px #EFBBB9; box-shadow:1px 1px 3px 2px #EFBBB9;">
Div content here</div>
This text has color #EFBBB9 on black background.
This text has color #EFBBB9 on white background.
This text has black color on #EFBBB9 background.
This text has white color on #EFBBB9 background.