HEX: #EFABBF
RGB: (239,171,191)
#EFABBF contains mainly red and blue colors. Web safe color of #EFABBF is #FF99CC (or #F9C).
#EFABBF color RGB value is (239,171,191).
RGB: (239,171,191) (94%,67%,75%)
R 239 of 255 = 94%
G 171 of 255 = 67%
B 191 of 255 = 75%
R + G + B ~ 79%. #EFABBF is quite light color.
R + G + B =
239 + 171 + 191 = 601 (100%)
R 239 of 601 ~ 39.77%
G 171 of 601 ~ 28.45%
B 191 of 601 ~ 31.78%
#EFABBF color CMYK value is (0,28,20,6).
CMYK: (0,28,20,6) C0M28Y20K6 (0%,28%,20%,6%) (0.00/0.28/0.20/0.06)
EF | AB | BF | |
---|---|---|---|
RGB | 239 | 171 | 191 |
HSL | 342° | 68.00% | 80.39% |
HSB/HSV | 342° | 28.45% | 93.73% |
CMYK | 0.00% | 28.45% | 20.08% |
6.27% |
HEX | EF | AB | BF |
Decimal | 239 | 171 | 191 |
Binary | 11101111 | 10101011 | 10111111 |
Octal | 357 | 253 | 277 |
Examples of css and html codes for elements with #EFABBF color. Also use rgb(239,171,191) instead hex code.
.myTextColor { color: #EFABBF; }
<p style="color:#EFABBF">This sample text font color is #EFABBF.</p>
This text font color is #EFABBF.
.myBgColor { background-color: #EFABBF; }
<div style="background-color:#EFABBF">Inner text</div>
This div background color is #EFABBF.
.myBorderColor { border: 1px solid #EFABBF; }
<div style="border:3px solid #EFABBF">Div</div>
This div border color is #EFABBF.
.myOpacity80 { color: #EFABBF; opacity: 0.8; }
<p style="color:#EFABBF;opacity:0.8;">80%</p>
Text with #EFABBF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFABBF;}
<p style="text-shadow: 3px 3px 1px #EFABBF">Text here.</p>
This text has shadow with #EFABBF color.
.textShadow {text-shadow: 3px 3px 1px #EFABBF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFABBF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFABBF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFABBF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFABBF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFABBF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFABBF; -webkit-box-shadow: 1px 1px 3px 2px #EFABBF; box-shadow: 1px 1px 3px 2px #EFABBF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFABBF; -webkit-box-shadow: 1px 1px 3px 2px #EFABBF; box-shadow:1px 1px 3px 2px #EFABBF;">
Div content here</div>
This text has color #EFABBF on black background.
This text has color #EFABBF on white background.
This text has black color on #EFABBF background.
This text has white color on #EFABBF background.