HEX: #8977BA
RGB: (137,119,186)
#8977BA contains mainly red and blue colors. Web safe color of #8977BA is #9966CC (or #96C).
#8977BA color RGB value is (137,119,186).
RGB: (137,119,186) (54%,47%,73%)
R 137 of 255 = 54%
G 119 of 255 = 47%
B 186 of 255 = 73%
R + G + B ~ 58%. #8977BA is middle color (not dark and not light).
R + G + B =
137 + 119 + 186 = 442 (100%)
R 137 of 442 ~ 31%
G 119 of 442 ~ 26.92%
B 186 of 442 ~ 42.08%
#8977BA color CMYK value is (26,36,0,27).
CMYK: (26,36,0,27) C26M36Y0K27 (26%,36%,0%,27%) (0.26/0.36/0.00/0.27)
89 | 77 | BA | |
---|---|---|---|
RGB | 137 | 119 | 186 |
HSL | 256° | 32.68% | 59.80% |
HSB/HSV | 256° | 36.02% | 72.94% |
CMYK | 26.34% | 36.02% | 0.00% |
27.06% |
HEX | 89 | 77 | BA |
Decimal | 137 | 119 | 186 |
Binary | 10001001 | 1110111 | 10111010 |
Octal | 211 | 167 | 272 |
Examples of css and html codes for elements with #8977BA color. Also use rgb(137,119,186) instead hex code.
.myTextColor { color: #8977BA; }
<p style="color:#8977BA">This sample text font color is #8977BA.</p>
This text font color is #8977BA.
.myBgColor { background-color: #8977BA; }
<div style="background-color:#8977BA">Inner text</div>
This div background color is #8977BA.
.myBorderColor { border: 1px solid #8977BA; }
<div style="border:3px solid #8977BA">Div</div>
This div border color is #8977BA.
.myOpacity80 { color: #8977BA; opacity: 0.8; }
<p style="color:#8977BA;opacity:0.8;">80%</p>
Text with #8977BA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8977BA;}
<p style="text-shadow: 3px 3px 1px #8977BA">Text here.</p>
This text has shadow with #8977BA color.
.textShadow {text-shadow: 3px 3px 1px #8977BA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8977BA, 5px 5px 20px red">Text here.</p>
This text has shadow with #8977BA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8977BA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8977BA, Direction=45, Strength=4)">Text</p>
This text has shadow with #8977BA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8977BA; -webkit-box-shadow: 1px 1px 3px 2px #8977BA; box-shadow: 1px 1px 3px 2px #8977BA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8977BA; -webkit-box-shadow: 1px 1px 3px 2px #8977BA; box-shadow:1px 1px 3px 2px #8977BA;">
Div content here</div>
This text has color #8977BA on black background.
This text has color #8977BA on white background.
This text has black color on #8977BA background.
This text has white color on #8977BA background.