HEX: #E69E0C
RGB: (230,158,12)
#E69E0C contains mainly red color. Web safe color of #E69E0C is #CC9900 (or #C90).
#E69E0C color RGB value is (230,158,12).
RGB: (230,158,12) (90%,62%,5%)
R 230 of 255 = 90%
G 158 of 255 = 62%
B 12 of 255 = 5%
R + G + B ~ 52%. #E69E0C is middle color (not dark and not light).
R + G + B =
230 + 158 + 12 = 400 (100%)
R 230 of 400 ~ 57.5%
G 158 of 400 ~ 39.5%
B 12 of 400 ~ 3%
#E69E0C color CMYK value is (0,31,95,10).
CMYK: (0,31,95,10) C0M31Y95K10 (0%,31%,95%,10%) (0.00/0.31/0.95/0.10)
E6 | 9E | 0C | |
---|---|---|---|
RGB | 230 | 158 | 12 |
HSL | 40° | 90.08% | 47.45% |
HSB/HSV | 40° | 94.78% | 90.20% |
CMYK | 0.00% | 31.30% | 94.78% |
9.80% |
HEX | E6 | 9E | 0C |
Decimal | 230 | 158 | 12 |
Binary | 11100110 | 10011110 | 1100 |
Octal | 346 | 236 | 14 |
Examples of css and html codes for elements with #E69E0C color. Also use rgb(230,158,12) instead hex code.
.myTextColor { color: #E69E0C; }
<p style="color:#E69E0C">This sample text font color is #E69E0C.</p>
This text font color is #E69E0C.
.myBgColor { background-color: #E69E0C; }
<div style="background-color:#E69E0C">Inner text</div>
This div background color is #E69E0C.
.myBorderColor { border: 1px solid #E69E0C; }
<div style="border:3px solid #E69E0C">Div</div>
This div border color is #E69E0C.
.myOpacity80 { color: #E69E0C; opacity: 0.8; }
<p style="color:#E69E0C;opacity:0.8;">80%</p>
Text with #E69E0C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E69E0C;}
<p style="text-shadow: 3px 3px 1px #E69E0C">Text here.</p>
This text has shadow with #E69E0C color.
.textShadow {text-shadow: 3px 3px 1px #E69E0C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E69E0C, 5px 5px 20px red">Text here.</p>
This text has shadow with #E69E0C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E69E0C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E69E0C, Direction=45, Strength=4)">Text</p>
This text has shadow with #E69E0C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E69E0C; -webkit-box-shadow: 1px 1px 3px 2px #E69E0C; box-shadow: 1px 1px 3px 2px #E69E0C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E69E0C; -webkit-box-shadow: 1px 1px 3px 2px #E69E0C; box-shadow:1px 1px 3px 2px #E69E0C;">
Div content here</div>
This text has color #E69E0C on black background.
This text has color #E69E0C on white background.
This text has black color on #E69E0C background.
This text has white color on #E69E0C background.