HEX: #A9779D
RGB: (169,119,157)
#A9779D contains red, green and blue colors in about the same proportion. Web safe color of #A9779D is #996699 (or #969).
#A9779D color RGB value is (169,119,157).
RGB: (169,119,157) (66%,47%,62%)
R 169 of 255 = 66%
G 119 of 255 = 47%
B 157 of 255 = 62%
R + G + B ~ 58%. #A9779D is middle color (not dark and not light).
R + G + B =
169 + 119 + 157 = 445 (100%)
R 169 of 445 ~ 37.98%
G 119 of 445 ~ 26.74%
B 157 of 445 ~ 35.28%
#A9779D color CMYK value is (0,30,7,34).
CMYK: (0,30,7,34) C0M30Y7K34 (0%,30%,7%,34%) (0.00/0.30/0.07/0.34)
A9 | 77 | 9D | |
---|---|---|---|
RGB | 169 | 119 | 157 |
HSL | 314° | 22.52% | 56.47% |
HSB/HSV | 314° | 29.59% | 66.27% |
CMYK | 0.00% | 29.59% | 7.10% |
33.73% |
HEX | A9 | 77 | 9D |
Decimal | 169 | 119 | 157 |
Binary | 10101001 | 1110111 | 10011101 |
Octal | 251 | 167 | 235 |
Examples of css and html codes for elements with #A9779D color. Also use rgb(169,119,157) instead hex code.
.myTextColor { color: #A9779D; }
<p style="color:#A9779D">This sample text font color is #A9779D.</p>
This text font color is #A9779D.
.myBgColor { background-color: #A9779D; }
<div style="background-color:#A9779D">Inner text</div>
This div background color is #A9779D.
.myBorderColor { border: 1px solid #A9779D; }
<div style="border:3px solid #A9779D">Div</div>
This div border color is #A9779D.
.myOpacity80 { color: #A9779D; opacity: 0.8; }
<p style="color:#A9779D;opacity:0.8;">80%</p>
Text with #A9779D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A9779D;}
<p style="text-shadow: 3px 3px 1px #A9779D">Text here.</p>
This text has shadow with #A9779D color.
.textShadow {text-shadow: 3px 3px 1px #A9779D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A9779D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A9779D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A9779D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A9779D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A9779D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A9779D; -webkit-box-shadow: 1px 1px 3px 2px #A9779D; box-shadow: 1px 1px 3px 2px #A9779D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A9779D; -webkit-box-shadow: 1px 1px 3px 2px #A9779D; box-shadow:1px 1px 3px 2px #A9779D;">
Div content here</div>
This text has color #A9779D on black background.
This text has color #A9779D on white background.
This text has black color on #A9779D background.
This text has white color on #A9779D background.