HEX: #D7AEBB
RGB: (215,174,187)
#D7AEBB contains red, green and blue colors in about the same proportion. Web safe color of #D7AEBB is #CC99CC (or #C9C).
#D7AEBB color RGB value is (215,174,187).
RGB: (215,174,187) (84%,68%,73%)
R 215 of 255 = 84%
G 174 of 255 = 68%
B 187 of 255 = 73%
R + G + B ~ 75%. #D7AEBB is quite light color.
R + G + B =
215 + 174 + 187 = 576 (100%)
R 215 of 576 ~ 37.33%
G 174 of 576 ~ 30.21%
B 187 of 576 ~ 32.47%
#D7AEBB color CMYK value is (0,19,13,16).
CMYK: (0,19,13,16) C0M19Y13K16 (0%,19%,13%,16%) (0.00/0.19/0.13/0.16)
D7 | AE | BB | |
---|---|---|---|
RGB | 215 | 174 | 187 |
HSL | 341° | 33.88% | 76.27% |
HSB/HSV | 341° | 19.07% | 84.31% |
CMYK | 0.00% | 19.07% | 13.02% |
15.69% |
HEX | D7 | AE | BB |
Decimal | 215 | 174 | 187 |
Binary | 11010111 | 10101110 | 10111011 |
Octal | 327 | 256 | 273 |
Examples of css and html codes for elements with #D7AEBB color. Also use rgb(215,174,187) instead hex code.
.myTextColor { color: #D7AEBB; }
<p style="color:#D7AEBB">This sample text font color is #D7AEBB.</p>
This text font color is #D7AEBB.
.myBgColor { background-color: #D7AEBB; }
<div style="background-color:#D7AEBB">Inner text</div>
This div background color is #D7AEBB.
.myBorderColor { border: 1px solid #D7AEBB; }
<div style="border:3px solid #D7AEBB">Div</div>
This div border color is #D7AEBB.
.myOpacity80 { color: #D7AEBB; opacity: 0.8; }
<p style="color:#D7AEBB;opacity:0.8;">80%</p>
Text with #D7AEBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D7AEBB;}
<p style="text-shadow: 3px 3px 1px #D7AEBB">Text here.</p>
This text has shadow with #D7AEBB color.
.textShadow {text-shadow: 3px 3px 1px #D7AEBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D7AEBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D7AEBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D7AEBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D7AEBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D7AEBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D7AEBB; -webkit-box-shadow: 1px 1px 3px 2px #D7AEBB; box-shadow: 1px 1px 3px 2px #D7AEBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D7AEBB; -webkit-box-shadow: 1px 1px 3px 2px #D7AEBB; box-shadow:1px 1px 3px 2px #D7AEBB;">
Div content here</div>
This text has color #D7AEBB on black background.
This text has color #D7AEBB on white background.
This text has black color on #D7AEBB background.
This text has white color on #D7AEBB background.