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