HEX: #EF8C6E
RGB: (239,140,110)
#EF8C6E contains mainly red color. Web safe color of #EF8C6E is #FF9966 (or #F96).
#EF8C6E color RGB value is (239,140,110).
RGB: (239,140,110) (94%,55%,43%)
R 239 of 255 = 94%
G 140 of 255 = 55%
B 110 of 255 = 43%
R + G + B ~ 64%. #EF8C6E is quite light color.
R + G + B =
239 + 140 + 110 = 489 (100%)
R 239 of 489 ~ 48.88%
G 140 of 489 ~ 28.63%
B 110 of 489 ~ 22.49%
#EF8C6E color CMYK value is (0,41,54,6).
CMYK: (0,41,54,6) C0M41Y54K6 (0%,41%,54%,6%) (0.00/0.41/0.54/0.06)
EF | 8C | 6E | |
---|---|---|---|
RGB | 239 | 140 | 110 |
HSL | 14° | 80.12% | 68.43% |
HSB/HSV | 14° | 53.97% | 93.73% |
CMYK | 0.00% | 41.42% | 53.97% |
6.27% |
HEX | EF | 8C | 6E |
Decimal | 239 | 140 | 110 |
Binary | 11101111 | 10001100 | 1101110 |
Octal | 357 | 214 | 156 |
Examples of css and html codes for elements with #EF8C6E color. Also use rgb(239,140,110) instead hex code.
.myTextColor { color: #EF8C6E; }
<p style="color:#EF8C6E">This sample text font color is #EF8C6E.</p>
This text font color is #EF8C6E.
.myBgColor { background-color: #EF8C6E; }
<div style="background-color:#EF8C6E">Inner text</div>
This div background color is #EF8C6E.
.myBorderColor { border: 1px solid #EF8C6E; }
<div style="border:3px solid #EF8C6E">Div</div>
This div border color is #EF8C6E.
.myOpacity80 { color: #EF8C6E; opacity: 0.8; }
<p style="color:#EF8C6E;opacity:0.8;">80%</p>
Text with #EF8C6E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF8C6E;}
<p style="text-shadow: 3px 3px 1px #EF8C6E">Text here.</p>
This text has shadow with #EF8C6E color.
.textShadow {text-shadow: 3px 3px 1px #EF8C6E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF8C6E, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF8C6E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF8C6E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF8C6E, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF8C6E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF8C6E; -webkit-box-shadow: 1px 1px 3px 2px #EF8C6E; box-shadow: 1px 1px 3px 2px #EF8C6E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF8C6E; -webkit-box-shadow: 1px 1px 3px 2px #EF8C6E; box-shadow:1px 1px 3px 2px #EF8C6E;">
Div content here</div>
This text has color #EF8C6E on black background.
This text has color #EF8C6E on white background.
This text has black color on #EF8C6E background.
This text has white color on #EF8C6E background.