HEX: #D4B88D
RGB: (212,184,141)
#D4B88D contains mainly red and green colors. Web safe color of #D4B88D is #CCCC99 (or #CC9).
#D4B88D color RGB value is (212,184,141).
RGB: (212,184,141) (83%,72%,55%)
R 212 of 255 = 83%
G 184 of 255 = 72%
B 141 of 255 = 55%
R + G + B ~ 70%. #D4B88D is quite light color.
R + G + B =
212 + 184 + 141 = 537 (100%)
R 212 of 537 ~ 39.48%
G 184 of 537 ~ 34.26%
B 141 of 537 ~ 26.26%
#D4B88D color CMYK value is (0,13,33,17).
CMYK: (0,13,33,17) C0M13Y33K17 (0%,13%,33%,17%) (0.00/0.13/0.33/0.17)
D4 | B8 | 8D | |
---|---|---|---|
RGB | 212 | 184 | 141 |
HSL | 36° | 45.22% | 69.22% |
HSB/HSV | 36° | 33.49% | 83.14% |
CMYK | 0.00% | 13.21% | 33.49% |
16.86% |
HEX | D4 | B8 | 8D |
Decimal | 212 | 184 | 141 |
Binary | 11010100 | 10111000 | 10001101 |
Octal | 324 | 270 | 215 |
Examples of css and html codes for elements with #D4B88D color. Also use rgb(212,184,141) instead hex code.
.myTextColor { color: #D4B88D; }
<p style="color:#D4B88D">This sample text font color is #D4B88D.</p>
This text font color is #D4B88D.
.myBgColor { background-color: #D4B88D; }
<div style="background-color:#D4B88D">Inner text</div>
This div background color is #D4B88D.
.myBorderColor { border: 1px solid #D4B88D; }
<div style="border:3px solid #D4B88D">Div</div>
This div border color is #D4B88D.
.myOpacity80 { color: #D4B88D; opacity: 0.8; }
<p style="color:#D4B88D;opacity:0.8;">80%</p>
Text with #D4B88D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D4B88D;}
<p style="text-shadow: 3px 3px 1px #D4B88D">Text here.</p>
This text has shadow with #D4B88D color.
.textShadow {text-shadow: 3px 3px 1px #D4B88D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D4B88D, 5px 5px 20px red">Text here.</p>
This text has shadow with #D4B88D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D4B88D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D4B88D, Direction=45, Strength=4)">Text</p>
This text has shadow with #D4B88D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D4B88D; -webkit-box-shadow: 1px 1px 3px 2px #D4B88D; box-shadow: 1px 1px 3px 2px #D4B88D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D4B88D; -webkit-box-shadow: 1px 1px 3px 2px #D4B88D; box-shadow:1px 1px 3px 2px #D4B88D;">
Div content here</div>
This text has color #D4B88D on black background.
This text has color #D4B88D on white background.
This text has black color on #D4B88D background.
This text has white color on #D4B88D background.