HEX: #96DAFD
RGB: (150,218,253)
#96DAFD contains mainly green and blue colors. Web safe color of #96DAFD is #99CCFF (or #9CF).
#96DAFD color RGB value is (150,218,253).
RGB: (150,218,253) (59%,85%,99%)
R 150 of 255 = 59%
G 218 of 255 = 85%
B 253 of 255 = 99%
R + G + B ~ 81%. #96DAFD is quite light color.
R + G + B =
150 + 218 + 253 = 621 (100%)
R 150 of 621 ~ 24.15%
G 218 of 621 ~ 35.1%
B 253 of 621 ~ 40.74%
#96DAFD color CMYK value is (41,14,0,1).
CMYK: (41,14,0,1) C41M14Y0K1 (41%,14%,0%,1%) (0.41/0.14/0.00/0.01)
96 | DA | FD | |
---|---|---|---|
RGB | 150 | 218 | 253 |
HSL | 200° | 96.26% | 79.02% |
HSB/HSV | 200° | 40.71% | 99.22% |
CMYK | 40.71% | 13.83% | 0.00% |
0.78% |
HEX | 96 | DA | FD |
Decimal | 150 | 218 | 253 |
Binary | 10010110 | 11011010 | 11111101 |
Octal | 226 | 332 | 375 |
Examples of css and html codes for elements with #96DAFD color. Also use rgb(150,218,253) instead hex code.
.myTextColor { color: #96DAFD; }
<p style="color:#96DAFD">This sample text font color is #96DAFD.</p>
This text font color is #96DAFD.
.myBgColor { background-color: #96DAFD; }
<div style="background-color:#96DAFD">Inner text</div>
This div background color is #96DAFD.
.myBorderColor { border: 1px solid #96DAFD; }
<div style="border:3px solid #96DAFD">Div</div>
This div border color is #96DAFD.
.myOpacity80 { color: #96DAFD; opacity: 0.8; }
<p style="color:#96DAFD;opacity:0.8;">80%</p>
Text with #96DAFD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #96DAFD;}
<p style="text-shadow: 3px 3px 1px #96DAFD">Text here.</p>
This text has shadow with #96DAFD color.
.textShadow {text-shadow: 3px 3px 1px #96DAFD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #96DAFD, 5px 5px 20px red">Text here.</p>
This text has shadow with #96DAFD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#96DAFD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#96DAFD, Direction=45, Strength=4)">Text</p>
This text has shadow with #96DAFD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #96DAFD; -webkit-box-shadow: 1px 1px 3px 2px #96DAFD; box-shadow: 1px 1px 3px 2px #96DAFD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #96DAFD; -webkit-box-shadow: 1px 1px 3px 2px #96DAFD; box-shadow:1px 1px 3px 2px #96DAFD;">
Div content here</div>
This text has color #96DAFD on black background.
This text has color #96DAFD on white background.
This text has black color on #96DAFD background.
This text has white color on #96DAFD background.