HEX: #D5C477
RGB: (213,196,119)
#D5C477 contains mainly red and green colors. Web safe color of #D5C477 is #CCCC66 (or #CC6).
#D5C477 color RGB value is (213,196,119).
RGB: (213,196,119) (84%,77%,47%)
R 213 of 255 = 84%
G 196 of 255 = 77%
B 119 of 255 = 47%
R + G + B ~ 69%. #D5C477 is quite light color.
R + G + B =
213 + 196 + 119 = 528 (100%)
R 213 of 528 ~ 40.34%
G 196 of 528 ~ 37.12%
B 119 of 528 ~ 22.54%
#D5C477 color CMYK value is (0,8,44,16).
CMYK: (0,8,44,16) C0M8Y44K16 (0%,8%,44%,16%) (0.00/0.08/0.44/0.16)
D5 | C4 | 77 | |
---|---|---|---|
RGB | 213 | 196 | 119 |
HSL | 49° | 52.81% | 65.10% |
HSB/HSV | 49° | 44.13% | 83.53% |
CMYK | 0.00% | 7.98% | 44.13% |
16.47% |
HEX | D5 | C4 | 77 |
Decimal | 213 | 196 | 119 |
Binary | 11010101 | 11000100 | 1110111 |
Octal | 325 | 304 | 167 |
Examples of css and html codes for elements with #D5C477 color. Also use rgb(213,196,119) instead hex code.
.myTextColor { color: #D5C477; }
<p style="color:#D5C477">This sample text font color is #D5C477.</p>
This text font color is #D5C477.
.myBgColor { background-color: #D5C477; }
<div style="background-color:#D5C477">Inner text</div>
This div background color is #D5C477.
.myBorderColor { border: 1px solid #D5C477; }
<div style="border:3px solid #D5C477">Div</div>
This div border color is #D5C477.
.myOpacity80 { color: #D5C477; opacity: 0.8; }
<p style="color:#D5C477;opacity:0.8;">80%</p>
Text with #D5C477 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5C477;}
<p style="text-shadow: 3px 3px 1px #D5C477">Text here.</p>
This text has shadow with #D5C477 color.
.textShadow {text-shadow: 3px 3px 1px #D5C477, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5C477, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5C477 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5C477, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5C477, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5C477 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5C477; -webkit-box-shadow: 1px 1px 3px 2px #D5C477; box-shadow: 1px 1px 3px 2px #D5C477; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5C477; -webkit-box-shadow: 1px 1px 3px 2px #D5C477; box-shadow:1px 1px 3px 2px #D5C477;">
Div content here</div>
This text has color #D5C477 on black background.
This text has color #D5C477 on white background.
This text has black color on #D5C477 background.
This text has white color on #D5C477 background.