HEX: #D47043
RGB: (212,112,67)
#D47043 contains mainly red color. Web safe color of #D47043 is #CC6633 (or #C63).
#D47043 color RGB value is (212,112,67).
RGB: (212,112,67) (83%,44%,26%)
R 212 of 255 = 83%
G 112 of 255 = 44%
B 67 of 255 = 26%
R + G + B ~ 51%. #D47043 is middle color (not dark and not light).
R + G + B =
212 + 112 + 67 = 391 (100%)
R 212 of 391 ~ 54.22%
G 112 of 391 ~ 28.64%
B 67 of 391 ~ 17.14%
#D47043 color CMYK value is (0,47,68,17).
CMYK: (0,47,68,17) C0M47Y68K17 (0%,47%,68%,17%) (0.00/0.47/0.68/0.17)
D4 | 70 | 43 | |
---|---|---|---|
RGB | 212 | 112 | 67 |
HSL | 19° | 62.77% | 54.71% |
HSB/HSV | 19° | 68.40% | 83.14% |
CMYK | 0.00% | 47.17% | 68.40% |
16.86% |
HEX | D4 | 70 | 43 |
Decimal | 212 | 112 | 67 |
Binary | 11010100 | 1110000 | 1000011 |
Octal | 324 | 160 | 103 |
Examples of css and html codes for elements with #D47043 color. Also use rgb(212,112,67) instead hex code.
.myTextColor { color: #D47043; }
<p style="color:#D47043">This sample text font color is #D47043.</p>
This text font color is #D47043.
.myBgColor { background-color: #D47043; }
<div style="background-color:#D47043">Inner text</div>
This div background color is #D47043.
.myBorderColor { border: 1px solid #D47043; }
<div style="border:3px solid #D47043">Div</div>
This div border color is #D47043.
.myOpacity80 { color: #D47043; opacity: 0.8; }
<p style="color:#D47043;opacity:0.8;">80%</p>
Text with #D47043 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D47043;}
<p style="text-shadow: 3px 3px 1px #D47043">Text here.</p>
This text has shadow with #D47043 color.
.textShadow {text-shadow: 3px 3px 1px #D47043, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D47043, 5px 5px 20px red">Text here.</p>
This text has shadow with #D47043 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D47043, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D47043, Direction=45, Strength=4)">Text</p>
This text has shadow with #D47043 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D47043; -webkit-box-shadow: 1px 1px 3px 2px #D47043; box-shadow: 1px 1px 3px 2px #D47043; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D47043; -webkit-box-shadow: 1px 1px 3px 2px #D47043; box-shadow:1px 1px 3px 2px #D47043;">
Div content here</div>
This text has color #D47043 on black background.
This text has color #D47043 on white background.
This text has black color on #D47043 background.
This text has white color on #D47043 background.