HEX: #D696AB
RGB: (214,150,171)
#D696AB contains mainly red and blue colors. Web safe color of #D696AB is #CC9999 (or #C99).
#D696AB color RGB value is (214,150,171).
RGB: (214,150,171) (84%,59%,67%)
R 214 of 255 = 84%
G 150 of 255 = 59%
B 171 of 255 = 67%
R + G + B ~ 70%. #D696AB is quite light color.
R + G + B =
214 + 150 + 171 = 535 (100%)
R 214 of 535 ~ 40%
G 150 of 535 ~ 28.04%
B 171 of 535 ~ 31.96%
#D696AB color CMYK value is (0,30,20,16).
CMYK: (0,30,20,16) C0M30Y20K16 (0%,30%,20%,16%) (0.00/0.30/0.20/0.16)
D6 | 96 | AB | |
---|---|---|---|
RGB | 214 | 150 | 171 |
HSL | 340° | 43.84% | 71.37% |
HSB/HSV | 340° | 29.91% | 83.92% |
CMYK | 0.00% | 29.91% | 20.09% |
16.08% |
HEX | D6 | 96 | AB |
Decimal | 214 | 150 | 171 |
Binary | 11010110 | 10010110 | 10101011 |
Octal | 326 | 226 | 253 |
Examples of css and html codes for elements with #D696AB color. Also use rgb(214,150,171) instead hex code.
.myTextColor { color: #D696AB; }
<p style="color:#D696AB">This sample text font color is #D696AB.</p>
This text font color is #D696AB.
.myBgColor { background-color: #D696AB; }
<div style="background-color:#D696AB">Inner text</div>
This div background color is #D696AB.
.myBorderColor { border: 1px solid #D696AB; }
<div style="border:3px solid #D696AB">Div</div>
This div border color is #D696AB.
.myOpacity80 { color: #D696AB; opacity: 0.8; }
<p style="color:#D696AB;opacity:0.8;">80%</p>
Text with #D696AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D696AB;}
<p style="text-shadow: 3px 3px 1px #D696AB">Text here.</p>
This text has shadow with #D696AB color.
.textShadow {text-shadow: 3px 3px 1px #D696AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D696AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D696AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D696AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D696AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D696AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D696AB; -webkit-box-shadow: 1px 1px 3px 2px #D696AB; box-shadow: 1px 1px 3px 2px #D696AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D696AB; -webkit-box-shadow: 1px 1px 3px 2px #D696AB; box-shadow:1px 1px 3px 2px #D696AB;">
Div content here</div>
This text has color #D696AB on black background.
This text has color #D696AB on white background.
This text has black color on #D696AB background.
This text has white color on #D696AB background.