HEX: #A47BAC
RGB: (164,123,172)
#A47BAC contains red, green and blue colors in about the same proportion. Web safe color of #A47BAC is #996699 (or #969).
#A47BAC color RGB value is (164,123,172).
RGB: (164,123,172) (64%,48%,67%)
R 164 of 255 = 64%
G 123 of 255 = 48%
B 172 of 255 = 67%
R + G + B ~ 60%. #A47BAC is middle color (not dark and not light).
R + G + B =
164 + 123 + 172 = 459 (100%)
R 164 of 459 ~ 35.73%
G 123 of 459 ~ 26.8%
B 172 of 459 ~ 37.47%
#A47BAC color CMYK value is (5,28,0,33).
CMYK: (5,28,0,33) C5M28Y0K33 (5%,28%,0%,33%) (0.05/0.28/0.00/0.33)
A4 | 7B | AC | |
---|---|---|---|
RGB | 164 | 123 | 172 |
HSL | 290° | 22.79% | 57.84% |
HSB/HSV | 290° | 28.49% | 67.45% |
CMYK | 4.65% | 28.49% | 0.00% |
32.55% |
HEX | A4 | 7B | AC |
Decimal | 164 | 123 | 172 |
Binary | 10100100 | 1111011 | 10101100 |
Octal | 244 | 173 | 254 |
Examples of css and html codes for elements with #A47BAC color. Also use rgb(164,123,172) instead hex code.
.myTextColor { color: #A47BAC; }
<p style="color:#A47BAC">This sample text font color is #A47BAC.</p>
This text font color is #A47BAC.
.myBgColor { background-color: #A47BAC; }
<div style="background-color:#A47BAC">Inner text</div>
This div background color is #A47BAC.
.myBorderColor { border: 1px solid #A47BAC; }
<div style="border:3px solid #A47BAC">Div</div>
This div border color is #A47BAC.
.myOpacity80 { color: #A47BAC; opacity: 0.8; }
<p style="color:#A47BAC;opacity:0.8;">80%</p>
Text with #A47BAC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A47BAC;}
<p style="text-shadow: 3px 3px 1px #A47BAC">Text here.</p>
This text has shadow with #A47BAC color.
.textShadow {text-shadow: 3px 3px 1px #A47BAC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A47BAC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A47BAC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A47BAC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A47BAC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A47BAC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A47BAC; -webkit-box-shadow: 1px 1px 3px 2px #A47BAC; box-shadow: 1px 1px 3px 2px #A47BAC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A47BAC; -webkit-box-shadow: 1px 1px 3px 2px #A47BAC; box-shadow:1px 1px 3px 2px #A47BAC;">
Div content here</div>
This text has color #A47BAC on black background.
This text has color #A47BAC on white background.
This text has black color on #A47BAC background.
This text has white color on #A47BAC background.