HEX: #D696DA
RGB: (214,150,218)
#D696DA contains mainly red and blue colors. Web safe color of #D696DA is #CC99CC (or #C9C).
#D696DA color RGB value is (214,150,218).
RGB: (214,150,218) (84%,59%,85%)
R 214 of 255 = 84%
G 150 of 255 = 59%
B 218 of 255 = 85%
R + G + B ~ 76%. #D696DA is quite light color.
R + G + B =
214 + 150 + 218 = 582 (100%)
R 214 of 582 ~ 36.77%
G 150 of 582 ~ 25.77%
B 218 of 582 ~ 37.46%
#D696DA color CMYK value is (2,31,0,15).
CMYK: (2,31,0,15) C2M31Y0K15 (2%,31%,0%,15%) (0.02/0.31/0.00/0.15)
D6 | 96 | DA | |
---|---|---|---|
RGB | 214 | 150 | 218 |
HSL | 296° | 47.89% | 72.16% |
HSB/HSV | 296° | 31.19% | 85.49% |
CMYK | 1.83% | 31.19% | 0.00% |
14.51% |
HEX | D6 | 96 | DA |
Decimal | 214 | 150 | 218 |
Binary | 11010110 | 10010110 | 11011010 |
Octal | 326 | 226 | 332 |
Examples of css and html codes for elements with #D696DA color. Also use rgb(214,150,218) instead hex code.
.myTextColor { color: #D696DA; }
<p style="color:#D696DA">This sample text font color is #D696DA.</p>
This text font color is #D696DA.
.myBgColor { background-color: #D696DA; }
<div style="background-color:#D696DA">Inner text</div>
This div background color is #D696DA.
.myBorderColor { border: 1px solid #D696DA; }
<div style="border:3px solid #D696DA">Div</div>
This div border color is #D696DA.
.myOpacity80 { color: #D696DA; opacity: 0.8; }
<p style="color:#D696DA;opacity:0.8;">80%</p>
Text with #D696DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D696DA;}
<p style="text-shadow: 3px 3px 1px #D696DA">Text here.</p>
This text has shadow with #D696DA color.
.textShadow {text-shadow: 3px 3px 1px #D696DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D696DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #D696DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D696DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D696DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #D696DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D696DA; -webkit-box-shadow: 1px 1px 3px 2px #D696DA; box-shadow: 1px 1px 3px 2px #D696DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D696DA; -webkit-box-shadow: 1px 1px 3px 2px #D696DA; box-shadow:1px 1px 3px 2px #D696DA;">
Div content here</div>
This text has color #D696DA on black background.
This text has color #D696DA on white background.
This text has black color on #D696DA background.
This text has white color on #D696DA background.