HEX: #E27D20
RGB: (226,125,32)
#E27D20 contains mainly red color. Web safe color of #E27D20 is #CC6633 (or #C63).
#E27D20 color RGB value is (226,125,32).
RGB: (226,125,32) (89%,49%,13%)
R 226 of 255 = 89%
G 125 of 255 = 49%
B 32 of 255 = 13%
R + G + B ~ 50%. #E27D20 is middle color (not dark and not light).
R + G + B =
226 + 125 + 32 = 383 (100%)
R 226 of 383 ~ 59.01%
G 125 of 383 ~ 32.64%
B 32 of 383 ~ 8.36%
#E27D20 color CMYK value is (0,45,86,11).
CMYK: (0,45,86,11) C0M45Y86K11 (0%,45%,86%,11%) (0.00/0.45/0.86/0.11)
E2 | 7D | 20 | |
---|---|---|---|
RGB | 226 | 125 | 32 |
HSL | 29° | 76.98% | 50.59% |
HSB/HSV | 29° | 85.84% | 88.63% |
CMYK | 0.00% | 44.69% | 85.84% |
11.37% |
HEX | E2 | 7D | 20 |
Decimal | 226 | 125 | 32 |
Binary | 11100010 | 1111101 | 100000 |
Octal | 342 | 175 | 40 |
Examples of css and html codes for elements with #E27D20 color. Also use rgb(226,125,32) instead hex code.
.myTextColor { color: #E27D20; }
<p style="color:#E27D20">This sample text font color is #E27D20.</p>
This text font color is #E27D20.
.myBgColor { background-color: #E27D20; }
<div style="background-color:#E27D20">Inner text</div>
This div background color is #E27D20.
.myBorderColor { border: 1px solid #E27D20; }
<div style="border:3px solid #E27D20">Div</div>
This div border color is #E27D20.
.myOpacity80 { color: #E27D20; opacity: 0.8; }
<p style="color:#E27D20;opacity:0.8;">80%</p>
Text with #E27D20 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E27D20;}
<p style="text-shadow: 3px 3px 1px #E27D20">Text here.</p>
This text has shadow with #E27D20 color.
.textShadow {text-shadow: 3px 3px 1px #E27D20, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E27D20, 5px 5px 20px red">Text here.</p>
This text has shadow with #E27D20 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E27D20, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E27D20, Direction=45, Strength=4)">Text</p>
This text has shadow with #E27D20 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E27D20; -webkit-box-shadow: 1px 1px 3px 2px #E27D20; box-shadow: 1px 1px 3px 2px #E27D20; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E27D20; -webkit-box-shadow: 1px 1px 3px 2px #E27D20; box-shadow:1px 1px 3px 2px #E27D20;">
Div content here</div>
This text has color #E27D20 on black background.
This text has color #E27D20 on white background.
This text has black color on #E27D20 background.
This text has white color on #E27D20 background.