HEX: #D6ABB2
RGB: (214,171,178)
#D6ABB2 contains red, green and blue colors in about the same proportion. Web safe color of #D6ABB2 is #CC9999 (or #C99).
#D6ABB2 color RGB value is (214,171,178).
RGB: (214,171,178) (84%,67%,70%)
R 214 of 255 = 84%
G 171 of 255 = 67%
B 178 of 255 = 70%
R + G + B ~ 74%. #D6ABB2 is quite light color.
R + G + B =
214 + 171 + 178 = 563 (100%)
R 214 of 563 ~ 38.01%
G 171 of 563 ~ 30.37%
B 178 of 563 ~ 31.62%
#D6ABB2 color CMYK value is (0,20,17,16).
CMYK: (0,20,17,16) C0M20Y17K16 (0%,20%,17%,16%) (0.00/0.20/0.17/0.16)
D6 | AB | B2 | |
---|---|---|---|
RGB | 214 | 171 | 178 |
HSL | 350° | 34.40% | 75.49% |
HSB/HSV | 350° | 20.09% | 83.92% |
CMYK | 0.00% | 20.09% | 16.82% |
16.08% |
HEX | D6 | AB | B2 |
Decimal | 214 | 171 | 178 |
Binary | 11010110 | 10101011 | 10110010 |
Octal | 326 | 253 | 262 |
Examples of css and html codes for elements with #D6ABB2 color. Also use rgb(214,171,178) instead hex code.
.myTextColor { color: #D6ABB2; }
<p style="color:#D6ABB2">This sample text font color is #D6ABB2.</p>
This text font color is #D6ABB2.
.myBgColor { background-color: #D6ABB2; }
<div style="background-color:#D6ABB2">Inner text</div>
This div background color is #D6ABB2.
.myBorderColor { border: 1px solid #D6ABB2; }
<div style="border:3px solid #D6ABB2">Div</div>
This div border color is #D6ABB2.
.myOpacity80 { color: #D6ABB2; opacity: 0.8; }
<p style="color:#D6ABB2;opacity:0.8;">80%</p>
Text with #D6ABB2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D6ABB2;}
<p style="text-shadow: 3px 3px 1px #D6ABB2">Text here.</p>
This text has shadow with #D6ABB2 color.
.textShadow {text-shadow: 3px 3px 1px #D6ABB2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D6ABB2, 5px 5px 20px red">Text here.</p>
This text has shadow with #D6ABB2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D6ABB2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D6ABB2, Direction=45, Strength=4)">Text</p>
This text has shadow with #D6ABB2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D6ABB2; -webkit-box-shadow: 1px 1px 3px 2px #D6ABB2; box-shadow: 1px 1px 3px 2px #D6ABB2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D6ABB2; -webkit-box-shadow: 1px 1px 3px 2px #D6ABB2; box-shadow:1px 1px 3px 2px #D6ABB2;">
Div content here</div>
This text has color #D6ABB2 on black background.
This text has color #D6ABB2 on white background.
This text has black color on #D6ABB2 background.
This text has white color on #D6ABB2 background.