HEX: #9696BD
RGB: (150,150,189)
#9696BD contains red, green and blue colors in about the same proportion. Web safe color of #9696BD is #9999CC (or #99C).
#9696BD color RGB value is (150,150,189).
RGB: (150,150,189) (59%,59%,74%)
R 150 of 255 = 59%
G 150 of 255 = 59%
B 189 of 255 = 74%
R + G + B ~ 64%. #9696BD is quite light color.
R + G + B =
150 + 150 + 189 = 489 (100%)
R 150 of 489 ~ 30.67%
G 150 of 489 ~ 30.67%
B 189 of 489 ~ 38.65%
#9696BD color CMYK value is (21,21,0,26).
CMYK: (21,21,0,26) C21M21Y0K26 (21%,21%,0%,26%) (0.21/0.21/0.00/0.26)
96 | 96 | BD | |
---|---|---|---|
RGB | 150 | 150 | 189 |
HSL | 240° | 22.81% | 66.47% |
HSB/HSV | 240° | 20.63% | 74.12% |
CMYK | 20.63% | 20.63% | 0.00% |
25.88% |
HEX | 96 | 96 | BD |
Decimal | 150 | 150 | 189 |
Binary | 10010110 | 10010110 | 10111101 |
Octal | 226 | 226 | 275 |
Examples of css and html codes for elements with #9696BD color. Also use rgb(150,150,189) instead hex code.
.myTextColor { color: #9696BD; }
<p style="color:#9696BD">This sample text font color is #9696BD.</p>
This text font color is #9696BD.
.myBgColor { background-color: #9696BD; }
<div style="background-color:#9696BD">Inner text</div>
This div background color is #9696BD.
.myBorderColor { border: 1px solid #9696BD; }
<div style="border:3px solid #9696BD">Div</div>
This div border color is #9696BD.
.myOpacity80 { color: #9696BD; opacity: 0.8; }
<p style="color:#9696BD;opacity:0.8;">80%</p>
Text with #9696BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9696BD;}
<p style="text-shadow: 3px 3px 1px #9696BD">Text here.</p>
This text has shadow with #9696BD color.
.textShadow {text-shadow: 3px 3px 1px #9696BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9696BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #9696BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9696BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9696BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #9696BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9696BD; -webkit-box-shadow: 1px 1px 3px 2px #9696BD; box-shadow: 1px 1px 3px 2px #9696BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9696BD; -webkit-box-shadow: 1px 1px 3px 2px #9696BD; box-shadow:1px 1px 3px 2px #9696BD;">
Div content here</div>
This text has color #9696BD on black background.
This text has color #9696BD on white background.
This text has black color on #9696BD background.
This text has white color on #9696BD background.