HEX: #88D5CB
RGB: (136,213,203)
#88D5CB contains mainly green and blue colors. Web safe color of #88D5CB is #99CCCC (or #9CC).
#88D5CB color RGB value is (136,213,203).
RGB: (136,213,203) (53%,84%,80%)
R 136 of 255 = 53%
G 213 of 255 = 84%
B 203 of 255 = 80%
R + G + B ~ 72%. #88D5CB is quite light color.
R + G + B =
136 + 213 + 203 = 552 (100%)
R 136 of 552 ~ 24.64%
G 213 of 552 ~ 38.59%
B 203 of 552 ~ 36.78%
#88D5CB color CMYK value is (36,0,5,16).
CMYK: (36,0,5,16) C36M0Y5K16 (36%,0%,5%,16%) (0.36/0.00/0.05/0.16)
88 | D5 | CB | |
---|---|---|---|
RGB | 136 | 213 | 203 |
HSL | 172° | 47.83% | 68.43% |
HSB/HSV | 172° | 36.15% | 83.53% |
CMYK | 36.15% | 0.00% | 4.69% |
16.47% |
HEX | 88 | D5 | CB |
Decimal | 136 | 213 | 203 |
Binary | 10001000 | 11010101 | 11001011 |
Octal | 210 | 325 | 313 |
Examples of css and html codes for elements with #88D5CB color. Also use rgb(136,213,203) instead hex code.
.myTextColor { color: #88D5CB; }
<p style="color:#88D5CB">This sample text font color is #88D5CB.</p>
This text font color is #88D5CB.
.myBgColor { background-color: #88D5CB; }
<div style="background-color:#88D5CB">Inner text</div>
This div background color is #88D5CB.
.myBorderColor { border: 1px solid #88D5CB; }
<div style="border:3px solid #88D5CB">Div</div>
This div border color is #88D5CB.
.myOpacity80 { color: #88D5CB; opacity: 0.8; }
<p style="color:#88D5CB;opacity:0.8;">80%</p>
Text with #88D5CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88D5CB;}
<p style="text-shadow: 3px 3px 1px #88D5CB">Text here.</p>
This text has shadow with #88D5CB color.
.textShadow {text-shadow: 3px 3px 1px #88D5CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88D5CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #88D5CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88D5CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88D5CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #88D5CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88D5CB; -webkit-box-shadow: 1px 1px 3px 2px #88D5CB; box-shadow: 1px 1px 3px 2px #88D5CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88D5CB; -webkit-box-shadow: 1px 1px 3px 2px #88D5CB; box-shadow:1px 1px 3px 2px #88D5CB;">
Div content here</div>
This text has color #88D5CB on black background.
This text has color #88D5CB on white background.
This text has black color on #88D5CB background.
This text has white color on #88D5CB background.