HEX: #EE240B
RGB: (238,36,11)
#EE240B contains mainly red color. Web safe color of #EE240B is #FF3300 (or #F30).
#EE240B color RGB value is (238,36,11).
RGB: (238,36,11) (93%,14%,4%)
R 238 of 255 = 93%
G 36 of 255 = 14%
B 11 of 255 = 4%
R + G + B ~ 37%. #EE240B is quite dark color.
R + G + B =
238 + 36 + 11 = 285 (100%)
R 238 of 285 ~ 83.51%
G 36 of 285 ~ 12.63%
B 11 of 285 ~ 3.86%
#EE240B color CMYK value is (0,85,95,7).
CMYK: (0,85,95,7) C0M85Y95K7 (0%,85%,95%,7%) (0.00/0.85/0.95/0.07)
EE | 24 | 0B | |
---|---|---|---|
RGB | 238 | 36 | 11 |
HSL | 7° | 91.16% | 48.82% |
HSB/HSV | 7° | 95.38% | 93.33% |
CMYK | 0.00% | 84.87% | 95.38% |
6.67% |
HEX | EE | 24 | 0B |
Decimal | 238 | 36 | 11 |
Binary | 11101110 | 100100 | 1011 |
Octal | 356 | 44 | 13 |
Examples of css and html codes for elements with #EE240B color. Also use rgb(238,36,11) instead hex code.
.myTextColor { color: #EE240B; }
<p style="color:#EE240B">This sample text font color is #EE240B.</p>
This text font color is #EE240B.
.myBgColor { background-color: #EE240B; }
<div style="background-color:#EE240B">Inner text</div>
This div background color is #EE240B.
.myBorderColor { border: 1px solid #EE240B; }
<div style="border:3px solid #EE240B">Div</div>
This div border color is #EE240B.
.myOpacity80 { color: #EE240B; opacity: 0.8; }
<p style="color:#EE240B;opacity:0.8;">80%</p>
Text with #EE240B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EE240B;}
<p style="text-shadow: 3px 3px 1px #EE240B">Text here.</p>
This text has shadow with #EE240B color.
.textShadow {text-shadow: 3px 3px 1px #EE240B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EE240B, 5px 5px 20px red">Text here.</p>
This text has shadow with #EE240B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EE240B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EE240B, Direction=45, Strength=4)">Text</p>
This text has shadow with #EE240B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EE240B; -webkit-box-shadow: 1px 1px 3px 2px #EE240B; box-shadow: 1px 1px 3px 2px #EE240B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EE240B; -webkit-box-shadow: 1px 1px 3px 2px #EE240B; box-shadow:1px 1px 3px 2px #EE240B;">
Div content here</div>
This text has color #EE240B on black background.
This text has color #EE240B on white background.
This text has black color on #EE240B background.
This text has white color on #EE240B background.