HEX: #87AEBB
RGB: (135,174,187)
#87AEBB contains red, green and blue colors in about the same proportion. Web safe color of #87AEBB is #9999CC (or #99C).
#87AEBB color RGB value is (135,174,187).
RGB: (135,174,187) (53%,68%,73%)
R 135 of 255 = 53%
G 174 of 255 = 68%
B 187 of 255 = 73%
R + G + B ~ 65%. #87AEBB is quite light color.
R + G + B =
135 + 174 + 187 = 496 (100%)
R 135 of 496 ~ 27.22%
G 174 of 496 ~ 35.08%
B 187 of 496 ~ 37.7%
#87AEBB color CMYK value is (28,7,0,27).
CMYK: (28,7,0,27) C28M7Y0K27 (28%,7%,0%,27%) (0.28/0.07/0.00/0.27)
87 | AE | BB | |
---|---|---|---|
RGB | 135 | 174 | 187 |
HSL | 195° | 27.66% | 63.14% |
HSB/HSV | 195° | 27.81% | 73.33% |
CMYK | 27.81% | 6.95% | 0.00% |
26.67% |
HEX | 87 | AE | BB |
Decimal | 135 | 174 | 187 |
Binary | 10000111 | 10101110 | 10111011 |
Octal | 207 | 256 | 273 |
Examples of css and html codes for elements with #87AEBB color. Also use rgb(135,174,187) instead hex code.
.myTextColor { color: #87AEBB; }
<p style="color:#87AEBB">This sample text font color is #87AEBB.</p>
This text font color is #87AEBB.
.myBgColor { background-color: #87AEBB; }
<div style="background-color:#87AEBB">Inner text</div>
This div background color is #87AEBB.
.myBorderColor { border: 1px solid #87AEBB; }
<div style="border:3px solid #87AEBB">Div</div>
This div border color is #87AEBB.
.myOpacity80 { color: #87AEBB; opacity: 0.8; }
<p style="color:#87AEBB;opacity:0.8;">80%</p>
Text with #87AEBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87AEBB;}
<p style="text-shadow: 3px 3px 1px #87AEBB">Text here.</p>
This text has shadow with #87AEBB color.
.textShadow {text-shadow: 3px 3px 1px #87AEBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87AEBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #87AEBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87AEBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87AEBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #87AEBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87AEBB; -webkit-box-shadow: 1px 1px 3px 2px #87AEBB; box-shadow: 1px 1px 3px 2px #87AEBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87AEBB; -webkit-box-shadow: 1px 1px 3px 2px #87AEBB; box-shadow:1px 1px 3px 2px #87AEBB;">
Div content here</div>
This text has color #87AEBB on black background.
This text has color #87AEBB on white background.
This text has black color on #87AEBB background.
This text has white color on #87AEBB background.