HEX: #A47EAB
RGB: (164,126,171)
#A47EAB contains red, green and blue colors in about the same proportion. Web safe color of #A47EAB is #996699 (or #969).
#A47EAB color RGB value is (164,126,171).
RGB: (164,126,171) (64%,49%,67%)
R 164 of 255 = 64%
G 126 of 255 = 49%
B 171 of 255 = 67%
R + G + B ~ 60%. #A47EAB is middle color (not dark and not light).
R + G + B =
164 + 126 + 171 = 461 (100%)
R 164 of 461 ~ 35.57%
G 126 of 461 ~ 27.33%
B 171 of 461 ~ 37.09%
#A47EAB color CMYK value is (4,26,0,33).
CMYK: (4,26,0,33) C4M26Y0K33 (4%,26%,0%,33%) (0.04/0.26/0.00/0.33)
A4 | 7E | AB | |
---|---|---|---|
RGB | 164 | 126 | 171 |
HSL | 291° | 21.13% | 58.24% |
HSB/HSV | 291° | 26.32% | 67.06% |
CMYK | 4.09% | 26.32% | 0.00% |
32.94% |
HEX | A4 | 7E | AB |
Decimal | 164 | 126 | 171 |
Binary | 10100100 | 1111110 | 10101011 |
Octal | 244 | 176 | 253 |
Examples of css and html codes for elements with #A47EAB color. Also use rgb(164,126,171) instead hex code.
.myTextColor { color: #A47EAB; }
<p style="color:#A47EAB">This sample text font color is #A47EAB.</p>
This text font color is #A47EAB.
.myBgColor { background-color: #A47EAB; }
<div style="background-color:#A47EAB">Inner text</div>
This div background color is #A47EAB.
.myBorderColor { border: 1px solid #A47EAB; }
<div style="border:3px solid #A47EAB">Div</div>
This div border color is #A47EAB.
.myOpacity80 { color: #A47EAB; opacity: 0.8; }
<p style="color:#A47EAB;opacity:0.8;">80%</p>
Text with #A47EAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A47EAB;}
<p style="text-shadow: 3px 3px 1px #A47EAB">Text here.</p>
This text has shadow with #A47EAB color.
.textShadow {text-shadow: 3px 3px 1px #A47EAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A47EAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A47EAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A47EAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A47EAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A47EAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A47EAB; -webkit-box-shadow: 1px 1px 3px 2px #A47EAB; box-shadow: 1px 1px 3px 2px #A47EAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A47EAB; -webkit-box-shadow: 1px 1px 3px 2px #A47EAB; box-shadow:1px 1px 3px 2px #A47EAB;">
Div content here</div>
This text has color #A47EAB on black background.
This text has color #A47EAB on white background.
This text has black color on #A47EAB background.
This text has white color on #A47EAB background.