HEX: #8E88BB
RGB: (142,136,187)
#8E88BB contains red, green and blue colors in about the same proportion. Web safe color of #8E88BB is #9999CC (or #99C).
#8E88BB color RGB value is (142,136,187).
RGB: (142,136,187) (56%,53%,73%)
R 142 of 255 = 56%
G 136 of 255 = 53%
B 187 of 255 = 73%
R + G + B ~ 61%. #8E88BB is quite light color.
R + G + B =
142 + 136 + 187 = 465 (100%)
R 142 of 465 ~ 30.54%
G 136 of 465 ~ 29.25%
B 187 of 465 ~ 40.22%
#8E88BB color CMYK value is (24,27,0,27).
CMYK: (24,27,0,27) C24M27Y0K27 (24%,27%,0%,27%) (0.24/0.27/0.00/0.27)
8E | 88 | BB | |
---|---|---|---|
RGB | 142 | 136 | 187 |
HSL | 247° | 27.27% | 63.33% |
HSB/HSV | 247° | 27.27% | 73.33% |
CMYK | 24.06% | 27.27% | 0.00% |
26.67% |
HEX | 8E | 88 | BB |
Decimal | 142 | 136 | 187 |
Binary | 10001110 | 10001000 | 10111011 |
Octal | 216 | 210 | 273 |
Examples of css and html codes for elements with #8E88BB color. Also use rgb(142,136,187) instead hex code.
.myTextColor { color: #8E88BB; }
<p style="color:#8E88BB">This sample text font color is #8E88BB.</p>
This text font color is #8E88BB.
.myBgColor { background-color: #8E88BB; }
<div style="background-color:#8E88BB">Inner text</div>
This div background color is #8E88BB.
.myBorderColor { border: 1px solid #8E88BB; }
<div style="border:3px solid #8E88BB">Div</div>
This div border color is #8E88BB.
.myOpacity80 { color: #8E88BB; opacity: 0.8; }
<p style="color:#8E88BB;opacity:0.8;">80%</p>
Text with #8E88BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8E88BB;}
<p style="text-shadow: 3px 3px 1px #8E88BB">Text here.</p>
This text has shadow with #8E88BB color.
.textShadow {text-shadow: 3px 3px 1px #8E88BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8E88BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #8E88BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8E88BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8E88BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #8E88BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8E88BB; -webkit-box-shadow: 1px 1px 3px 2px #8E88BB; box-shadow: 1px 1px 3px 2px #8E88BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8E88BB; -webkit-box-shadow: 1px 1px 3px 2px #8E88BB; box-shadow:1px 1px 3px 2px #8E88BB;">
Div content here</div>
This text has color #8E88BB on black background.
This text has color #8E88BB on white background.
This text has black color on #8E88BB background.
This text has white color on #8E88BB background.