HEX: #DDA74D
RGB: (221,167,77)
#DDA74D contains mainly red and green colors. Web safe color of #DDA74D is #CC9933 (or #C93).
#DDA74D color RGB value is (221,167,77).
RGB: (221,167,77) (87%,65%,30%)
R 221 of 255 = 87%
G 167 of 255 = 65%
B 77 of 255 = 30%
R + G + B ~ 61%. #DDA74D is quite light color.
R + G + B =
221 + 167 + 77 = 465 (100%)
R 221 of 465 ~ 47.53%
G 167 of 465 ~ 35.91%
B 77 of 465 ~ 16.56%
#DDA74D color CMYK value is (0,24,65,13).
CMYK: (0,24,65,13) C0M24Y65K13 (0%,24%,65%,13%) (0.00/0.24/0.65/0.13)
DD | A7 | 4D | |
---|---|---|---|
RGB | 221 | 167 | 77 |
HSL | 38° | 67.92% | 58.43% |
HSB/HSV | 38° | 65.16% | 86.67% |
CMYK | 0.00% | 24.43% | 65.16% |
13.33% |
HEX | DD | A7 | 4D |
Decimal | 221 | 167 | 77 |
Binary | 11011101 | 10100111 | 1001101 |
Octal | 335 | 247 | 115 |
Examples of css and html codes for elements with #DDA74D color. Also use rgb(221,167,77) instead hex code.
.myTextColor { color: #DDA74D; }
<p style="color:#DDA74D">This sample text font color is #DDA74D.</p>
This text font color is #DDA74D.
.myBgColor { background-color: #DDA74D; }
<div style="background-color:#DDA74D">Inner text</div>
This div background color is #DDA74D.
.myBorderColor { border: 1px solid #DDA74D; }
<div style="border:3px solid #DDA74D">Div</div>
This div border color is #DDA74D.
.myOpacity80 { color: #DDA74D; opacity: 0.8; }
<p style="color:#DDA74D;opacity:0.8;">80%</p>
Text with #DDA74D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDA74D;}
<p style="text-shadow: 3px 3px 1px #DDA74D">Text here.</p>
This text has shadow with #DDA74D color.
.textShadow {text-shadow: 3px 3px 1px #DDA74D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDA74D, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDA74D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDA74D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDA74D, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDA74D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDA74D; -webkit-box-shadow: 1px 1px 3px 2px #DDA74D; box-shadow: 1px 1px 3px 2px #DDA74D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDA74D; -webkit-box-shadow: 1px 1px 3px 2px #DDA74D; box-shadow:1px 1px 3px 2px #DDA74D;">
Div content here</div>
This text has color #DDA74D on black background.
This text has color #DDA74D on white background.
This text has black color on #DDA74D background.
This text has white color on #DDA74D background.