HEX: #EF941C
RGB: (239,148,28)
#EF941C contains mainly red color. Web safe color of #EF941C is #FF9933 (or #F93).
#EF941C color RGB value is (239,148,28).
RGB: (239,148,28) (94%,58%,11%)
R 239 of 255 = 94%
G 148 of 255 = 58%
B 28 of 255 = 11%
R + G + B ~ 54%. #EF941C is middle color (not dark and not light).
R + G + B =
239 + 148 + 28 = 415 (100%)
R 239 of 415 ~ 57.59%
G 148 of 415 ~ 35.66%
B 28 of 415 ~ 6.75%
#EF941C color CMYK value is (0,38,88,6).
CMYK: (0,38,88,6) C0M38Y88K6 (0%,38%,88%,6%) (0.00/0.38/0.88/0.06)
EF | 94 | 1C | |
---|---|---|---|
RGB | 239 | 148 | 28 |
HSL | 34° | 86.83% | 52.35% |
HSB/HSV | 34° | 88.28% | 93.73% |
CMYK | 0.00% | 38.08% | 88.28% |
6.27% |
HEX | EF | 94 | 1C |
Decimal | 239 | 148 | 28 |
Binary | 11101111 | 10010100 | 11100 |
Octal | 357 | 224 | 34 |
Examples of css and html codes for elements with #EF941C color. Also use rgb(239,148,28) instead hex code.
.myTextColor { color: #EF941C; }
<p style="color:#EF941C">This sample text font color is #EF941C.</p>
This text font color is #EF941C.
.myBgColor { background-color: #EF941C; }
<div style="background-color:#EF941C">Inner text</div>
This div background color is #EF941C.
.myBorderColor { border: 1px solid #EF941C; }
<div style="border:3px solid #EF941C">Div</div>
This div border color is #EF941C.
.myOpacity80 { color: #EF941C; opacity: 0.8; }
<p style="color:#EF941C;opacity:0.8;">80%</p>
Text with #EF941C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF941C;}
<p style="text-shadow: 3px 3px 1px #EF941C">Text here.</p>
This text has shadow with #EF941C color.
.textShadow {text-shadow: 3px 3px 1px #EF941C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF941C, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF941C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF941C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF941C, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF941C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF941C; -webkit-box-shadow: 1px 1px 3px 2px #EF941C; box-shadow: 1px 1px 3px 2px #EF941C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF941C; -webkit-box-shadow: 1px 1px 3px 2px #EF941C; box-shadow:1px 1px 3px 2px #EF941C;">
Div content here</div>
This text has color #EF941C on black background.
This text has color #EF941C on white background.
This text has black color on #EF941C background.
This text has white color on #EF941C background.