HEX: #A77ED1
RGB: (167,126,209)
#A77ED1 contains mainly red and blue colors. Web safe color of #A77ED1 is #9966CC (or #96C).
#A77ED1 color RGB value is (167,126,209).
RGB: (167,126,209) (65%,49%,82%)
R 167 of 255 = 65%
G 126 of 255 = 49%
B 209 of 255 = 82%
R + G + B ~ 65%. #A77ED1 is quite light color.
R + G + B =
167 + 126 + 209 = 502 (100%)
R 167 of 502 ~ 33.27%
G 126 of 502 ~ 25.1%
B 209 of 502 ~ 41.63%
#A77ED1 color CMYK value is (20,40,0,18).
CMYK: (20,40,0,18) C20M40Y0K18 (20%,40%,0%,18%) (0.20/0.40/0.00/0.18)
A7 | 7E | D1 | |
---|---|---|---|
RGB | 167 | 126 | 209 |
HSL | 270° | 47.43% | 65.69% |
HSB/HSV | 270° | 39.71% | 81.96% |
CMYK | 20.10% | 39.71% | 0.00% |
18.04% |
HEX | A7 | 7E | D1 |
Decimal | 167 | 126 | 209 |
Binary | 10100111 | 1111110 | 11010001 |
Octal | 247 | 176 | 321 |
Examples of css and html codes for elements with #A77ED1 color. Also use rgb(167,126,209) instead hex code.
.myTextColor { color: #A77ED1; }
<p style="color:#A77ED1">This sample text font color is #A77ED1.</p>
This text font color is #A77ED1.
.myBgColor { background-color: #A77ED1; }
<div style="background-color:#A77ED1">Inner text</div>
This div background color is #A77ED1.
.myBorderColor { border: 1px solid #A77ED1; }
<div style="border:3px solid #A77ED1">Div</div>
This div border color is #A77ED1.
.myOpacity80 { color: #A77ED1; opacity: 0.8; }
<p style="color:#A77ED1;opacity:0.8;">80%</p>
Text with #A77ED1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A77ED1;}
<p style="text-shadow: 3px 3px 1px #A77ED1">Text here.</p>
This text has shadow with #A77ED1 color.
.textShadow {text-shadow: 3px 3px 1px #A77ED1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A77ED1, 5px 5px 20px red">Text here.</p>
This text has shadow with #A77ED1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A77ED1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A77ED1, Direction=45, Strength=4)">Text</p>
This text has shadow with #A77ED1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A77ED1; -webkit-box-shadow: 1px 1px 3px 2px #A77ED1; box-shadow: 1px 1px 3px 2px #A77ED1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A77ED1; -webkit-box-shadow: 1px 1px 3px 2px #A77ED1; box-shadow:1px 1px 3px 2px #A77ED1;">
Div content here</div>
This text has color #A77ED1 on black background.
This text has color #A77ED1 on white background.
This text has black color on #A77ED1 background.
This text has white color on #A77ED1 background.