HEX: #96EDE5
RGB: (150,237,229)
#96EDE5 contains mainly green and blue colors. Web safe color of #96EDE5 is #99FFCC (or #9FC).
#96EDE5 color RGB value is (150,237,229).
RGB: (150,237,229) (59%,93%,90%)
R 150 of 255 = 59%
G 237 of 255 = 93%
B 229 of 255 = 90%
R + G + B ~ 81%. #96EDE5 is quite light color.
R + G + B =
150 + 237 + 229 = 616 (100%)
R 150 of 616 ~ 24.35%
G 237 of 616 ~ 38.47%
B 229 of 616 ~ 37.18%
#96EDE5 color CMYK value is (37,0,3,7).
CMYK: (37,0,3,7) C37M0Y3K7 (37%,0%,3%,7%) (0.37/0.00/0.03/0.07)
96 | ED | E5 | |
---|---|---|---|
RGB | 150 | 237 | 229 |
HSL | 174° | 70.73% | 75.88% |
HSB/HSV | 174° | 36.71% | 92.94% |
CMYK | 36.71% | 0.00% | 3.38% |
7.06% |
HEX | 96 | ED | E5 |
Decimal | 150 | 237 | 229 |
Binary | 10010110 | 11101101 | 11100101 |
Octal | 226 | 355 | 345 |
Examples of css and html codes for elements with #96EDE5 color. Also use rgb(150,237,229) instead hex code.
.myTextColor { color: #96EDE5; }
<p style="color:#96EDE5">This sample text font color is #96EDE5.</p>
This text font color is #96EDE5.
.myBgColor { background-color: #96EDE5; }
<div style="background-color:#96EDE5">Inner text</div>
This div background color is #96EDE5.
.myBorderColor { border: 1px solid #96EDE5; }
<div style="border:3px solid #96EDE5">Div</div>
This div border color is #96EDE5.
.myOpacity80 { color: #96EDE5; opacity: 0.8; }
<p style="color:#96EDE5;opacity:0.8;">80%</p>
Text with #96EDE5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #96EDE5;}
<p style="text-shadow: 3px 3px 1px #96EDE5">Text here.</p>
This text has shadow with #96EDE5 color.
.textShadow {text-shadow: 3px 3px 1px #96EDE5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #96EDE5, 5px 5px 20px red">Text here.</p>
This text has shadow with #96EDE5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#96EDE5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#96EDE5, Direction=45, Strength=4)">Text</p>
This text has shadow with #96EDE5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #96EDE5; -webkit-box-shadow: 1px 1px 3px 2px #96EDE5; box-shadow: 1px 1px 3px 2px #96EDE5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #96EDE5; -webkit-box-shadow: 1px 1px 3px 2px #96EDE5; box-shadow:1px 1px 3px 2px #96EDE5;">
Div content here</div>
This text has color #96EDE5 on black background.
This text has color #96EDE5 on white background.
This text has black color on #96EDE5 background.
This text has white color on #96EDE5 background.