HEX: #88ADDA
RGB: (136,173,218)
#88ADDA contains mainly green and blue colors. Web safe color of #88ADDA is #9999CC (or #99C).
#88ADDA color RGB value is (136,173,218).
RGB: (136,173,218) (53%,68%,85%)
R 136 of 255 = 53%
G 173 of 255 = 68%
B 218 of 255 = 85%
R + G + B ~ 69%. #88ADDA is quite light color.
R + G + B =
136 + 173 + 218 = 527 (100%)
R 136 of 527 ~ 25.81%
G 173 of 527 ~ 32.83%
B 218 of 527 ~ 41.37%
#88ADDA color CMYK value is (38,21,0,15).
CMYK: (38,21,0,15) C38M21Y0K15 (38%,21%,0%,15%) (0.38/0.21/0.00/0.15)
88 | AD | DA | |
---|---|---|---|
RGB | 136 | 173 | 218 |
HSL | 213° | 52.56% | 69.41% |
HSB/HSV | 213° | 37.61% | 85.49% |
CMYK | 37.61% | 20.64% | 0.00% |
14.51% |
HEX | 88 | AD | DA |
Decimal | 136 | 173 | 218 |
Binary | 10001000 | 10101101 | 11011010 |
Octal | 210 | 255 | 332 |
Examples of css and html codes for elements with #88ADDA color. Also use rgb(136,173,218) instead hex code.
.myTextColor { color: #88ADDA; }
<p style="color:#88ADDA">This sample text font color is #88ADDA.</p>
This text font color is #88ADDA.
.myBgColor { background-color: #88ADDA; }
<div style="background-color:#88ADDA">Inner text</div>
This div background color is #88ADDA.
.myBorderColor { border: 1px solid #88ADDA; }
<div style="border:3px solid #88ADDA">Div</div>
This div border color is #88ADDA.
.myOpacity80 { color: #88ADDA; opacity: 0.8; }
<p style="color:#88ADDA;opacity:0.8;">80%</p>
Text with #88ADDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88ADDA;}
<p style="text-shadow: 3px 3px 1px #88ADDA">Text here.</p>
This text has shadow with #88ADDA color.
.textShadow {text-shadow: 3px 3px 1px #88ADDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88ADDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #88ADDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88ADDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88ADDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #88ADDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88ADDA; -webkit-box-shadow: 1px 1px 3px 2px #88ADDA; box-shadow: 1px 1px 3px 2px #88ADDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88ADDA; -webkit-box-shadow: 1px 1px 3px 2px #88ADDA; box-shadow:1px 1px 3px 2px #88ADDA;">
Div content here</div>
This text has color #88ADDA on black background.
This text has color #88ADDA on white background.
This text has black color on #88ADDA background.
This text has white color on #88ADDA background.