HEX: #E06B2D
RGB: (224,107,45)
#E06B2D contains mainly red color. Web safe color of #E06B2D is #CC6633 (or #C63).
#E06B2D color RGB value is (224,107,45).
RGB: (224,107,45) (88%,42%,18%)
R 224 of 255 = 88%
G 107 of 255 = 42%
B 45 of 255 = 18%
R + G + B ~ 49%. #E06B2D is middle color (not dark and not light).
R + G + B =
224 + 107 + 45 = 376 (100%)
R 224 of 376 ~ 59.57%
G 107 of 376 ~ 28.46%
B 45 of 376 ~ 11.97%
#E06B2D color CMYK value is (0,52,80,12).
CMYK: (0,52,80,12) C0M52Y80K12 (0%,52%,80%,12%) (0.00/0.52/0.80/0.12)
E0 | 6B | 2D | |
---|---|---|---|
RGB | 224 | 107 | 45 |
HSL | 21° | 74.27% | 52.75% |
HSB/HSV | 21° | 79.91% | 87.84% |
CMYK | 0.00% | 52.23% | 79.91% |
12.16% |
HEX | E0 | 6B | 2D |
Decimal | 224 | 107 | 45 |
Binary | 11100000 | 1101011 | 101101 |
Octal | 340 | 153 | 55 |
Examples of css and html codes for elements with #E06B2D color. Also use rgb(224,107,45) instead hex code.
.myTextColor { color: #E06B2D; }
<p style="color:#E06B2D">This sample text font color is #E06B2D.</p>
This text font color is #E06B2D.
.myBgColor { background-color: #E06B2D; }
<div style="background-color:#E06B2D">Inner text</div>
This div background color is #E06B2D.
.myBorderColor { border: 1px solid #E06B2D; }
<div style="border:3px solid #E06B2D">Div</div>
This div border color is #E06B2D.
.myOpacity80 { color: #E06B2D; opacity: 0.8; }
<p style="color:#E06B2D;opacity:0.8;">80%</p>
Text with #E06B2D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E06B2D;}
<p style="text-shadow: 3px 3px 1px #E06B2D">Text here.</p>
This text has shadow with #E06B2D color.
.textShadow {text-shadow: 3px 3px 1px #E06B2D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E06B2D, 5px 5px 20px red">Text here.</p>
This text has shadow with #E06B2D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E06B2D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E06B2D, Direction=45, Strength=4)">Text</p>
This text has shadow with #E06B2D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E06B2D; -webkit-box-shadow: 1px 1px 3px 2px #E06B2D; box-shadow: 1px 1px 3px 2px #E06B2D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E06B2D; -webkit-box-shadow: 1px 1px 3px 2px #E06B2D; box-shadow:1px 1px 3px 2px #E06B2D;">
Div content here</div>
This text has color #E06B2D on black background.
This text has color #E06B2D on white background.
This text has black color on #E06B2D background.
This text has white color on #E06B2D background.