HEX: #D59D4A
RGB: (213,157,74)
#D59D4A contains mainly red and green colors. Web safe color of #D59D4A is #CC9933 (or #C93).
#D59D4A color RGB value is (213,157,74).
RGB: (213,157,74) (84%,62%,29%)
R 213 of 255 = 84%
G 157 of 255 = 62%
B 74 of 255 = 29%
R + G + B ~ 58%. #D59D4A is middle color (not dark and not light).
R + G + B =
213 + 157 + 74 = 444 (100%)
R 213 of 444 ~ 47.97%
G 157 of 444 ~ 35.36%
B 74 of 444 ~ 16.67%
#D59D4A color CMYK value is (0,26,65,16).
CMYK: (0,26,65,16) C0M26Y65K16 (0%,26%,65%,16%) (0.00/0.26/0.65/0.16)
D5 | 9D | 4A | |
---|---|---|---|
RGB | 213 | 157 | 74 |
HSL | 36° | 62.33% | 56.27% |
HSB/HSV | 36° | 65.26% | 83.53% |
CMYK | 0.00% | 26.29% | 65.26% |
16.47% |
HEX | D5 | 9D | 4A |
Decimal | 213 | 157 | 74 |
Binary | 11010101 | 10011101 | 1001010 |
Octal | 325 | 235 | 112 |
Examples of css and html codes for elements with #D59D4A color. Also use rgb(213,157,74) instead hex code.
.myTextColor { color: #D59D4A; }
<p style="color:#D59D4A">This sample text font color is #D59D4A.</p>
This text font color is #D59D4A.
.myBgColor { background-color: #D59D4A; }
<div style="background-color:#D59D4A">Inner text</div>
This div background color is #D59D4A.
.myBorderColor { border: 1px solid #D59D4A; }
<div style="border:3px solid #D59D4A">Div</div>
This div border color is #D59D4A.
.myOpacity80 { color: #D59D4A; opacity: 0.8; }
<p style="color:#D59D4A;opacity:0.8;">80%</p>
Text with #D59D4A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D59D4A;}
<p style="text-shadow: 3px 3px 1px #D59D4A">Text here.</p>
This text has shadow with #D59D4A color.
.textShadow {text-shadow: 3px 3px 1px #D59D4A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D59D4A, 5px 5px 20px red">Text here.</p>
This text has shadow with #D59D4A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D59D4A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D59D4A, Direction=45, Strength=4)">Text</p>
This text has shadow with #D59D4A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D59D4A; -webkit-box-shadow: 1px 1px 3px 2px #D59D4A; box-shadow: 1px 1px 3px 2px #D59D4A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D59D4A; -webkit-box-shadow: 1px 1px 3px 2px #D59D4A; box-shadow:1px 1px 3px 2px #D59D4A;">
Div content here</div>
This text has color #D59D4A on black background.
This text has color #D59D4A on white background.
This text has black color on #D59D4A background.
This text has white color on #D59D4A background.