HEX: #EF9B24
RGB: (239,155,36)
#EF9B24 contains mainly red color. Web safe color of #EF9B24 is #FF9933 (or #F93).
#EF9B24 color RGB value is (239,155,36).
RGB: (239,155,36) (94%,61%,14%)
R 239 of 255 = 94%
G 155 of 255 = 61%
B 36 of 255 = 14%
R + G + B ~ 56%. #EF9B24 is middle color (not dark and not light).
R + G + B =
239 + 155 + 36 = 430 (100%)
R 239 of 430 ~ 55.58%
G 155 of 430 ~ 36.05%
B 36 of 430 ~ 8.37%
#EF9B24 color CMYK value is (0,35,85,6).
CMYK: (0,35,85,6) C0M35Y85K6 (0%,35%,85%,6%) (0.00/0.35/0.85/0.06)
EF | 9B | 24 | |
---|---|---|---|
RGB | 239 | 155 | 36 |
HSL | 35° | 86.38% | 53.92% |
HSB/HSV | 35° | 84.94% | 93.73% |
CMYK | 0.00% | 35.15% | 84.94% |
6.27% |
HEX | EF | 9B | 24 |
Decimal | 239 | 155 | 36 |
Binary | 11101111 | 10011011 | 100100 |
Octal | 357 | 233 | 44 |
Examples of css and html codes for elements with #EF9B24 color. Also use rgb(239,155,36) instead hex code.
.myTextColor { color: #EF9B24; }
<p style="color:#EF9B24">This sample text font color is #EF9B24.</p>
This text font color is #EF9B24.
.myBgColor { background-color: #EF9B24; }
<div style="background-color:#EF9B24">Inner text</div>
This div background color is #EF9B24.
.myBorderColor { border: 1px solid #EF9B24; }
<div style="border:3px solid #EF9B24">Div</div>
This div border color is #EF9B24.
.myOpacity80 { color: #EF9B24; opacity: 0.8; }
<p style="color:#EF9B24;opacity:0.8;">80%</p>
Text with #EF9B24 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF9B24;}
<p style="text-shadow: 3px 3px 1px #EF9B24">Text here.</p>
This text has shadow with #EF9B24 color.
.textShadow {text-shadow: 3px 3px 1px #EF9B24, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF9B24, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF9B24 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF9B24, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF9B24, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF9B24 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF9B24; -webkit-box-shadow: 1px 1px 3px 2px #EF9B24; box-shadow: 1px 1px 3px 2px #EF9B24; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF9B24; -webkit-box-shadow: 1px 1px 3px 2px #EF9B24; box-shadow:1px 1px 3px 2px #EF9B24;">
Div content here</div>
This text has color #EF9B24 on black background.
This text has color #EF9B24 on white background.
This text has black color on #EF9B24 background.
This text has white color on #EF9B24 background.