HEX: #D994AC
RGB: (217,148,172)
#D994AC contains mainly red and blue colors. Web safe color of #D994AC is #CC9999 (or #C99).
#D994AC color RGB value is (217,148,172).
RGB: (217,148,172) (85%,58%,67%)
R 217 of 255 = 85%
G 148 of 255 = 58%
B 172 of 255 = 67%
R + G + B ~ 70%. #D994AC is quite light color.
R + G + B =
217 + 148 + 172 = 537 (100%)
R 217 of 537 ~ 40.41%
G 148 of 537 ~ 27.56%
B 172 of 537 ~ 32.03%
#D994AC color CMYK value is (0,32,21,15).
CMYK: (0,32,21,15) C0M32Y21K15 (0%,32%,21%,15%) (0.00/0.32/0.21/0.15)
D9 | 94 | AC | |
---|---|---|---|
RGB | 217 | 148 | 172 |
HSL | 339° | 47.59% | 71.57% |
HSB/HSV | 339° | 31.80% | 85.10% |
CMYK | 0.00% | 31.80% | 20.74% |
14.90% |
HEX | D9 | 94 | AC |
Decimal | 217 | 148 | 172 |
Binary | 11011001 | 10010100 | 10101100 |
Octal | 331 | 224 | 254 |
Examples of css and html codes for elements with #D994AC color. Also use rgb(217,148,172) instead hex code.
.myTextColor { color: #D994AC; }
<p style="color:#D994AC">This sample text font color is #D994AC.</p>
This text font color is #D994AC.
.myBgColor { background-color: #D994AC; }
<div style="background-color:#D994AC">Inner text</div>
This div background color is #D994AC.
.myBorderColor { border: 1px solid #D994AC; }
<div style="border:3px solid #D994AC">Div</div>
This div border color is #D994AC.
.myOpacity80 { color: #D994AC; opacity: 0.8; }
<p style="color:#D994AC;opacity:0.8;">80%</p>
Text with #D994AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D994AC;}
<p style="text-shadow: 3px 3px 1px #D994AC">Text here.</p>
This text has shadow with #D994AC color.
.textShadow {text-shadow: 3px 3px 1px #D994AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D994AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D994AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D994AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D994AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D994AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D994AC; -webkit-box-shadow: 1px 1px 3px 2px #D994AC; box-shadow: 1px 1px 3px 2px #D994AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D994AC; -webkit-box-shadow: 1px 1px 3px 2px #D994AC; box-shadow:1px 1px 3px 2px #D994AC;">
Div content here</div>
This text has color #D994AC on black background.
This text has color #D994AC on white background.
This text has black color on #D994AC background.
This text has white color on #D994AC background.