HEX: #D48077
RGB: (212,128,119)
#D48077 contains mainly red color. Web safe color of #D48077 is #CC6666 (or #C66).
#D48077 color RGB value is (212,128,119).
RGB: (212,128,119) (83%,50%,47%)
R 212 of 255 = 83%
G 128 of 255 = 50%
B 119 of 255 = 47%
R + G + B ~ 60%. #D48077 is middle color (not dark and not light).
R + G + B =
212 + 128 + 119 = 459 (100%)
R 212 of 459 ~ 46.19%
G 128 of 459 ~ 27.89%
B 119 of 459 ~ 25.93%
#D48077 color CMYK value is (0,40,44,17).
CMYK: (0,40,44,17) C0M40Y44K17 (0%,40%,44%,17%) (0.00/0.40/0.44/0.17)
D4 | 80 | 77 | |
---|---|---|---|
RGB | 212 | 128 | 119 |
HSL | 6° | 51.96% | 64.90% |
HSB/HSV | 6° | 43.87% | 83.14% |
CMYK | 0.00% | 39.62% | 43.87% |
16.86% |
HEX | D4 | 80 | 77 |
Decimal | 212 | 128 | 119 |
Binary | 11010100 | 10000000 | 1110111 |
Octal | 324 | 200 | 167 |
Examples of css and html codes for elements with #D48077 color. Also use rgb(212,128,119) instead hex code.
.myTextColor { color: #D48077; }
<p style="color:#D48077">This sample text font color is #D48077.</p>
This text font color is #D48077.
.myBgColor { background-color: #D48077; }
<div style="background-color:#D48077">Inner text</div>
This div background color is #D48077.
.myBorderColor { border: 1px solid #D48077; }
<div style="border:3px solid #D48077">Div</div>
This div border color is #D48077.
.myOpacity80 { color: #D48077; opacity: 0.8; }
<p style="color:#D48077;opacity:0.8;">80%</p>
Text with #D48077 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D48077;}
<p style="text-shadow: 3px 3px 1px #D48077">Text here.</p>
This text has shadow with #D48077 color.
.textShadow {text-shadow: 3px 3px 1px #D48077, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D48077, 5px 5px 20px red">Text here.</p>
This text has shadow with #D48077 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D48077, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D48077, Direction=45, Strength=4)">Text</p>
This text has shadow with #D48077 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D48077; -webkit-box-shadow: 1px 1px 3px 2px #D48077; box-shadow: 1px 1px 3px 2px #D48077; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D48077; -webkit-box-shadow: 1px 1px 3px 2px #D48077; box-shadow:1px 1px 3px 2px #D48077;">
Div content here</div>
This text has color #D48077 on black background.
This text has color #D48077 on white background.
This text has black color on #D48077 background.
This text has white color on #D48077 background.