HEX: #DD6D4C
RGB: (221,109,76)
#DD6D4C contains mainly red color. Web safe color of #DD6D4C is #CC6633 (or #C63).
#DD6D4C color RGB value is (221,109,76).
RGB: (221,109,76) (87%,43%,30%)
R 221 of 255 = 87%
G 109 of 255 = 43%
B 76 of 255 = 30%
R + G + B ~ 53%. #DD6D4C is middle color (not dark and not light).
R + G + B =
221 + 109 + 76 = 406 (100%)
R 221 of 406 ~ 54.43%
G 109 of 406 ~ 26.85%
B 76 of 406 ~ 18.72%
#DD6D4C color CMYK value is (0,51,66,13).
CMYK: (0,51,66,13) C0M51Y66K13 (0%,51%,66%,13%) (0.00/0.51/0.66/0.13)
DD | 6D | 4C | |
---|---|---|---|
RGB | 221 | 109 | 76 |
HSL | 14° | 68.08% | 58.24% |
HSB/HSV | 14° | 65.61% | 86.67% |
CMYK | 0.00% | 50.68% | 65.61% |
13.33% |
HEX | DD | 6D | 4C |
Decimal | 221 | 109 | 76 |
Binary | 11011101 | 1101101 | 1001100 |
Octal | 335 | 155 | 114 |
Examples of css and html codes for elements with #DD6D4C color. Also use rgb(221,109,76) instead hex code.
.myTextColor { color: #DD6D4C; }
<p style="color:#DD6D4C">This sample text font color is #DD6D4C.</p>
This text font color is #DD6D4C.
.myBgColor { background-color: #DD6D4C; }
<div style="background-color:#DD6D4C">Inner text</div>
This div background color is #DD6D4C.
.myBorderColor { border: 1px solid #DD6D4C; }
<div style="border:3px solid #DD6D4C">Div</div>
This div border color is #DD6D4C.
.myOpacity80 { color: #DD6D4C; opacity: 0.8; }
<p style="color:#DD6D4C;opacity:0.8;">80%</p>
Text with #DD6D4C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DD6D4C;}
<p style="text-shadow: 3px 3px 1px #DD6D4C">Text here.</p>
This text has shadow with #DD6D4C color.
.textShadow {text-shadow: 3px 3px 1px #DD6D4C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DD6D4C, 5px 5px 20px red">Text here.</p>
This text has shadow with #DD6D4C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DD6D4C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DD6D4C, Direction=45, Strength=4)">Text</p>
This text has shadow with #DD6D4C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DD6D4C; -webkit-box-shadow: 1px 1px 3px 2px #DD6D4C; box-shadow: 1px 1px 3px 2px #DD6D4C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DD6D4C; -webkit-box-shadow: 1px 1px 3px 2px #DD6D4C; box-shadow:1px 1px 3px 2px #DD6D4C;">
Div content here</div>
This text has color #DD6D4C on black background.
This text has color #DD6D4C on white background.
This text has black color on #DD6D4C background.
This text has white color on #DD6D4C background.