HEX: #88ADBA
RGB: (136,173,186)
#88ADBA contains red, green and blue colors in about the same proportion. Web safe color of #88ADBA is #9999CC (or #99C).
#88ADBA color RGB value is (136,173,186).
RGB: (136,173,186) (53%,68%,73%)
R 136 of 255 = 53%
G 173 of 255 = 68%
B 186 of 255 = 73%
R + G + B ~ 65%. #88ADBA is quite light color.
R + G + B =
136 + 173 + 186 = 495 (100%)
R 136 of 495 ~ 27.47%
G 173 of 495 ~ 34.95%
B 186 of 495 ~ 37.58%
#88ADBA color CMYK value is (27,7,0,27).
CMYK: (27,7,0,27) C27M7Y0K27 (27%,7%,0%,27%) (0.27/0.07/0.00/0.27)
88 | AD | BA | |
---|---|---|---|
RGB | 136 | 173 | 186 |
HSL | 196° | 26.60% | 63.14% |
HSB/HSV | 196° | 26.88% | 72.94% |
CMYK | 26.88% | 6.99% | 0.00% |
27.06% |
HEX | 88 | AD | BA |
Decimal | 136 | 173 | 186 |
Binary | 10001000 | 10101101 | 10111010 |
Octal | 210 | 255 | 272 |
Examples of css and html codes for elements with #88ADBA color. Also use rgb(136,173,186) instead hex code.
.myTextColor { color: #88ADBA; }
<p style="color:#88ADBA">This sample text font color is #88ADBA.</p>
This text font color is #88ADBA.
.myBgColor { background-color: #88ADBA; }
<div style="background-color:#88ADBA">Inner text</div>
This div background color is #88ADBA.
.myBorderColor { border: 1px solid #88ADBA; }
<div style="border:3px solid #88ADBA">Div</div>
This div border color is #88ADBA.
.myOpacity80 { color: #88ADBA; opacity: 0.8; }
<p style="color:#88ADBA;opacity:0.8;">80%</p>
Text with #88ADBA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88ADBA;}
<p style="text-shadow: 3px 3px 1px #88ADBA">Text here.</p>
This text has shadow with #88ADBA color.
.textShadow {text-shadow: 3px 3px 1px #88ADBA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88ADBA, 5px 5px 20px red">Text here.</p>
This text has shadow with #88ADBA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88ADBA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88ADBA, Direction=45, Strength=4)">Text</p>
This text has shadow with #88ADBA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88ADBA; -webkit-box-shadow: 1px 1px 3px 2px #88ADBA; box-shadow: 1px 1px 3px 2px #88ADBA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88ADBA; -webkit-box-shadow: 1px 1px 3px 2px #88ADBA; box-shadow:1px 1px 3px 2px #88ADBA;">
Div content here</div>
This text has color #88ADBA on black background.
This text has color #88ADBA on white background.
This text has black color on #88ADBA background.
This text has white color on #88ADBA background.