HEX: #D5B672
RGB: (213,182,114)
#D5B672 contains mainly red and green colors. Web safe color of #D5B672 is #CCCC66 (or #CC6).
#D5B672 color RGB value is (213,182,114).
RGB: (213,182,114) (84%,71%,45%)
R 213 of 255 = 84%
G 182 of 255 = 71%
B 114 of 255 = 45%
R + G + B ~ 67%. #D5B672 is quite light color.
R + G + B =
213 + 182 + 114 = 509 (100%)
R 213 of 509 ~ 41.85%
G 182 of 509 ~ 35.76%
B 114 of 509 ~ 22.4%
#D5B672 color CMYK value is (0,15,46,16).
CMYK: (0,15,46,16) C0M15Y46K16 (0%,15%,46%,16%) (0.00/0.15/0.46/0.16)
D5 | B6 | 72 | |
---|---|---|---|
RGB | 213 | 182 | 114 |
HSL | 41° | 54.10% | 64.12% |
HSB/HSV | 41° | 46.48% | 83.53% |
CMYK | 0.00% | 14.55% | 46.48% |
16.47% |
HEX | D5 | B6 | 72 |
Decimal | 213 | 182 | 114 |
Binary | 11010101 | 10110110 | 1110010 |
Octal | 325 | 266 | 162 |
Examples of css and html codes for elements with #D5B672 color. Also use rgb(213,182,114) instead hex code.
.myTextColor { color: #D5B672; }
<p style="color:#D5B672">This sample text font color is #D5B672.</p>
This text font color is #D5B672.
.myBgColor { background-color: #D5B672; }
<div style="background-color:#D5B672">Inner text</div>
This div background color is #D5B672.
.myBorderColor { border: 1px solid #D5B672; }
<div style="border:3px solid #D5B672">Div</div>
This div border color is #D5B672.
.myOpacity80 { color: #D5B672; opacity: 0.8; }
<p style="color:#D5B672;opacity:0.8;">80%</p>
Text with #D5B672 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5B672;}
<p style="text-shadow: 3px 3px 1px #D5B672">Text here.</p>
This text has shadow with #D5B672 color.
.textShadow {text-shadow: 3px 3px 1px #D5B672, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5B672, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5B672 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5B672, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5B672, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5B672 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5B672; -webkit-box-shadow: 1px 1px 3px 2px #D5B672; box-shadow: 1px 1px 3px 2px #D5B672; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5B672; -webkit-box-shadow: 1px 1px 3px 2px #D5B672; box-shadow:1px 1px 3px 2px #D5B672;">
Div content here</div>
This text has color #D5B672 on black background.
This text has color #D5B672 on white background.
This text has black color on #D5B672 background.
This text has white color on #D5B672 background.