HEX: #D47BAD
RGB: (212,123,173)
#D47BAD contains mainly red and blue colors. Web safe color of #D47BAD is #CC6699 (or #C69).
#D47BAD color RGB value is (212,123,173).
RGB: (212,123,173) (83%,48%,68%)
R 212 of 255 = 83%
G 123 of 255 = 48%
B 173 of 255 = 68%
R + G + B ~ 66%. #D47BAD is quite light color.
R + G + B =
212 + 123 + 173 = 508 (100%)
R 212 of 508 ~ 41.73%
G 123 of 508 ~ 24.21%
B 173 of 508 ~ 34.06%
#D47BAD color CMYK value is (0,42,18,17).
CMYK: (0,42,18,17) C0M42Y18K17 (0%,42%,18%,17%) (0.00/0.42/0.18/0.17)
D4 | 7B | AD | |
---|---|---|---|
RGB | 212 | 123 | 173 |
HSL | 326° | 50.86% | 65.69% |
HSB/HSV | 326° | 41.98% | 83.14% |
CMYK | 0.00% | 41.98% | 18.40% |
16.86% |
HEX | D4 | 7B | AD |
Decimal | 212 | 123 | 173 |
Binary | 11010100 | 1111011 | 10101101 |
Octal | 324 | 173 | 255 |
Examples of css and html codes for elements with #D47BAD color. Also use rgb(212,123,173) instead hex code.
.myTextColor { color: #D47BAD; }
<p style="color:#D47BAD">This sample text font color is #D47BAD.</p>
This text font color is #D47BAD.
.myBgColor { background-color: #D47BAD; }
<div style="background-color:#D47BAD">Inner text</div>
This div background color is #D47BAD.
.myBorderColor { border: 1px solid #D47BAD; }
<div style="border:3px solid #D47BAD">Div</div>
This div border color is #D47BAD.
.myOpacity80 { color: #D47BAD; opacity: 0.8; }
<p style="color:#D47BAD;opacity:0.8;">80%</p>
Text with #D47BAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D47BAD;}
<p style="text-shadow: 3px 3px 1px #D47BAD">Text here.</p>
This text has shadow with #D47BAD color.
.textShadow {text-shadow: 3px 3px 1px #D47BAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D47BAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #D47BAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D47BAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D47BAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #D47BAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D47BAD; -webkit-box-shadow: 1px 1px 3px 2px #D47BAD; box-shadow: 1px 1px 3px 2px #D47BAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D47BAD; -webkit-box-shadow: 1px 1px 3px 2px #D47BAD; box-shadow:1px 1px 3px 2px #D47BAD;">
Div content here</div>
This text has color #D47BAD on black background.
This text has color #D47BAD on white background.
This text has black color on #D47BAD background.
This text has white color on #D47BAD background.