HEX: #D5C786
RGB: (213,199,134)
#D5C786 contains mainly red and green colors. Web safe color of #D5C786 is #CCCC99 (or #CC9).
#D5C786 color RGB value is (213,199,134).
RGB: (213,199,134) (84%,78%,53%)
R 213 of 255 = 84%
G 199 of 255 = 78%
B 134 of 255 = 53%
R + G + B ~ 72%. #D5C786 is quite light color.
R + G + B =
213 + 199 + 134 = 546 (100%)
R 213 of 546 ~ 39.01%
G 199 of 546 ~ 36.45%
B 134 of 546 ~ 24.54%
#D5C786 color CMYK value is (0,7,37,16).
CMYK: (0,7,37,16) C0M7Y37K16 (0%,7%,37%,16%) (0.00/0.07/0.37/0.16)
D5 | C7 | 86 | |
---|---|---|---|
RGB | 213 | 199 | 134 |
HSL | 49° | 48.47% | 68.04% |
HSB/HSV | 49° | 37.09% | 83.53% |
CMYK | 0.00% | 6.57% | 37.09% |
16.47% |
HEX | D5 | C7 | 86 |
Decimal | 213 | 199 | 134 |
Binary | 11010101 | 11000111 | 10000110 |
Octal | 325 | 307 | 206 |
Examples of css and html codes for elements with #D5C786 color. Also use rgb(213,199,134) instead hex code.
.myTextColor { color: #D5C786; }
<p style="color:#D5C786">This sample text font color is #D5C786.</p>
This text font color is #D5C786.
.myBgColor { background-color: #D5C786; }
<div style="background-color:#D5C786">Inner text</div>
This div background color is #D5C786.
.myBorderColor { border: 1px solid #D5C786; }
<div style="border:3px solid #D5C786">Div</div>
This div border color is #D5C786.
.myOpacity80 { color: #D5C786; opacity: 0.8; }
<p style="color:#D5C786;opacity:0.8;">80%</p>
Text with #D5C786 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5C786;}
<p style="text-shadow: 3px 3px 1px #D5C786">Text here.</p>
This text has shadow with #D5C786 color.
.textShadow {text-shadow: 3px 3px 1px #D5C786, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5C786, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5C786 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5C786, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5C786, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5C786 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5C786; -webkit-box-shadow: 1px 1px 3px 2px #D5C786; box-shadow: 1px 1px 3px 2px #D5C786; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5C786; -webkit-box-shadow: 1px 1px 3px 2px #D5C786; box-shadow:1px 1px 3px 2px #D5C786;">
Div content here</div>
This text has color #D5C786 on black background.
This text has color #D5C786 on white background.
This text has black color on #D5C786 background.
This text has white color on #D5C786 background.