HEX: #A477AE
RGB: (164,119,174)
#A477AE contains red, green and blue colors in about the same proportion. Web safe color of #A477AE is #996699 (or #969).
#A477AE color RGB value is (164,119,174).
RGB: (164,119,174) (64%,47%,68%)
R 164 of 255 = 64%
G 119 of 255 = 47%
B 174 of 255 = 68%
R + G + B ~ 60%. #A477AE is middle color (not dark and not light).
R + G + B =
164 + 119 + 174 = 457 (100%)
R 164 of 457 ~ 35.89%
G 119 of 457 ~ 26.04%
B 174 of 457 ~ 38.07%
#A477AE color CMYK value is (6,32,0,32).
CMYK: (6,32,0,32) C6M32Y0K32 (6%,32%,0%,32%) (0.06/0.32/0.00/0.32)
A4 | 77 | AE | |
---|---|---|---|
RGB | 164 | 119 | 174 |
HSL | 289° | 25.35% | 57.45% |
HSB/HSV | 289° | 31.61% | 68.24% |
CMYK | 5.75% | 31.61% | 0.00% |
31.76% |
HEX | A4 | 77 | AE |
Decimal | 164 | 119 | 174 |
Binary | 10100100 | 1110111 | 10101110 |
Octal | 244 | 167 | 256 |
Examples of css and html codes for elements with #A477AE color. Also use rgb(164,119,174) instead hex code.
.myTextColor { color: #A477AE; }
<p style="color:#A477AE">This sample text font color is #A477AE.</p>
This text font color is #A477AE.
.myBgColor { background-color: #A477AE; }
<div style="background-color:#A477AE">Inner text</div>
This div background color is #A477AE.
.myBorderColor { border: 1px solid #A477AE; }
<div style="border:3px solid #A477AE">Div</div>
This div border color is #A477AE.
.myOpacity80 { color: #A477AE; opacity: 0.8; }
<p style="color:#A477AE;opacity:0.8;">80%</p>
Text with #A477AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A477AE;}
<p style="text-shadow: 3px 3px 1px #A477AE">Text here.</p>
This text has shadow with #A477AE color.
.textShadow {text-shadow: 3px 3px 1px #A477AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A477AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A477AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A477AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A477AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A477AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A477AE; -webkit-box-shadow: 1px 1px 3px 2px #A477AE; box-shadow: 1px 1px 3px 2px #A477AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A477AE; -webkit-box-shadow: 1px 1px 3px 2px #A477AE; box-shadow:1px 1px 3px 2px #A477AE;">
Div content here</div>
This text has color #A477AE on black background.
This text has color #A477AE on white background.
This text has black color on #A477AE background.
This text has white color on #A477AE background.