HEX: #DD477C
RGB: (221,71,124)
#DD477C contains mainly red color. Web safe color of #DD477C is #CC3366 (or #C36).
#DD477C color RGB value is (221,71,124).
RGB: (221,71,124) (87%,28%,49%)
R 221 of 255 = 87%
G 71 of 255 = 28%
B 124 of 255 = 49%
R + G + B ~ 55%. #DD477C is middle color (not dark and not light).
R + G + B =
221 + 71 + 124 = 416 (100%)
R 221 of 416 ~ 53.13%
G 71 of 416 ~ 17.07%
B 124 of 416 ~ 29.81%
#DD477C color CMYK value is (0,68,44,13).
CMYK: (0,68,44,13) C0M68Y44K13 (0%,68%,44%,13%) (0.00/0.68/0.44/0.13)
DD | 47 | 7C | |
---|---|---|---|
RGB | 221 | 71 | 124 |
HSL | 339° | 68.81% | 57.25% |
HSB/HSV | 339° | 67.87% | 86.67% |
CMYK | 0.00% | 67.87% | 43.89% |
13.33% |
HEX | DD | 47 | 7C |
Decimal | 221 | 71 | 124 |
Binary | 11011101 | 1000111 | 1111100 |
Octal | 335 | 107 | 174 |
Examples of css and html codes for elements with #DD477C color. Also use rgb(221,71,124) instead hex code.
.myTextColor { color: #DD477C; }
<p style="color:#DD477C">This sample text font color is #DD477C.</p>
This text font color is #DD477C.
.myBgColor { background-color: #DD477C; }
<div style="background-color:#DD477C">Inner text</div>
This div background color is #DD477C.
.myBorderColor { border: 1px solid #DD477C; }
<div style="border:3px solid #DD477C">Div</div>
This div border color is #DD477C.
.myOpacity80 { color: #DD477C; opacity: 0.8; }
<p style="color:#DD477C;opacity:0.8;">80%</p>
Text with #DD477C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DD477C;}
<p style="text-shadow: 3px 3px 1px #DD477C">Text here.</p>
This text has shadow with #DD477C color.
.textShadow {text-shadow: 3px 3px 1px #DD477C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DD477C, 5px 5px 20px red">Text here.</p>
This text has shadow with #DD477C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DD477C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DD477C, Direction=45, Strength=4)">Text</p>
This text has shadow with #DD477C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DD477C; -webkit-box-shadow: 1px 1px 3px 2px #DD477C; box-shadow: 1px 1px 3px 2px #DD477C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DD477C; -webkit-box-shadow: 1px 1px 3px 2px #DD477C; box-shadow:1px 1px 3px 2px #DD477C;">
Div content here</div>
This text has color #DD477C on black background.
This text has color #DD477C on white background.
This text has black color on #DD477C background.
This text has white color on #DD477C background.