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