HEX: #8988BA
RGB: (137,136,186)
#8988BA contains red, green and blue colors in about the same proportion. Web safe color of #8988BA is #9999CC (or #99C).
#8988BA color RGB value is (137,136,186).
RGB: (137,136,186) (54%,53%,73%)
R 137 of 255 = 54%
G 136 of 255 = 53%
B 186 of 255 = 73%
R + G + B ~ 60%. #8988BA is middle color (not dark and not light).
R + G + B =
137 + 136 + 186 = 459 (100%)
R 137 of 459 ~ 29.85%
G 136 of 459 ~ 29.63%
B 186 of 459 ~ 40.52%
#8988BA color CMYK value is (26,27,0,27).
CMYK: (26,27,0,27) C26M27Y0K27 (26%,27%,0%,27%) (0.26/0.27/0.00/0.27)
89 | 88 | BA | |
---|---|---|---|
RGB | 137 | 136 | 186 |
HSL | 241° | 26.60% | 63.14% |
HSB/HSV | 241° | 26.88% | 72.94% |
CMYK | 26.34% | 26.88% | 0.00% |
27.06% |
HEX | 89 | 88 | BA |
Decimal | 137 | 136 | 186 |
Binary | 10001001 | 10001000 | 10111010 |
Octal | 211 | 210 | 272 |
Examples of css and html codes for elements with #8988BA color. Also use rgb(137,136,186) instead hex code.
.myTextColor { color: #8988BA; }
<p style="color:#8988BA">This sample text font color is #8988BA.</p>
This text font color is #8988BA.
.myBgColor { background-color: #8988BA; }
<div style="background-color:#8988BA">Inner text</div>
This div background color is #8988BA.
.myBorderColor { border: 1px solid #8988BA; }
<div style="border:3px solid #8988BA">Div</div>
This div border color is #8988BA.
.myOpacity80 { color: #8988BA; opacity: 0.8; }
<p style="color:#8988BA;opacity:0.8;">80%</p>
Text with #8988BA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8988BA;}
<p style="text-shadow: 3px 3px 1px #8988BA">Text here.</p>
This text has shadow with #8988BA color.
.textShadow {text-shadow: 3px 3px 1px #8988BA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8988BA, 5px 5px 20px red">Text here.</p>
This text has shadow with #8988BA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8988BA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8988BA, Direction=45, Strength=4)">Text</p>
This text has shadow with #8988BA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8988BA; -webkit-box-shadow: 1px 1px 3px 2px #8988BA; box-shadow: 1px 1px 3px 2px #8988BA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8988BA; -webkit-box-shadow: 1px 1px 3px 2px #8988BA; box-shadow:1px 1px 3px 2px #8988BA;">
Div content here</div>
This text has color #8988BA on black background.
This text has color #8988BA on white background.
This text has black color on #8988BA background.
This text has white color on #8988BA background.