HEX: #9E96EC
RGB: (158,150,236)
#9E96EC contains mainly blue color. Web safe color of #9E96EC is #9999FF (or #99F).
#9E96EC color RGB value is (158,150,236).
RGB: (158,150,236) (62%,59%,93%)
R 158 of 255 = 62%
G 150 of 255 = 59%
B 236 of 255 = 93%
R + G + B ~ 71%. #9E96EC is quite light color.
R + G + B =
158 + 150 + 236 = 544 (100%)
R 158 of 544 ~ 29.04%
G 150 of 544 ~ 27.57%
B 236 of 544 ~ 43.38%
#9E96EC color CMYK value is (33,36,0,7).
CMYK: (33,36,0,7) C33M36Y0K7 (33%,36%,0%,7%) (0.33/0.36/0.00/0.07)
9E | 96 | EC | |
---|---|---|---|
RGB | 158 | 150 | 236 |
HSL | 246° | 69.35% | 75.69% |
HSB/HSV | 246° | 36.44% | 92.55% |
CMYK | 33.05% | 36.44% | 0.00% |
7.45% |
HEX | 9E | 96 | EC |
Decimal | 158 | 150 | 236 |
Binary | 10011110 | 10010110 | 11101100 |
Octal | 236 | 226 | 354 |
Examples of css and html codes for elements with #9E96EC color. Also use rgb(158,150,236) instead hex code.
.myTextColor { color: #9E96EC; }
<p style="color:#9E96EC">This sample text font color is #9E96EC.</p>
This text font color is #9E96EC.
.myBgColor { background-color: #9E96EC; }
<div style="background-color:#9E96EC">Inner text</div>
This div background color is #9E96EC.
.myBorderColor { border: 1px solid #9E96EC; }
<div style="border:3px solid #9E96EC">Div</div>
This div border color is #9E96EC.
.myOpacity80 { color: #9E96EC; opacity: 0.8; }
<p style="color:#9E96EC;opacity:0.8;">80%</p>
Text with #9E96EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9E96EC;}
<p style="text-shadow: 3px 3px 1px #9E96EC">Text here.</p>
This text has shadow with #9E96EC color.
.textShadow {text-shadow: 3px 3px 1px #9E96EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9E96EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #9E96EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9E96EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9E96EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #9E96EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9E96EC; -webkit-box-shadow: 1px 1px 3px 2px #9E96EC; box-shadow: 1px 1px 3px 2px #9E96EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9E96EC; -webkit-box-shadow: 1px 1px 3px 2px #9E96EC; box-shadow:1px 1px 3px 2px #9E96EC;">
Div content here</div>
This text has color #9E96EC on black background.
This text has color #9E96EC on white background.
This text has black color on #9E96EC background.
This text has white color on #9E96EC background.