HEX: #D0474E
RGB: (208,71,78)
#D0474E contains mainly red color. Web safe color of #D0474E is #CC3366 (or #C36).
#D0474E color RGB value is (208,71,78).
RGB: (208,71,78) (82%,28%,31%)
R 208 of 255 = 82%
G 71 of 255 = 28%
B 78 of 255 = 31%
R + G + B ~ 47%. #D0474E is middle color (not dark and not light).
R + G + B =
208 + 71 + 78 = 357 (100%)
R 208 of 357 ~ 58.26%
G 71 of 357 ~ 19.89%
B 78 of 357 ~ 21.85%
#D0474E color CMYK value is (0,66,63,18).
CMYK: (0,66,63,18) C0M66Y63K18 (0%,66%,63%,18%) (0.00/0.66/0.63/0.18)
D0 | 47 | 4E | |
---|---|---|---|
RGB | 208 | 71 | 78 |
HSL | 357° | 59.31% | 54.71% |
HSB/HSV | 357° | 65.87% | 81.57% |
CMYK | 0.00% | 65.87% | 62.50% |
18.43% |
HEX | D0 | 47 | 4E |
Decimal | 208 | 71 | 78 |
Binary | 11010000 | 1000111 | 1001110 |
Octal | 320 | 107 | 116 |
Examples of css and html codes for elements with #D0474E color. Also use rgb(208,71,78) instead hex code.
.myTextColor { color: #D0474E; }
<p style="color:#D0474E">This sample text font color is #D0474E.</p>
This text font color is #D0474E.
.myBgColor { background-color: #D0474E; }
<div style="background-color:#D0474E">Inner text</div>
This div background color is #D0474E.
.myBorderColor { border: 1px solid #D0474E; }
<div style="border:3px solid #D0474E">Div</div>
This div border color is #D0474E.
.myOpacity80 { color: #D0474E; opacity: 0.8; }
<p style="color:#D0474E;opacity:0.8;">80%</p>
Text with #D0474E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D0474E;}
<p style="text-shadow: 3px 3px 1px #D0474E">Text here.</p>
This text has shadow with #D0474E color.
.textShadow {text-shadow: 3px 3px 1px #D0474E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D0474E, 5px 5px 20px red">Text here.</p>
This text has shadow with #D0474E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D0474E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D0474E, Direction=45, Strength=4)">Text</p>
This text has shadow with #D0474E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D0474E; -webkit-box-shadow: 1px 1px 3px 2px #D0474E; box-shadow: 1px 1px 3px 2px #D0474E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D0474E; -webkit-box-shadow: 1px 1px 3px 2px #D0474E; box-shadow:1px 1px 3px 2px #D0474E;">
Div content here</div>
This text has color #D0474E on black background.
This text has color #D0474E on white background.
This text has black color on #D0474E background.
This text has white color on #D0474E background.