HEX: #A4777E
RGB: (164,119,126)
#A4777E contains red, green and blue colors in about the same proportion. Web safe color of #A4777E is #996666 (or #966).
#A4777E color RGB value is (164,119,126).
RGB: (164,119,126) (64%,47%,49%)
R 164 of 255 = 64%
G 119 of 255 = 47%
B 126 of 255 = 49%
R + G + B ~ 53%. #A4777E is middle color (not dark and not light).
R + G + B =
164 + 119 + 126 = 409 (100%)
R 164 of 409 ~ 40.1%
G 119 of 409 ~ 29.1%
B 126 of 409 ~ 30.81%
#A4777E color CMYK value is (0,27,23,36).
CMYK: (0,27,23,36) C0M27Y23K36 (0%,27%,23%,36%) (0.00/0.27/0.23/0.36)
A4 | 77 | 7E | |
---|---|---|---|
RGB | 164 | 119 | 126 |
HSL | 351° | 19.82% | 55.49% |
HSB/HSV | 351° | 27.44% | 64.31% |
CMYK | 0.00% | 27.44% | 23.17% |
35.69% |
HEX | A4 | 77 | 7E |
Decimal | 164 | 119 | 126 |
Binary | 10100100 | 1110111 | 1111110 |
Octal | 244 | 167 | 176 |
Examples of css and html codes for elements with #A4777E color. Also use rgb(164,119,126) instead hex code.
.myTextColor { color: #A4777E; }
<p style="color:#A4777E">This sample text font color is #A4777E.</p>
This text font color is #A4777E.
.myBgColor { background-color: #A4777E; }
<div style="background-color:#A4777E">Inner text</div>
This div background color is #A4777E.
.myBorderColor { border: 1px solid #A4777E; }
<div style="border:3px solid #A4777E">Div</div>
This div border color is #A4777E.
.myOpacity80 { color: #A4777E; opacity: 0.8; }
<p style="color:#A4777E;opacity:0.8;">80%</p>
Text with #A4777E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4777E;}
<p style="text-shadow: 3px 3px 1px #A4777E">Text here.</p>
This text has shadow with #A4777E color.
.textShadow {text-shadow: 3px 3px 1px #A4777E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4777E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4777E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4777E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4777E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4777E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4777E; -webkit-box-shadow: 1px 1px 3px 2px #A4777E; box-shadow: 1px 1px 3px 2px #A4777E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4777E; -webkit-box-shadow: 1px 1px 3px 2px #A4777E; box-shadow:1px 1px 3px 2px #A4777E;">
Div content here</div>
This text has color #A4777E on black background.
This text has color #A4777E on white background.
This text has black color on #A4777E background.
This text has white color on #A4777E background.