HEX: #8988AC
RGB: (137,136,172)
#8988AC contains red, green and blue colors in about the same proportion. Web safe color of #8988AC is #999999 (or #999).
#8988AC color RGB value is (137,136,172).
RGB: (137,136,172) (54%,53%,67%)
R 137 of 255 = 54%
G 136 of 255 = 53%
B 172 of 255 = 67%
R + G + B ~ 58%. #8988AC is middle color (not dark and not light).
R + G + B =
137 + 136 + 172 = 445 (100%)
R 137 of 445 ~ 30.79%
G 136 of 445 ~ 30.56%
B 172 of 445 ~ 38.65%
#8988AC color CMYK value is (20,21,0,33).
CMYK: (20,21,0,33) C20M21Y0K33 (20%,21%,0%,33%) (0.20/0.21/0.00/0.33)
89 | 88 | AC | |
---|---|---|---|
RGB | 137 | 136 | 172 |
HSL | 242° | 17.82% | 60.39% |
HSB/HSV | 242° | 20.93% | 67.45% |
CMYK | 20.35% | 20.93% | 0.00% |
32.55% |
HEX | 89 | 88 | AC |
Decimal | 137 | 136 | 172 |
Binary | 10001001 | 10001000 | 10101100 |
Octal | 211 | 210 | 254 |
Examples of css and html codes for elements with #8988AC color. Also use rgb(137,136,172) instead hex code.
.myTextColor { color: #8988AC; }
<p style="color:#8988AC">This sample text font color is #8988AC.</p>
This text font color is #8988AC.
.myBgColor { background-color: #8988AC; }
<div style="background-color:#8988AC">Inner text</div>
This div background color is #8988AC.
.myBorderColor { border: 1px solid #8988AC; }
<div style="border:3px solid #8988AC">Div</div>
This div border color is #8988AC.
.myOpacity80 { color: #8988AC; opacity: 0.8; }
<p style="color:#8988AC;opacity:0.8;">80%</p>
Text with #8988AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8988AC;}
<p style="text-shadow: 3px 3px 1px #8988AC">Text here.</p>
This text has shadow with #8988AC color.
.textShadow {text-shadow: 3px 3px 1px #8988AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8988AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #8988AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8988AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8988AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #8988AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8988AC; -webkit-box-shadow: 1px 1px 3px 2px #8988AC; box-shadow: 1px 1px 3px 2px #8988AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8988AC; -webkit-box-shadow: 1px 1px 3px 2px #8988AC; box-shadow:1px 1px 3px 2px #8988AC;">
Div content here</div>
This text has color #8988AC on black background.
This text has color #8988AC on white background.
This text has black color on #8988AC background.
This text has white color on #8988AC background.