HEX: #D889D1
RGB: (216,137,209)
#D889D1 contains mainly red and blue colors. Web safe color of #D889D1 is #CC99CC (or #C9C).
#D889D1 color RGB value is (216,137,209).
RGB: (216,137,209) (85%,54%,82%)
R 216 of 255 = 85%
G 137 of 255 = 54%
B 209 of 255 = 82%
R + G + B ~ 74%. #D889D1 is quite light color.
R + G + B =
216 + 137 + 209 = 562 (100%)
R 216 of 562 ~ 38.43%
G 137 of 562 ~ 24.38%
B 209 of 562 ~ 37.19%
#D889D1 color CMYK value is (0,37,3,15).
CMYK: (0,37,3,15) C0M37Y3K15 (0%,37%,3%,15%) (0.00/0.37/0.03/0.15)
D8 | 89 | D1 | |
---|---|---|---|
RGB | 216 | 137 | 209 |
HSL | 305° | 50.32% | 69.22% |
HSB/HSV | 305° | 36.57% | 84.71% |
CMYK | 0.00% | 36.57% | 3.24% |
15.29% |
HEX | D8 | 89 | D1 |
Decimal | 216 | 137 | 209 |
Binary | 11011000 | 10001001 | 11010001 |
Octal | 330 | 211 | 321 |
Examples of css and html codes for elements with #D889D1 color. Also use rgb(216,137,209) instead hex code.
.myTextColor { color: #D889D1; }
<p style="color:#D889D1">This sample text font color is #D889D1.</p>
This text font color is #D889D1.
.myBgColor { background-color: #D889D1; }
<div style="background-color:#D889D1">Inner text</div>
This div background color is #D889D1.
.myBorderColor { border: 1px solid #D889D1; }
<div style="border:3px solid #D889D1">Div</div>
This div border color is #D889D1.
.myOpacity80 { color: #D889D1; opacity: 0.8; }
<p style="color:#D889D1;opacity:0.8;">80%</p>
Text with #D889D1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D889D1;}
<p style="text-shadow: 3px 3px 1px #D889D1">Text here.</p>
This text has shadow with #D889D1 color.
.textShadow {text-shadow: 3px 3px 1px #D889D1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D889D1, 5px 5px 20px red">Text here.</p>
This text has shadow with #D889D1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D889D1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D889D1, Direction=45, Strength=4)">Text</p>
This text has shadow with #D889D1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D889D1; -webkit-box-shadow: 1px 1px 3px 2px #D889D1; box-shadow: 1px 1px 3px 2px #D889D1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D889D1; -webkit-box-shadow: 1px 1px 3px 2px #D889D1; box-shadow:1px 1px 3px 2px #D889D1;">
Div content here</div>
This text has color #D889D1 on black background.
This text has color #D889D1 on white background.
This text has black color on #D889D1 background.
This text has white color on #D889D1 background.