HEX: #D9C59F
RGB: (217,197,159)
#D9C59F contains red, green and blue colors in about the same proportion. Web safe color of #D9C59F is #CCCC99 (or #CC9).
#D9C59F color RGB value is (217,197,159).
RGB: (217,197,159) (85%,77%,62%)
R 217 of 255 = 85%
G 197 of 255 = 77%
B 159 of 255 = 62%
R + G + B ~ 75%. #D9C59F is quite light color.
R + G + B =
217 + 197 + 159 = 573 (100%)
R 217 of 573 ~ 37.87%
G 197 of 573 ~ 34.38%
B 159 of 573 ~ 27.75%
#D9C59F color CMYK value is (0,9,27,15).
CMYK: (0,9,27,15) C0M9Y27K15 (0%,9%,27%,15%) (0.00/0.09/0.27/0.15)
D9 | C5 | 9F | |
---|---|---|---|
RGB | 217 | 197 | 159 |
HSL | 39° | 43.28% | 73.73% |
HSB/HSV | 39° | 26.73% | 85.10% |
CMYK | 0.00% | 9.22% | 26.73% |
14.90% |
HEX | D9 | C5 | 9F |
Decimal | 217 | 197 | 159 |
Binary | 11011001 | 11000101 | 10011111 |
Octal | 331 | 305 | 237 |
Examples of css and html codes for elements with #D9C59F color. Also use rgb(217,197,159) instead hex code.
.myTextColor { color: #D9C59F; }
<p style="color:#D9C59F">This sample text font color is #D9C59F.</p>
This text font color is #D9C59F.
.myBgColor { background-color: #D9C59F; }
<div style="background-color:#D9C59F">Inner text</div>
This div background color is #D9C59F.
.myBorderColor { border: 1px solid #D9C59F; }
<div style="border:3px solid #D9C59F">Div</div>
This div border color is #D9C59F.
.myOpacity80 { color: #D9C59F; opacity: 0.8; }
<p style="color:#D9C59F;opacity:0.8;">80%</p>
Text with #D9C59F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D9C59F;}
<p style="text-shadow: 3px 3px 1px #D9C59F">Text here.</p>
This text has shadow with #D9C59F color.
.textShadow {text-shadow: 3px 3px 1px #D9C59F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D9C59F, 5px 5px 20px red">Text here.</p>
This text has shadow with #D9C59F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D9C59F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D9C59F, Direction=45, Strength=4)">Text</p>
This text has shadow with #D9C59F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D9C59F; -webkit-box-shadow: 1px 1px 3px 2px #D9C59F; box-shadow: 1px 1px 3px 2px #D9C59F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D9C59F; -webkit-box-shadow: 1px 1px 3px 2px #D9C59F; box-shadow:1px 1px 3px 2px #D9C59F;">
Div content here</div>
This text has color #D9C59F on black background.
This text has color #D9C59F on white background.
This text has black color on #D9C59F background.
This text has white color on #D9C59F background.