HEX: #EE991B
RGB: (238,153,27)
#EE991B contains mainly red color. Web safe color of #EE991B is #FF9933 (or #F93).
#EE991B color RGB value is (238,153,27).
RGB: (238,153,27) (93%,60%,11%)
R 238 of 255 = 93%
G 153 of 255 = 60%
B 27 of 255 = 11%
R + G + B ~ 55%. #EE991B is middle color (not dark and not light).
R + G + B =
238 + 153 + 27 = 418 (100%)
R 238 of 418 ~ 56.94%
G 153 of 418 ~ 36.6%
B 27 of 418 ~ 6.46%
#EE991B color CMYK value is (0,36,89,7).
CMYK: (0,36,89,7) C0M36Y89K7 (0%,36%,89%,7%) (0.00/0.36/0.89/0.07)
EE | 99 | 1B | |
---|---|---|---|
RGB | 238 | 153 | 27 |
HSL | 36° | 86.12% | 51.96% |
HSB/HSV | 36° | 88.66% | 93.33% |
CMYK | 0.00% | 35.71% | 88.66% |
6.67% |
HEX | EE | 99 | 1B |
Decimal | 238 | 153 | 27 |
Binary | 11101110 | 10011001 | 11011 |
Octal | 356 | 231 | 33 |
Examples of css and html codes for elements with #EE991B color. Also use rgb(238,153,27) instead hex code.
.myTextColor { color: #EE991B; }
<p style="color:#EE991B">This sample text font color is #EE991B.</p>
This text font color is #EE991B.
.myBgColor { background-color: #EE991B; }
<div style="background-color:#EE991B">Inner text</div>
This div background color is #EE991B.
.myBorderColor { border: 1px solid #EE991B; }
<div style="border:3px solid #EE991B">Div</div>
This div border color is #EE991B.
.myOpacity80 { color: #EE991B; opacity: 0.8; }
<p style="color:#EE991B;opacity:0.8;">80%</p>
Text with #EE991B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EE991B;}
<p style="text-shadow: 3px 3px 1px #EE991B">Text here.</p>
This text has shadow with #EE991B color.
.textShadow {text-shadow: 3px 3px 1px #EE991B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EE991B, 5px 5px 20px red">Text here.</p>
This text has shadow with #EE991B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EE991B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EE991B, Direction=45, Strength=4)">Text</p>
This text has shadow with #EE991B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EE991B; -webkit-box-shadow: 1px 1px 3px 2px #EE991B; box-shadow: 1px 1px 3px 2px #EE991B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EE991B; -webkit-box-shadow: 1px 1px 3px 2px #EE991B; box-shadow:1px 1px 3px 2px #EE991B;">
Div content here</div>
This text has color #EE991B on black background.
This text has color #EE991B on white background.
This text has black color on #EE991B background.
This text has white color on #EE991B background.