HEX: #958BE5
RGB: (149,139,229)
#958BE5 contains mainly blue color. Web safe color of #958BE5 is #9999CC (or #99C).
#958BE5 color RGB value is (149,139,229).
RGB: (149,139,229) (58%,55%,90%)
R 149 of 255 = 58%
G 139 of 255 = 55%
B 229 of 255 = 90%
R + G + B ~ 68%. #958BE5 is quite light color.
R + G + B =
149 + 139 + 229 = 517 (100%)
R 149 of 517 ~ 28.82%
G 139 of 517 ~ 26.89%
B 229 of 517 ~ 44.29%
#958BE5 color CMYK value is (35,39,0,10).
CMYK: (35,39,0,10) C35M39Y0K10 (35%,39%,0%,10%) (0.35/0.39/0.00/0.10)
95 | 8B | E5 | |
---|---|---|---|
RGB | 149 | 139 | 229 |
HSL | 247° | 63.38% | 72.16% |
HSB/HSV | 247° | 39.30% | 89.80% |
CMYK | 34.93% | 39.30% | 0.00% |
10.20% |
HEX | 95 | 8B | E5 |
Decimal | 149 | 139 | 229 |
Binary | 10010101 | 10001011 | 11100101 |
Octal | 225 | 213 | 345 |
Examples of css and html codes for elements with #958BE5 color. Also use rgb(149,139,229) instead hex code.
.myTextColor { color: #958BE5; }
<p style="color:#958BE5">This sample text font color is #958BE5.</p>
This text font color is #958BE5.
.myBgColor { background-color: #958BE5; }
<div style="background-color:#958BE5">Inner text</div>
This div background color is #958BE5.
.myBorderColor { border: 1px solid #958BE5; }
<div style="border:3px solid #958BE5">Div</div>
This div border color is #958BE5.
.myOpacity80 { color: #958BE5; opacity: 0.8; }
<p style="color:#958BE5;opacity:0.8;">80%</p>
Text with #958BE5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #958BE5;}
<p style="text-shadow: 3px 3px 1px #958BE5">Text here.</p>
This text has shadow with #958BE5 color.
.textShadow {text-shadow: 3px 3px 1px #958BE5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #958BE5, 5px 5px 20px red">Text here.</p>
This text has shadow with #958BE5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#958BE5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#958BE5, Direction=45, Strength=4)">Text</p>
This text has shadow with #958BE5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #958BE5; -webkit-box-shadow: 1px 1px 3px 2px #958BE5; box-shadow: 1px 1px 3px 2px #958BE5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #958BE5; -webkit-box-shadow: 1px 1px 3px 2px #958BE5; box-shadow:1px 1px 3px 2px #958BE5;">
Div content here</div>
This text has color #958BE5 on black background.
This text has color #958BE5 on white background.
This text has black color on #958BE5 background.
This text has white color on #958BE5 background.