HEX: #D9749D
RGB: (217,116,157)
#D9749D contains mainly red color. Web safe color of #D9749D is #CC6699 (or #C69).
#D9749D color RGB value is (217,116,157).
RGB: (217,116,157) (85%,45%,62%)
R 217 of 255 = 85%
G 116 of 255 = 45%
B 157 of 255 = 62%
R + G + B ~ 64%. #D9749D is quite light color.
R + G + B =
217 + 116 + 157 = 490 (100%)
R 217 of 490 ~ 44.29%
G 116 of 490 ~ 23.67%
B 157 of 490 ~ 32.04%
#D9749D color CMYK value is (0,47,28,15).
CMYK: (0,47,28,15) C0M47Y28K15 (0%,47%,28%,15%) (0.00/0.47/0.28/0.15)
D9 | 74 | 9D | |
---|---|---|---|
RGB | 217 | 116 | 157 |
HSL | 336° | 57.06% | 65.29% |
HSB/HSV | 336° | 46.54% | 85.10% |
CMYK | 0.00% | 46.54% | 27.65% |
14.90% |
HEX | D9 | 74 | 9D |
Decimal | 217 | 116 | 157 |
Binary | 11011001 | 1110100 | 10011101 |
Octal | 331 | 164 | 235 |
Examples of css and html codes for elements with #D9749D color. Also use rgb(217,116,157) instead hex code.
.myTextColor { color: #D9749D; }
<p style="color:#D9749D">This sample text font color is #D9749D.</p>
This text font color is #D9749D.
.myBgColor { background-color: #D9749D; }
<div style="background-color:#D9749D">Inner text</div>
This div background color is #D9749D.
.myBorderColor { border: 1px solid #D9749D; }
<div style="border:3px solid #D9749D">Div</div>
This div border color is #D9749D.
.myOpacity80 { color: #D9749D; opacity: 0.8; }
<p style="color:#D9749D;opacity:0.8;">80%</p>
Text with #D9749D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D9749D;}
<p style="text-shadow: 3px 3px 1px #D9749D">Text here.</p>
This text has shadow with #D9749D color.
.textShadow {text-shadow: 3px 3px 1px #D9749D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D9749D, 5px 5px 20px red">Text here.</p>
This text has shadow with #D9749D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D9749D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D9749D, Direction=45, Strength=4)">Text</p>
This text has shadow with #D9749D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D9749D; -webkit-box-shadow: 1px 1px 3px 2px #D9749D; box-shadow: 1px 1px 3px 2px #D9749D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D9749D; -webkit-box-shadow: 1px 1px 3px 2px #D9749D; box-shadow:1px 1px 3px 2px #D9749D;">
Div content here</div>
This text has color #D9749D on black background.
This text has color #D9749D on white background.
This text has black color on #D9749D background.
This text has white color on #D9749D background.