HEX: #A74D4E
RGB: (167,77,78)
#A74D4E contains mainly red color. Web safe color of #A74D4E is #993366 (or #936).
#A74D4E color RGB value is (167,77,78).
RGB: (167,77,78) (65%,30%,31%)
R 167 of 255 = 65%
G 77 of 255 = 30%
B 78 of 255 = 31%
R + G + B ~ 42%. #A74D4E is middle color (not dark and not light).
R + G + B =
167 + 77 + 78 = 322 (100%)
R 167 of 322 ~ 51.86%
G 77 of 322 ~ 23.91%
B 78 of 322 ~ 24.22%
#A74D4E color CMYK value is (0,54,53,35).
CMYK: (0,54,53,35) C0M54Y53K35 (0%,54%,53%,35%) (0.00/0.54/0.53/0.35)
A7 | 4D | 4E | |
---|---|---|---|
RGB | 167 | 77 | 78 |
HSL | 359° | 36.89% | 47.84% |
HSB/HSV | 359° | 53.89% | 65.49% |
CMYK | 0.00% | 53.89% | 53.29% |
34.51% |
HEX | A7 | 4D | 4E |
Decimal | 167 | 77 | 78 |
Binary | 10100111 | 1001101 | 1001110 |
Octal | 247 | 115 | 116 |
Examples of css and html codes for elements with #A74D4E color. Also use rgb(167,77,78) instead hex code.
.myTextColor { color: #A74D4E; }
<p style="color:#A74D4E">This sample text font color is #A74D4E.</p>
This text font color is #A74D4E.
.myBgColor { background-color: #A74D4E; }
<div style="background-color:#A74D4E">Inner text</div>
This div background color is #A74D4E.
.myBorderColor { border: 1px solid #A74D4E; }
<div style="border:3px solid #A74D4E">Div</div>
This div border color is #A74D4E.
.myOpacity80 { color: #A74D4E; opacity: 0.8; }
<p style="color:#A74D4E;opacity:0.8;">80%</p>
Text with #A74D4E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A74D4E;}
<p style="text-shadow: 3px 3px 1px #A74D4E">Text here.</p>
This text has shadow with #A74D4E color.
.textShadow {text-shadow: 3px 3px 1px #A74D4E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A74D4E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A74D4E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A74D4E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A74D4E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A74D4E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A74D4E; -webkit-box-shadow: 1px 1px 3px 2px #A74D4E; box-shadow: 1px 1px 3px 2px #A74D4E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A74D4E; -webkit-box-shadow: 1px 1px 3px 2px #A74D4E; box-shadow:1px 1px 3px 2px #A74D4E;">
Div content here</div>
This text has color #A74D4E on black background.
This text has color #A74D4E on white background.
This text has black color on #A74D4E background.
This text has white color on #A74D4E background.