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