HEX: #E68824
RGB: (230,136,36)
#E68824 contains mainly red color. Web safe color of #E68824 is #CC9933 (or #C93).
#E68824 color RGB value is (230,136,36).
RGB: (230,136,36) (90%,53%,14%)
R 230 of 255 = 90%
G 136 of 255 = 53%
B 36 of 255 = 14%
R + G + B ~ 52%. #E68824 is middle color (not dark and not light).
R + G + B =
230 + 136 + 36 = 402 (100%)
R 230 of 402 ~ 57.21%
G 136 of 402 ~ 33.83%
B 36 of 402 ~ 8.96%
#E68824 color CMYK value is (0,41,84,10).
CMYK: (0,41,84,10) C0M41Y84K10 (0%,41%,84%,10%) (0.00/0.41/0.84/0.10)
E6 | 88 | 24 | |
---|---|---|---|
RGB | 230 | 136 | 36 |
HSL | 31° | 79.51% | 52.16% |
HSB/HSV | 31° | 84.35% | 90.20% |
CMYK | 0.00% | 40.87% | 84.35% |
9.80% |
HEX | E6 | 88 | 24 |
Decimal | 230 | 136 | 36 |
Binary | 11100110 | 10001000 | 100100 |
Octal | 346 | 210 | 44 |
Examples of css and html codes for elements with #E68824 color. Also use rgb(230,136,36) instead hex code.
.myTextColor { color: #E68824; }
<p style="color:#E68824">This sample text font color is #E68824.</p>
This text font color is #E68824.
.myBgColor { background-color: #E68824; }
<div style="background-color:#E68824">Inner text</div>
This div background color is #E68824.
.myBorderColor { border: 1px solid #E68824; }
<div style="border:3px solid #E68824">Div</div>
This div border color is #E68824.
.myOpacity80 { color: #E68824; opacity: 0.8; }
<p style="color:#E68824;opacity:0.8;">80%</p>
Text with #E68824 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E68824;}
<p style="text-shadow: 3px 3px 1px #E68824">Text here.</p>
This text has shadow with #E68824 color.
.textShadow {text-shadow: 3px 3px 1px #E68824, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E68824, 5px 5px 20px red">Text here.</p>
This text has shadow with #E68824 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E68824, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E68824, Direction=45, Strength=4)">Text</p>
This text has shadow with #E68824 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E68824; -webkit-box-shadow: 1px 1px 3px 2px #E68824; box-shadow: 1px 1px 3px 2px #E68824; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E68824; -webkit-box-shadow: 1px 1px 3px 2px #E68824; box-shadow:1px 1px 3px 2px #E68824;">
Div content here</div>
This text has color #E68824 on black background.
This text has color #E68824 on white background.
This text has black color on #E68824 background.
This text has white color on #E68824 background.