HEX: #EF993E
RGB: (239,153,62)
#EF993E contains mainly red color. Web safe color of #EF993E is #FF9933 (or #F93).
#EF993E color RGB value is (239,153,62).
RGB: (239,153,62) (94%,60%,24%)
R 239 of 255 = 94%
G 153 of 255 = 60%
B 62 of 255 = 24%
R + G + B ~ 59%. #EF993E is middle color (not dark and not light).
R + G + B =
239 + 153 + 62 = 454 (100%)
R 239 of 454 ~ 52.64%
G 153 of 454 ~ 33.7%
B 62 of 454 ~ 13.66%
#EF993E color CMYK value is (0,36,74,6).
CMYK: (0,36,74,6) C0M36Y74K6 (0%,36%,74%,6%) (0.00/0.36/0.74/0.06)
EF | 99 | 3E | |
---|---|---|---|
RGB | 239 | 153 | 62 |
HSL | 31° | 84.69% | 59.02% |
HSB/HSV | 31° | 74.06% | 93.73% |
CMYK | 0.00% | 35.98% | 74.06% |
6.27% |
HEX | EF | 99 | 3E |
Decimal | 239 | 153 | 62 |
Binary | 11101111 | 10011001 | 111110 |
Octal | 357 | 231 | 76 |
Examples of css and html codes for elements with #EF993E color. Also use rgb(239,153,62) instead hex code.
.myTextColor { color: #EF993E; }
<p style="color:#EF993E">This sample text font color is #EF993E.</p>
This text font color is #EF993E.
.myBgColor { background-color: #EF993E; }
<div style="background-color:#EF993E">Inner text</div>
This div background color is #EF993E.
.myBorderColor { border: 1px solid #EF993E; }
<div style="border:3px solid #EF993E">Div</div>
This div border color is #EF993E.
.myOpacity80 { color: #EF993E; opacity: 0.8; }
<p style="color:#EF993E;opacity:0.8;">80%</p>
Text with #EF993E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF993E;}
<p style="text-shadow: 3px 3px 1px #EF993E">Text here.</p>
This text has shadow with #EF993E color.
.textShadow {text-shadow: 3px 3px 1px #EF993E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF993E, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF993E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF993E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF993E, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF993E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF993E; -webkit-box-shadow: 1px 1px 3px 2px #EF993E; box-shadow: 1px 1px 3px 2px #EF993E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF993E; -webkit-box-shadow: 1px 1px 3px 2px #EF993E; box-shadow:1px 1px 3px 2px #EF993E;">
Div content here</div>
This text has color #EF993E on black background.
This text has color #EF993E on white background.
This text has black color on #EF993E background.
This text has white color on #EF993E background.