HEX: #D4B0AA
RGB: (212,176,170)
#D4B0AA contains red, green and blue colors in about the same proportion. Web safe color of #D4B0AA is #CC9999 (or #C99).
#D4B0AA color RGB value is (212,176,170).
RGB: (212,176,170) (83%,69%,67%)
R 212 of 255 = 83%
G 176 of 255 = 69%
B 170 of 255 = 67%
R + G + B ~ 73%. #D4B0AA is quite light color.
R + G + B =
212 + 176 + 170 = 558 (100%)
R 212 of 558 ~ 37.99%
G 176 of 558 ~ 31.54%
B 170 of 558 ~ 30.47%
#D4B0AA color CMYK value is (0,17,20,17).
CMYK: (0,17,20,17) C0M17Y20K17 (0%,17%,20%,17%) (0.00/0.17/0.20/0.17)
D4 | B0 | AA | |
---|---|---|---|
RGB | 212 | 176 | 170 |
HSL | 9° | 32.81% | 74.90% |
HSB/HSV | 9° | 19.81% | 83.14% |
CMYK | 0.00% | 16.98% | 19.81% |
16.86% |
HEX | D4 | B0 | AA |
Decimal | 212 | 176 | 170 |
Binary | 11010100 | 10110000 | 10101010 |
Octal | 324 | 260 | 252 |
Examples of css and html codes for elements with #D4B0AA color. Also use rgb(212,176,170) instead hex code.
.myTextColor { color: #D4B0AA; }
<p style="color:#D4B0AA">This sample text font color is #D4B0AA.</p>
This text font color is #D4B0AA.
.myBgColor { background-color: #D4B0AA; }
<div style="background-color:#D4B0AA">Inner text</div>
This div background color is #D4B0AA.
.myBorderColor { border: 1px solid #D4B0AA; }
<div style="border:3px solid #D4B0AA">Div</div>
This div border color is #D4B0AA.
.myOpacity80 { color: #D4B0AA; opacity: 0.8; }
<p style="color:#D4B0AA;opacity:0.8;">80%</p>
Text with #D4B0AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D4B0AA;}
<p style="text-shadow: 3px 3px 1px #D4B0AA">Text here.</p>
This text has shadow with #D4B0AA color.
.textShadow {text-shadow: 3px 3px 1px #D4B0AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D4B0AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #D4B0AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D4B0AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D4B0AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #D4B0AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D4B0AA; -webkit-box-shadow: 1px 1px 3px 2px #D4B0AA; box-shadow: 1px 1px 3px 2px #D4B0AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D4B0AA; -webkit-box-shadow: 1px 1px 3px 2px #D4B0AA; box-shadow:1px 1px 3px 2px #D4B0AA;">
Div content here</div>
This text has color #D4B0AA on black background.
This text has color #D4B0AA on white background.
This text has black color on #D4B0AA background.
This text has white color on #D4B0AA background.