HEX: #88ACE0
RGB: (136,172,224)
#88ACE0 contains mainly green and blue colors. Web safe color of #88ACE0 is #9999CC (or #99C).
#88ACE0 color RGB value is (136,172,224).
RGB: (136,172,224) (53%,67%,88%)
R 136 of 255 = 53%
G 172 of 255 = 67%
B 224 of 255 = 88%
R + G + B ~ 69%. #88ACE0 is quite light color.
R + G + B =
136 + 172 + 224 = 532 (100%)
R 136 of 532 ~ 25.56%
G 172 of 532 ~ 32.33%
B 224 of 532 ~ 42.11%
#88ACE0 color CMYK value is (39,23,0,12).
CMYK: (39,23,0,12) C39M23Y0K12 (39%,23%,0%,12%) (0.39/0.23/0.00/0.12)
88 | AC | E0 | |
---|---|---|---|
RGB | 136 | 172 | 224 |
HSL | 215° | 58.67% | 70.59% |
HSB/HSV | 215° | 39.29% | 87.84% |
CMYK | 39.29% | 23.21% | 0.00% |
12.16% |
HEX | 88 | AC | E0 |
Decimal | 136 | 172 | 224 |
Binary | 10001000 | 10101100 | 11100000 |
Octal | 210 | 254 | 340 |
Examples of css and html codes for elements with #88ACE0 color. Also use rgb(136,172,224) instead hex code.
.myTextColor { color: #88ACE0; }
<p style="color:#88ACE0">This sample text font color is #88ACE0.</p>
This text font color is #88ACE0.
.myBgColor { background-color: #88ACE0; }
<div style="background-color:#88ACE0">Inner text</div>
This div background color is #88ACE0.
.myBorderColor { border: 1px solid #88ACE0; }
<div style="border:3px solid #88ACE0">Div</div>
This div border color is #88ACE0.
.myOpacity80 { color: #88ACE0; opacity: 0.8; }
<p style="color:#88ACE0;opacity:0.8;">80%</p>
Text with #88ACE0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88ACE0;}
<p style="text-shadow: 3px 3px 1px #88ACE0">Text here.</p>
This text has shadow with #88ACE0 color.
.textShadow {text-shadow: 3px 3px 1px #88ACE0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88ACE0, 5px 5px 20px red">Text here.</p>
This text has shadow with #88ACE0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88ACE0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88ACE0, Direction=45, Strength=4)">Text</p>
This text has shadow with #88ACE0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88ACE0; -webkit-box-shadow: 1px 1px 3px 2px #88ACE0; box-shadow: 1px 1px 3px 2px #88ACE0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88ACE0; -webkit-box-shadow: 1px 1px 3px 2px #88ACE0; box-shadow:1px 1px 3px 2px #88ACE0;">
Div content here</div>
This text has color #88ACE0 on black background.
This text has color #88ACE0 on white background.
This text has black color on #88ACE0 background.
This text has white color on #88ACE0 background.