HEX: #A476AB
RGB: (164,118,171)
#A476AB contains red, green and blue colors in about the same proportion. Web safe color of #A476AB is #996699 (or #969).
#A476AB color RGB value is (164,118,171).
RGB: (164,118,171) (64%,46%,67%)
R 164 of 255 = 64%
G 118 of 255 = 46%
B 171 of 255 = 67%
R + G + B ~ 59%. #A476AB is middle color (not dark and not light).
R + G + B =
164 + 118 + 171 = 453 (100%)
R 164 of 453 ~ 36.2%
G 118 of 453 ~ 26.05%
B 171 of 453 ~ 37.75%
#A476AB color CMYK value is (4,31,0,33).
CMYK: (4,31,0,33) C4M31Y0K33 (4%,31%,0%,33%) (0.04/0.31/0.00/0.33)
A4 | 76 | AB | |
---|---|---|---|
RGB | 164 | 118 | 171 |
HSL | 292° | 23.98% | 56.67% |
HSB/HSV | 292° | 30.99% | 67.06% |
CMYK | 4.09% | 30.99% | 0.00% |
32.94% |
HEX | A4 | 76 | AB |
Decimal | 164 | 118 | 171 |
Binary | 10100100 | 1110110 | 10101011 |
Octal | 244 | 166 | 253 |
Examples of css and html codes for elements with #A476AB color. Also use rgb(164,118,171) instead hex code.
.myTextColor { color: #A476AB; }
<p style="color:#A476AB">This sample text font color is #A476AB.</p>
This text font color is #A476AB.
.myBgColor { background-color: #A476AB; }
<div style="background-color:#A476AB">Inner text</div>
This div background color is #A476AB.
.myBorderColor { border: 1px solid #A476AB; }
<div style="border:3px solid #A476AB">Div</div>
This div border color is #A476AB.
.myOpacity80 { color: #A476AB; opacity: 0.8; }
<p style="color:#A476AB;opacity:0.8;">80%</p>
Text with #A476AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A476AB;}
<p style="text-shadow: 3px 3px 1px #A476AB">Text here.</p>
This text has shadow with #A476AB color.
.textShadow {text-shadow: 3px 3px 1px #A476AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A476AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A476AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A476AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A476AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A476AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A476AB; -webkit-box-shadow: 1px 1px 3px 2px #A476AB; box-shadow: 1px 1px 3px 2px #A476AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A476AB; -webkit-box-shadow: 1px 1px 3px 2px #A476AB; box-shadow:1px 1px 3px 2px #A476AB;">
Div content here</div>
This text has color #A476AB on black background.
This text has color #A476AB on white background.
This text has black color on #A476AB background.
This text has white color on #A476AB background.