HEX: #A489BA
RGB: (164,137,186)
#A489BA contains red, green and blue colors in about the same proportion. Web safe color of #A489BA is #9999CC (or #99C).
#A489BA color RGB value is (164,137,186).
RGB: (164,137,186) (64%,54%,73%)
R 164 of 255 = 64%
G 137 of 255 = 54%
B 186 of 255 = 73%
R + G + B ~ 64%. #A489BA is quite light color.
R + G + B =
164 + 137 + 186 = 487 (100%)
R 164 of 487 ~ 33.68%
G 137 of 487 ~ 28.13%
B 186 of 487 ~ 38.19%
#A489BA color CMYK value is (12,26,0,27).
CMYK: (12,26,0,27) C12M26Y0K27 (12%,26%,0%,27%) (0.12/0.26/0.00/0.27)
A4 | 89 | BA | |
---|---|---|---|
RGB | 164 | 137 | 186 |
HSL | 273° | 26.20% | 63.33% |
HSB/HSV | 273° | 26.34% | 72.94% |
CMYK | 11.83% | 26.34% | 0.00% |
27.06% |
HEX | A4 | 89 | BA |
Decimal | 164 | 137 | 186 |
Binary | 10100100 | 10001001 | 10111010 |
Octal | 244 | 211 | 272 |
Examples of css and html codes for elements with #A489BA color. Also use rgb(164,137,186) instead hex code.
.myTextColor { color: #A489BA; }
<p style="color:#A489BA">This sample text font color is #A489BA.</p>
This text font color is #A489BA.
.myBgColor { background-color: #A489BA; }
<div style="background-color:#A489BA">Inner text</div>
This div background color is #A489BA.
.myBorderColor { border: 1px solid #A489BA; }
<div style="border:3px solid #A489BA">Div</div>
This div border color is #A489BA.
.myOpacity80 { color: #A489BA; opacity: 0.8; }
<p style="color:#A489BA;opacity:0.8;">80%</p>
Text with #A489BA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A489BA;}
<p style="text-shadow: 3px 3px 1px #A489BA">Text here.</p>
This text has shadow with #A489BA color.
.textShadow {text-shadow: 3px 3px 1px #A489BA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A489BA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A489BA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A489BA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A489BA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A489BA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A489BA; -webkit-box-shadow: 1px 1px 3px 2px #A489BA; box-shadow: 1px 1px 3px 2px #A489BA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A489BA; -webkit-box-shadow: 1px 1px 3px 2px #A489BA; box-shadow:1px 1px 3px 2px #A489BA;">
Div content here</div>
This text has color #A489BA on black background.
This text has color #A489BA on white background.
This text has black color on #A489BA background.
This text has white color on #A489BA background.