HEX: #D999BD
RGB: (217,153,189)
#D999BD contains mainly red and blue colors. Web safe color of #D999BD is #CC99CC (or #C9C).
#D999BD color RGB value is (217,153,189).
RGB: (217,153,189) (85%,60%,74%)
R 217 of 255 = 85%
G 153 of 255 = 60%
B 189 of 255 = 74%
R + G + B ~ 73%. #D999BD is quite light color.
R + G + B =
217 + 153 + 189 = 559 (100%)
R 217 of 559 ~ 38.82%
G 153 of 559 ~ 27.37%
B 189 of 559 ~ 33.81%
#D999BD color CMYK value is (0,29,13,15).
CMYK: (0,29,13,15) C0M29Y13K15 (0%,29%,13%,15%) (0.00/0.29/0.13/0.15)
D9 | 99 | BD | |
---|---|---|---|
RGB | 217 | 153 | 189 |
HSL | 326° | 45.71% | 72.55% |
HSB/HSV | 326° | 29.49% | 85.10% |
CMYK | 0.00% | 29.49% | 12.90% |
14.90% |
HEX | D9 | 99 | BD |
Decimal | 217 | 153 | 189 |
Binary | 11011001 | 10011001 | 10111101 |
Octal | 331 | 231 | 275 |
Examples of css and html codes for elements with #D999BD color. Also use rgb(217,153,189) instead hex code.
.myTextColor { color: #D999BD; }
<p style="color:#D999BD">This sample text font color is #D999BD.</p>
This text font color is #D999BD.
.myBgColor { background-color: #D999BD; }
<div style="background-color:#D999BD">Inner text</div>
This div background color is #D999BD.
.myBorderColor { border: 1px solid #D999BD; }
<div style="border:3px solid #D999BD">Div</div>
This div border color is #D999BD.
.myOpacity80 { color: #D999BD; opacity: 0.8; }
<p style="color:#D999BD;opacity:0.8;">80%</p>
Text with #D999BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D999BD;}
<p style="text-shadow: 3px 3px 1px #D999BD">Text here.</p>
This text has shadow with #D999BD color.
.textShadow {text-shadow: 3px 3px 1px #D999BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D999BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #D999BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D999BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D999BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #D999BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D999BD; -webkit-box-shadow: 1px 1px 3px 2px #D999BD; box-shadow: 1px 1px 3px 2px #D999BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D999BD; -webkit-box-shadow: 1px 1px 3px 2px #D999BD; box-shadow:1px 1px 3px 2px #D999BD;">
Div content here</div>
This text has color #D999BD on black background.
This text has color #D999BD on white background.
This text has black color on #D999BD background.
This text has white color on #D999BD background.