HEX: #D693BC
RGB: (214,147,188)
#D693BC contains mainly red and blue colors. Web safe color of #D693BC is #CC99CC (or #C9C).
#D693BC color RGB value is (214,147,188).
RGB: (214,147,188) (84%,58%,74%)
R 214 of 255 = 84%
G 147 of 255 = 58%
B 188 of 255 = 74%
R + G + B ~ 72%. #D693BC is quite light color.
R + G + B =
214 + 147 + 188 = 549 (100%)
R 214 of 549 ~ 38.98%
G 147 of 549 ~ 26.78%
B 188 of 549 ~ 34.24%
#D693BC color CMYK value is (0,31,12,16).
CMYK: (0,31,12,16) C0M31Y12K16 (0%,31%,12%,16%) (0.00/0.31/0.12/0.16)
D6 | 93 | BC | |
---|---|---|---|
RGB | 214 | 147 | 188 |
HSL | 323° | 44.97% | 70.78% |
HSB/HSV | 323° | 31.31% | 83.92% |
CMYK | 0.00% | 31.31% | 12.15% |
16.08% |
HEX | D6 | 93 | BC |
Decimal | 214 | 147 | 188 |
Binary | 11010110 | 10010011 | 10111100 |
Octal | 326 | 223 | 274 |
Examples of css and html codes for elements with #D693BC color. Also use rgb(214,147,188) instead hex code.
.myTextColor { color: #D693BC; }
<p style="color:#D693BC">This sample text font color is #D693BC.</p>
This text font color is #D693BC.
.myBgColor { background-color: #D693BC; }
<div style="background-color:#D693BC">Inner text</div>
This div background color is #D693BC.
.myBorderColor { border: 1px solid #D693BC; }
<div style="border:3px solid #D693BC">Div</div>
This div border color is #D693BC.
.myOpacity80 { color: #D693BC; opacity: 0.8; }
<p style="color:#D693BC;opacity:0.8;">80%</p>
Text with #D693BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D693BC;}
<p style="text-shadow: 3px 3px 1px #D693BC">Text here.</p>
This text has shadow with #D693BC color.
.textShadow {text-shadow: 3px 3px 1px #D693BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D693BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D693BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D693BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D693BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D693BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D693BC; -webkit-box-shadow: 1px 1px 3px 2px #D693BC; box-shadow: 1px 1px 3px 2px #D693BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D693BC; -webkit-box-shadow: 1px 1px 3px 2px #D693BC; box-shadow:1px 1px 3px 2px #D693BC;">
Div content here</div>
This text has color #D693BC on black background.
This text has color #D693BC on white background.
This text has black color on #D693BC background.
This text has white color on #D693BC background.