HEX: #D7AABF
RGB: (215,170,191)
#D7AABF contains red, green and blue colors in about the same proportion. Web safe color of #D7AABF is #CC99CC (or #C9C).
#D7AABF color RGB value is (215,170,191).
RGB: (215,170,191) (84%,67%,75%)
R 215 of 255 = 84%
G 170 of 255 = 67%
B 191 of 255 = 75%
R + G + B ~ 75%. #D7AABF is quite light color.
R + G + B =
215 + 170 + 191 = 576 (100%)
R 215 of 576 ~ 37.33%
G 170 of 576 ~ 29.51%
B 191 of 576 ~ 33.16%
#D7AABF color CMYK value is (0,21,11,16).
CMYK: (0,21,11,16) C0M21Y11K16 (0%,21%,11%,16%) (0.00/0.21/0.11/0.16)
D7 | AA | BF | |
---|---|---|---|
RGB | 215 | 170 | 191 |
HSL | 332° | 36.00% | 75.49% |
HSB/HSV | 332° | 20.93% | 84.31% |
CMYK | 0.00% | 20.93% | 11.16% |
15.69% |
HEX | D7 | AA | BF |
Decimal | 215 | 170 | 191 |
Binary | 11010111 | 10101010 | 10111111 |
Octal | 327 | 252 | 277 |
Examples of css and html codes for elements with #D7AABF color. Also use rgb(215,170,191) instead hex code.
.myTextColor { color: #D7AABF; }
<p style="color:#D7AABF">This sample text font color is #D7AABF.</p>
This text font color is #D7AABF.
.myBgColor { background-color: #D7AABF; }
<div style="background-color:#D7AABF">Inner text</div>
This div background color is #D7AABF.
.myBorderColor { border: 1px solid #D7AABF; }
<div style="border:3px solid #D7AABF">Div</div>
This div border color is #D7AABF.
.myOpacity80 { color: #D7AABF; opacity: 0.8; }
<p style="color:#D7AABF;opacity:0.8;">80%</p>
Text with #D7AABF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D7AABF;}
<p style="text-shadow: 3px 3px 1px #D7AABF">Text here.</p>
This text has shadow with #D7AABF color.
.textShadow {text-shadow: 3px 3px 1px #D7AABF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D7AABF, 5px 5px 20px red">Text here.</p>
This text has shadow with #D7AABF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D7AABF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D7AABF, Direction=45, Strength=4)">Text</p>
This text has shadow with #D7AABF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D7AABF; -webkit-box-shadow: 1px 1px 3px 2px #D7AABF; box-shadow: 1px 1px 3px 2px #D7AABF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D7AABF; -webkit-box-shadow: 1px 1px 3px 2px #D7AABF; box-shadow:1px 1px 3px 2px #D7AABF;">
Div content here</div>
This text has color #D7AABF on black background.
This text has color #D7AABF on white background.
This text has black color on #D7AABF background.
This text has white color on #D7AABF background.