HEX: #D993BA
RGB: (217,147,186)
#D993BA contains mainly red and blue colors. Web safe color of #D993BA is #CC99CC (or #C9C).
#D993BA color RGB value is (217,147,186).
RGB: (217,147,186) (85%,58%,73%)
R 217 of 255 = 85%
G 147 of 255 = 58%
B 186 of 255 = 73%
R + G + B ~ 72%. #D993BA is quite light color.
R + G + B =
217 + 147 + 186 = 550 (100%)
R 217 of 550 ~ 39.45%
G 147 of 550 ~ 26.73%
B 186 of 550 ~ 33.82%
#D993BA color CMYK value is (0,32,14,15).
CMYK: (0,32,14,15) C0M32Y14K15 (0%,32%,14%,15%) (0.00/0.32/0.14/0.15)
D9 | 93 | BA | |
---|---|---|---|
RGB | 217 | 147 | 186 |
HSL | 327° | 47.95% | 71.37% |
HSB/HSV | 327° | 32.26% | 85.10% |
CMYK | 0.00% | 32.26% | 14.29% |
14.90% |
HEX | D9 | 93 | BA |
Decimal | 217 | 147 | 186 |
Binary | 11011001 | 10010011 | 10111010 |
Octal | 331 | 223 | 272 |
Examples of css and html codes for elements with #D993BA color. Also use rgb(217,147,186) instead hex code.
.myTextColor { color: #D993BA; }
<p style="color:#D993BA">This sample text font color is #D993BA.</p>
This text font color is #D993BA.
.myBgColor { background-color: #D993BA; }
<div style="background-color:#D993BA">Inner text</div>
This div background color is #D993BA.
.myBorderColor { border: 1px solid #D993BA; }
<div style="border:3px solid #D993BA">Div</div>
This div border color is #D993BA.
.myOpacity80 { color: #D993BA; opacity: 0.8; }
<p style="color:#D993BA;opacity:0.8;">80%</p>
Text with #D993BA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D993BA;}
<p style="text-shadow: 3px 3px 1px #D993BA">Text here.</p>
This text has shadow with #D993BA color.
.textShadow {text-shadow: 3px 3px 1px #D993BA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D993BA, 5px 5px 20px red">Text here.</p>
This text has shadow with #D993BA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D993BA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D993BA, Direction=45, Strength=4)">Text</p>
This text has shadow with #D993BA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D993BA; -webkit-box-shadow: 1px 1px 3px 2px #D993BA; box-shadow: 1px 1px 3px 2px #D993BA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D993BA; -webkit-box-shadow: 1px 1px 3px 2px #D993BA; box-shadow:1px 1px 3px 2px #D993BA;">
Div content here</div>
This text has color #D993BA on black background.
This text has color #D993BA on white background.
This text has black color on #D993BA background.
This text has white color on #D993BA background.