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