HEX: #E19514
RGB: (225,149,20)
#E19514 contains mainly red color. Web safe color of #E19514 is #CC9900 (or #C90).
#E19514 color RGB value is (225,149,20).
RGB: (225,149,20) (88%,58%,8%)
R 225 of 255 = 88%
G 149 of 255 = 58%
B 20 of 255 = 8%
R + G + B ~ 51%. #E19514 is middle color (not dark and not light).
R + G + B =
225 + 149 + 20 = 394 (100%)
R 225 of 394 ~ 57.11%
G 149 of 394 ~ 37.82%
B 20 of 394 ~ 5.08%
#E19514 color CMYK value is (0,34,91,12).
CMYK: (0,34,91,12) C0M34Y91K12 (0%,34%,91%,12%) (0.00/0.34/0.91/0.12)
E1 | 95 | 14 | |
---|---|---|---|
RGB | 225 | 149 | 20 |
HSL | 38° | 83.67% | 48.04% |
HSB/HSV | 38° | 91.11% | 88.24% |
CMYK | 0.00% | 33.78% | 91.11% |
11.76% |
HEX | E1 | 95 | 14 |
Decimal | 225 | 149 | 20 |
Binary | 11100001 | 10010101 | 10100 |
Octal | 341 | 225 | 24 |
Examples of css and html codes for elements with #E19514 color. Also use rgb(225,149,20) instead hex code.
.myTextColor { color: #E19514; }
<p style="color:#E19514">This sample text font color is #E19514.</p>
This text font color is #E19514.
.myBgColor { background-color: #E19514; }
<div style="background-color:#E19514">Inner text</div>
This div background color is #E19514.
.myBorderColor { border: 1px solid #E19514; }
<div style="border:3px solid #E19514">Div</div>
This div border color is #E19514.
.myOpacity80 { color: #E19514; opacity: 0.8; }
<p style="color:#E19514;opacity:0.8;">80%</p>
Text with #E19514 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E19514;}
<p style="text-shadow: 3px 3px 1px #E19514">Text here.</p>
This text has shadow with #E19514 color.
.textShadow {text-shadow: 3px 3px 1px #E19514, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E19514, 5px 5px 20px red">Text here.</p>
This text has shadow with #E19514 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E19514, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E19514, Direction=45, Strength=4)">Text</p>
This text has shadow with #E19514 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E19514; -webkit-box-shadow: 1px 1px 3px 2px #E19514; box-shadow: 1px 1px 3px 2px #E19514; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E19514; -webkit-box-shadow: 1px 1px 3px 2px #E19514; box-shadow:1px 1px 3px 2px #E19514;">
Div content here</div>
This text has color #E19514 on black background.
This text has color #E19514 on white background.
This text has black color on #E19514 background.
This text has white color on #E19514 background.