HEX: #96D4CC
RGB: (150,212,204)
#96D4CC contains mainly green and blue colors. Web safe color of #96D4CC is #99CCCC (or #9CC).
#96D4CC color RGB value is (150,212,204).
RGB: (150,212,204) (59%,83%,80%)
R 150 of 255 = 59%
G 212 of 255 = 83%
B 204 of 255 = 80%
R + G + B ~ 74%. #96D4CC is quite light color.
R + G + B =
150 + 212 + 204 = 566 (100%)
R 150 of 566 ~ 26.5%
G 212 of 566 ~ 37.46%
B 204 of 566 ~ 36.04%
#96D4CC color CMYK value is (29,0,4,17).
CMYK: (29,0,4,17) C29M0Y4K17 (29%,0%,4%,17%) (0.29/0.00/0.04/0.17)
96 | D4 | CC | |
---|---|---|---|
RGB | 150 | 212 | 204 |
HSL | 172° | 41.89% | 70.98% |
HSB/HSV | 172° | 29.25% | 83.14% |
CMYK | 29.25% | 0.00% | 3.77% |
16.86% |
HEX | 96 | D4 | CC |
Decimal | 150 | 212 | 204 |
Binary | 10010110 | 11010100 | 11001100 |
Octal | 226 | 324 | 314 |
Examples of css and html codes for elements with #96D4CC color. Also use rgb(150,212,204) instead hex code.
.myTextColor { color: #96D4CC; }
<p style="color:#96D4CC">This sample text font color is #96D4CC.</p>
This text font color is #96D4CC.
.myBgColor { background-color: #96D4CC; }
<div style="background-color:#96D4CC">Inner text</div>
This div background color is #96D4CC.
.myBorderColor { border: 1px solid #96D4CC; }
<div style="border:3px solid #96D4CC">Div</div>
This div border color is #96D4CC.
.myOpacity80 { color: #96D4CC; opacity: 0.8; }
<p style="color:#96D4CC;opacity:0.8;">80%</p>
Text with #96D4CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #96D4CC;}
<p style="text-shadow: 3px 3px 1px #96D4CC">Text here.</p>
This text has shadow with #96D4CC color.
.textShadow {text-shadow: 3px 3px 1px #96D4CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #96D4CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #96D4CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#96D4CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#96D4CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #96D4CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #96D4CC; -webkit-box-shadow: 1px 1px 3px 2px #96D4CC; box-shadow: 1px 1px 3px 2px #96D4CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #96D4CC; -webkit-box-shadow: 1px 1px 3px 2px #96D4CC; box-shadow:1px 1px 3px 2px #96D4CC;">
Div content here</div>
This text has color #96D4CC on black background.
This text has color #96D4CC on white background.
This text has black color on #96D4CC background.
This text has white color on #96D4CC background.