HEX: #D76DA6
RGB: (215,109,166)
#D76DA6 contains mainly red and blue colors. Web safe color of #D76DA6 is #CC6699 (or #C69).
#D76DA6 color RGB value is (215,109,166).
RGB: (215,109,166) (84%,43%,65%)
R 215 of 255 = 84%
G 109 of 255 = 43%
B 166 of 255 = 65%
R + G + B ~ 64%. #D76DA6 is quite light color.
R + G + B =
215 + 109 + 166 = 490 (100%)
R 215 of 490 ~ 43.88%
G 109 of 490 ~ 22.24%
B 166 of 490 ~ 33.88%
#D76DA6 color CMYK value is (0,49,23,16).
CMYK: (0,49,23,16) C0M49Y23K16 (0%,49%,23%,16%) (0.00/0.49/0.23/0.16)
D7 | 6D | A6 | |
---|---|---|---|
RGB | 215 | 109 | 166 |
HSL | 328° | 56.99% | 63.53% |
HSB/HSV | 328° | 49.30% | 84.31% |
CMYK | 0.00% | 49.30% | 22.79% |
15.69% |
HEX | D7 | 6D | A6 |
Decimal | 215 | 109 | 166 |
Binary | 11010111 | 1101101 | 10100110 |
Octal | 327 | 155 | 246 |
Examples of css and html codes for elements with #D76DA6 color. Also use rgb(215,109,166) instead hex code.
.myTextColor { color: #D76DA6; }
<p style="color:#D76DA6">This sample text font color is #D76DA6.</p>
This text font color is #D76DA6.
.myBgColor { background-color: #D76DA6; }
<div style="background-color:#D76DA6">Inner text</div>
This div background color is #D76DA6.
.myBorderColor { border: 1px solid #D76DA6; }
<div style="border:3px solid #D76DA6">Div</div>
This div border color is #D76DA6.
.myOpacity80 { color: #D76DA6; opacity: 0.8; }
<p style="color:#D76DA6;opacity:0.8;">80%</p>
Text with #D76DA6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D76DA6;}
<p style="text-shadow: 3px 3px 1px #D76DA6">Text here.</p>
This text has shadow with #D76DA6 color.
.textShadow {text-shadow: 3px 3px 1px #D76DA6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D76DA6, 5px 5px 20px red">Text here.</p>
This text has shadow with #D76DA6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D76DA6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D76DA6, Direction=45, Strength=4)">Text</p>
This text has shadow with #D76DA6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D76DA6; -webkit-box-shadow: 1px 1px 3px 2px #D76DA6; box-shadow: 1px 1px 3px 2px #D76DA6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D76DA6; -webkit-box-shadow: 1px 1px 3px 2px #D76DA6; box-shadow:1px 1px 3px 2px #D76DA6;">
Div content here</div>
This text has color #D76DA6 on black background.
This text has color #D76DA6 on white background.
This text has black color on #D76DA6 background.
This text has white color on #D76DA6 background.