HEX: #EFB5BA
RGB: (239,181,186)
#EFB5BA contains red, green and blue colors in about the same proportion. Web safe color of #EFB5BA is #FFCCCC (or #FCC).
#EFB5BA color RGB value is (239,181,186).
RGB: (239,181,186) (94%,71%,73%)
R 239 of 255 = 94%
G 181 of 255 = 71%
B 186 of 255 = 73%
R + G + B ~ 79%. #EFB5BA is quite light color.
R + G + B =
239 + 181 + 186 = 606 (100%)
R 239 of 606 ~ 39.44%
G 181 of 606 ~ 29.87%
B 186 of 606 ~ 30.69%
#EFB5BA color CMYK value is (0,24,22,6).
CMYK: (0,24,22,6) C0M24Y22K6 (0%,24%,22%,6%) (0.00/0.24/0.22/0.06)
EF | B5 | BA | |
---|---|---|---|
RGB | 239 | 181 | 186 |
HSL | 355° | 64.44% | 82.35% |
HSB/HSV | 355° | 24.27% | 93.73% |
CMYK | 0.00% | 24.27% | 22.18% |
6.27% |
HEX | EF | B5 | BA |
Decimal | 239 | 181 | 186 |
Binary | 11101111 | 10110101 | 10111010 |
Octal | 357 | 265 | 272 |
Examples of css and html codes for elements with #EFB5BA color. Also use rgb(239,181,186) instead hex code.
.myTextColor { color: #EFB5BA; }
<p style="color:#EFB5BA">This sample text font color is #EFB5BA.</p>
This text font color is #EFB5BA.
.myBgColor { background-color: #EFB5BA; }
<div style="background-color:#EFB5BA">Inner text</div>
This div background color is #EFB5BA.
.myBorderColor { border: 1px solid #EFB5BA; }
<div style="border:3px solid #EFB5BA">Div</div>
This div border color is #EFB5BA.
.myOpacity80 { color: #EFB5BA; opacity: 0.8; }
<p style="color:#EFB5BA;opacity:0.8;">80%</p>
Text with #EFB5BA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFB5BA;}
<p style="text-shadow: 3px 3px 1px #EFB5BA">Text here.</p>
This text has shadow with #EFB5BA color.
.textShadow {text-shadow: 3px 3px 1px #EFB5BA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFB5BA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFB5BA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFB5BA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFB5BA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFB5BA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFB5BA; -webkit-box-shadow: 1px 1px 3px 2px #EFB5BA; box-shadow: 1px 1px 3px 2px #EFB5BA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFB5BA; -webkit-box-shadow: 1px 1px 3px 2px #EFB5BA; box-shadow:1px 1px 3px 2px #EFB5BA;">
Div content here</div>
This text has color #EFB5BA on black background.
This text has color #EFB5BA on white background.
This text has black color on #EFB5BA background.
This text has white color on #EFB5BA background.