HEX: #87ACCB
RGB: (135,172,203)
#87ACCB contains mainly green and blue colors. Web safe color of #87ACCB is #9999CC (or #99C).
#87ACCB color RGB value is (135,172,203).
RGB: (135,172,203) (53%,67%,80%)
R 135 of 255 = 53%
G 172 of 255 = 67%
B 203 of 255 = 80%
R + G + B ~ 67%. #87ACCB is quite light color.
R + G + B =
135 + 172 + 203 = 510 (100%)
R 135 of 510 ~ 26.47%
G 172 of 510 ~ 33.73%
B 203 of 510 ~ 39.8%
#87ACCB color CMYK value is (33,15,0,20).
CMYK: (33,15,0,20) C33M15Y0K20 (33%,15%,0%,20%) (0.33/0.15/0.00/0.20)
87 | AC | CB | |
---|---|---|---|
RGB | 135 | 172 | 203 |
HSL | 207° | 39.53% | 66.27% |
HSB/HSV | 207° | 33.50% | 79.61% |
CMYK | 33.50% | 15.27% | 0.00% |
20.39% |
HEX | 87 | AC | CB |
Decimal | 135 | 172 | 203 |
Binary | 10000111 | 10101100 | 11001011 |
Octal | 207 | 254 | 313 |
Examples of css and html codes for elements with #87ACCB color. Also use rgb(135,172,203) instead hex code.
.myTextColor { color: #87ACCB; }
<p style="color:#87ACCB">This sample text font color is #87ACCB.</p>
This text font color is #87ACCB.
.myBgColor { background-color: #87ACCB; }
<div style="background-color:#87ACCB">Inner text</div>
This div background color is #87ACCB.
.myBorderColor { border: 1px solid #87ACCB; }
<div style="border:3px solid #87ACCB">Div</div>
This div border color is #87ACCB.
.myOpacity80 { color: #87ACCB; opacity: 0.8; }
<p style="color:#87ACCB;opacity:0.8;">80%</p>
Text with #87ACCB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87ACCB;}
<p style="text-shadow: 3px 3px 1px #87ACCB">Text here.</p>
This text has shadow with #87ACCB color.
.textShadow {text-shadow: 3px 3px 1px #87ACCB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87ACCB, 5px 5px 20px red">Text here.</p>
This text has shadow with #87ACCB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87ACCB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87ACCB, Direction=45, Strength=4)">Text</p>
This text has shadow with #87ACCB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87ACCB; -webkit-box-shadow: 1px 1px 3px 2px #87ACCB; box-shadow: 1px 1px 3px 2px #87ACCB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87ACCB; -webkit-box-shadow: 1px 1px 3px 2px #87ACCB; box-shadow:1px 1px 3px 2px #87ACCB;">
Div content here</div>
This text has color #87ACCB on black background.
This text has color #87ACCB on white background.
This text has black color on #87ACCB background.
This text has white color on #87ACCB background.