HEX: #EF7C6E
RGB: (239,124,110)
#EF7C6E contains mainly red color. Web safe color of #EF7C6E is #FF6666 (or #F66).
#EF7C6E color RGB value is (239,124,110).
RGB: (239,124,110) (94%,49%,43%)
R 239 of 255 = 94%
G 124 of 255 = 49%
B 110 of 255 = 43%
R + G + B ~ 62%. #EF7C6E is quite light color.
R + G + B =
239 + 124 + 110 = 473 (100%)
R 239 of 473 ~ 50.53%
G 124 of 473 ~ 26.22%
B 110 of 473 ~ 23.26%
#EF7C6E color CMYK value is (0,48,54,6).
CMYK: (0,48,54,6) C0M48Y54K6 (0%,48%,54%,6%) (0.00/0.48/0.54/0.06)
EF | 7C | 6E | |
---|---|---|---|
RGB | 239 | 124 | 110 |
HSL | 7° | 80.12% | 68.43% |
HSB/HSV | 7° | 53.97% | 93.73% |
CMYK | 0.00% | 48.12% | 53.97% |
6.27% |
HEX | EF | 7C | 6E |
Decimal | 239 | 124 | 110 |
Binary | 11101111 | 1111100 | 1101110 |
Octal | 357 | 174 | 156 |
Examples of css and html codes for elements with #EF7C6E color. Also use rgb(239,124,110) instead hex code.
.myTextColor { color: #EF7C6E; }
<p style="color:#EF7C6E">This sample text font color is #EF7C6E.</p>
This text font color is #EF7C6E.
.myBgColor { background-color: #EF7C6E; }
<div style="background-color:#EF7C6E">Inner text</div>
This div background color is #EF7C6E.
.myBorderColor { border: 1px solid #EF7C6E; }
<div style="border:3px solid #EF7C6E">Div</div>
This div border color is #EF7C6E.
.myOpacity80 { color: #EF7C6E; opacity: 0.8; }
<p style="color:#EF7C6E;opacity:0.8;">80%</p>
Text with #EF7C6E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF7C6E;}
<p style="text-shadow: 3px 3px 1px #EF7C6E">Text here.</p>
This text has shadow with #EF7C6E color.
.textShadow {text-shadow: 3px 3px 1px #EF7C6E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF7C6E, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF7C6E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF7C6E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF7C6E, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF7C6E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF7C6E; -webkit-box-shadow: 1px 1px 3px 2px #EF7C6E; box-shadow: 1px 1px 3px 2px #EF7C6E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF7C6E; -webkit-box-shadow: 1px 1px 3px 2px #EF7C6E; box-shadow:1px 1px 3px 2px #EF7C6E;">
Div content here</div>
This text has color #EF7C6E on black background.
This text has color #EF7C6E on white background.
This text has black color on #EF7C6E background.
This text has white color on #EF7C6E background.