HEX: #EF8C8B
RGB: (239,140,139)
#EF8C8B contains mainly red color. Web safe color of #EF8C8B is #FF9999 (or #F99).
#EF8C8B color RGB value is (239,140,139).
RGB: (239,140,139) (94%,55%,55%)
R 239 of 255 = 94%
G 140 of 255 = 55%
B 139 of 255 = 55%
R + G + B ~ 68%. #EF8C8B is quite light color.
R + G + B =
239 + 140 + 139 = 518 (100%)
R 239 of 518 ~ 46.14%
G 140 of 518 ~ 27.03%
B 139 of 518 ~ 26.83%
#EF8C8B color CMYK value is (0,41,42,6).
CMYK: (0,41,42,6) C0M41Y42K6 (0%,41%,42%,6%) (0.00/0.41/0.42/0.06)
EF | 8C | 8B | |
---|---|---|---|
RGB | 239 | 140 | 139 |
HSL | 1° | 75.76% | 74.12% |
HSB/HSV | 1° | 41.84% | 93.73% |
CMYK | 0.00% | 41.42% | 41.84% |
6.27% |
HEX | EF | 8C | 8B |
Decimal | 239 | 140 | 139 |
Binary | 11101111 | 10001100 | 10001011 |
Octal | 357 | 214 | 213 |
Examples of css and html codes for elements with #EF8C8B color. Also use rgb(239,140,139) instead hex code.
.myTextColor { color: #EF8C8B; }
<p style="color:#EF8C8B">This sample text font color is #EF8C8B.</p>
This text font color is #EF8C8B.
.myBgColor { background-color: #EF8C8B; }
<div style="background-color:#EF8C8B">Inner text</div>
This div background color is #EF8C8B.
.myBorderColor { border: 1px solid #EF8C8B; }
<div style="border:3px solid #EF8C8B">Div</div>
This div border color is #EF8C8B.
.myOpacity80 { color: #EF8C8B; opacity: 0.8; }
<p style="color:#EF8C8B;opacity:0.8;">80%</p>
Text with #EF8C8B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF8C8B;}
<p style="text-shadow: 3px 3px 1px #EF8C8B">Text here.</p>
This text has shadow with #EF8C8B color.
.textShadow {text-shadow: 3px 3px 1px #EF8C8B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF8C8B, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF8C8B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF8C8B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF8C8B, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF8C8B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF8C8B; -webkit-box-shadow: 1px 1px 3px 2px #EF8C8B; box-shadow: 1px 1px 3px 2px #EF8C8B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF8C8B; -webkit-box-shadow: 1px 1px 3px 2px #EF8C8B; box-shadow:1px 1px 3px 2px #EF8C8B;">
Div content here</div>
This text has color #EF8C8B on black background.
This text has color #EF8C8B on white background.
This text has black color on #EF8C8B background.
This text has white color on #EF8C8B background.