HEX: #D5AE75
RGB: (213,174,117)
#D5AE75 contains mainly red and green colors. Web safe color of #D5AE75 is #CC9966 (or #C96).
#D5AE75 color RGB value is (213,174,117).
RGB: (213,174,117) (84%,68%,46%)
R 213 of 255 = 84%
G 174 of 255 = 68%
B 117 of 255 = 46%
R + G + B ~ 66%. #D5AE75 is quite light color.
R + G + B =
213 + 174 + 117 = 504 (100%)
R 213 of 504 ~ 42.26%
G 174 of 504 ~ 34.52%
B 117 of 504 ~ 23.21%
#D5AE75 color CMYK value is (0,18,45,16).
CMYK: (0,18,45,16) C0M18Y45K16 (0%,18%,45%,16%) (0.00/0.18/0.45/0.16)
D5 | AE | 75 | |
---|---|---|---|
RGB | 213 | 174 | 117 |
HSL | 36° | 53.33% | 64.71% |
HSB/HSV | 36° | 45.07% | 83.53% |
CMYK | 0.00% | 18.31% | 45.07% |
16.47% |
HEX | D5 | AE | 75 |
Decimal | 213 | 174 | 117 |
Binary | 11010101 | 10101110 | 1110101 |
Octal | 325 | 256 | 165 |
Examples of css and html codes for elements with #D5AE75 color. Also use rgb(213,174,117) instead hex code.
.myTextColor { color: #D5AE75; }
<p style="color:#D5AE75">This sample text font color is #D5AE75.</p>
This text font color is #D5AE75.
.myBgColor { background-color: #D5AE75; }
<div style="background-color:#D5AE75">Inner text</div>
This div background color is #D5AE75.
.myBorderColor { border: 1px solid #D5AE75; }
<div style="border:3px solid #D5AE75">Div</div>
This div border color is #D5AE75.
.myOpacity80 { color: #D5AE75; opacity: 0.8; }
<p style="color:#D5AE75;opacity:0.8;">80%</p>
Text with #D5AE75 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5AE75;}
<p style="text-shadow: 3px 3px 1px #D5AE75">Text here.</p>
This text has shadow with #D5AE75 color.
.textShadow {text-shadow: 3px 3px 1px #D5AE75, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5AE75, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5AE75 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5AE75, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5AE75, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5AE75 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5AE75; -webkit-box-shadow: 1px 1px 3px 2px #D5AE75; box-shadow: 1px 1px 3px 2px #D5AE75; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5AE75; -webkit-box-shadow: 1px 1px 3px 2px #D5AE75; box-shadow:1px 1px 3px 2px #D5AE75;">
Div content here</div>
This text has color #D5AE75 on black background.
This text has color #D5AE75 on white background.
This text has black color on #D5AE75 background.
This text has white color on #D5AE75 background.