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