HEX: #D57D77
RGB: (213,125,119)
#D57D77 contains mainly red color. Web safe color of #D57D77 is #CC6666 (or #C66).
#D57D77 color RGB value is (213,125,119).
RGB: (213,125,119) (84%,49%,47%)
R 213 of 255 = 84%
G 125 of 255 = 49%
B 119 of 255 = 47%
R + G + B ~ 60%. #D57D77 is middle color (not dark and not light).
R + G + B =
213 + 125 + 119 = 457 (100%)
R 213 of 457 ~ 46.61%
G 125 of 457 ~ 27.35%
B 119 of 457 ~ 26.04%
#D57D77 color CMYK value is (0,41,44,16).
CMYK: (0,41,44,16) C0M41Y44K16 (0%,41%,44%,16%) (0.00/0.41/0.44/0.16)
D5 | 7D | 77 | |
---|---|---|---|
RGB | 213 | 125 | 119 |
HSL | 4° | 52.81% | 65.10% |
HSB/HSV | 4° | 44.13% | 83.53% |
CMYK | 0.00% | 41.31% | 44.13% |
16.47% |
HEX | D5 | 7D | 77 |
Decimal | 213 | 125 | 119 |
Binary | 11010101 | 1111101 | 1110111 |
Octal | 325 | 175 | 167 |
Examples of css and html codes for elements with #D57D77 color. Also use rgb(213,125,119) instead hex code.
.myTextColor { color: #D57D77; }
<p style="color:#D57D77">This sample text font color is #D57D77.</p>
This text font color is #D57D77.
.myBgColor { background-color: #D57D77; }
<div style="background-color:#D57D77">Inner text</div>
This div background color is #D57D77.
.myBorderColor { border: 1px solid #D57D77; }
<div style="border:3px solid #D57D77">Div</div>
This div border color is #D57D77.
.myOpacity80 { color: #D57D77; opacity: 0.8; }
<p style="color:#D57D77;opacity:0.8;">80%</p>
Text with #D57D77 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D57D77;}
<p style="text-shadow: 3px 3px 1px #D57D77">Text here.</p>
This text has shadow with #D57D77 color.
.textShadow {text-shadow: 3px 3px 1px #D57D77, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D57D77, 5px 5px 20px red">Text here.</p>
This text has shadow with #D57D77 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D57D77, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D57D77, Direction=45, Strength=4)">Text</p>
This text has shadow with #D57D77 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D57D77; -webkit-box-shadow: 1px 1px 3px 2px #D57D77; box-shadow: 1px 1px 3px 2px #D57D77; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D57D77; -webkit-box-shadow: 1px 1px 3px 2px #D57D77; box-shadow:1px 1px 3px 2px #D57D77;">
Div content here</div>
This text has color #D57D77 on black background.
This text has color #D57D77 on white background.
This text has black color on #D57D77 background.
This text has white color on #D57D77 background.