HEX: #959ECB
RGB: (149,158,203)
#959ECB contains red, green and blue colors in about the same proportion. Web safe color of #959ECB is #9999CC (or #99C).
#959ECB color RGB value is (149,158,203).
RGB: (149,158,203) (58%,62%,80%)
R 149 of 255 = 58%
G 158 of 255 = 62%
B 203 of 255 = 80%
R + G + B ~ 67%. #959ECB is quite light color.
R + G + B =
149 + 158 + 203 = 510 (100%)
R 149 of 510 ~ 29.22%
G 158 of 510 ~ 30.98%
B 203 of 510 ~ 39.8%
#959ECB color CMYK value is (27,22,0,20).
CMYK: (27,22,0,20) C27M22Y0K20 (27%,22%,0%,20%) (0.27/0.22/0.00/0.20)
95 | 9E | CB | |
---|---|---|---|
RGB | 149 | 158 | 203 |
HSL | 230° | 34.18% | 69.02% |
HSB/HSV | 230° | 26.60% | 79.61% |
CMYK | 26.60% | 22.17% | 0.00% |
20.39% |
HEX | 95 | 9E | CB |
Decimal | 149 | 158 | 203 |
Binary | 10010101 | 10011110 | 11001011 |
Octal | 225 | 236 | 313 |
Examples of css and html codes for elements with #959ECB color. Also use rgb(149,158,203) instead hex code.
.myTextColor { color: #959ECB; }
<p style="color:#959ECB">This sample text font color is #959ECB.</p>
This text font color is #959ECB.
.myBgColor { background-color: #959ECB; }
<div style="background-color:#959ECB">Inner text</div>
This div background color is #959ECB.
.myBorderColor { border: 1px solid #959ECB; }
<div style="border:3px solid #959ECB">Div</div>
This div border color is #959ECB.
.myOpacity80 { color: #959ECB; opacity: 0.8; }
<p style="color:#959ECB;opacity:0.8;">80%</p>
Text with #959ECB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #959ECB;}
<p style="text-shadow: 3px 3px 1px #959ECB">Text here.</p>
This text has shadow with #959ECB color.
.textShadow {text-shadow: 3px 3px 1px #959ECB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #959ECB, 5px 5px 20px red">Text here.</p>
This text has shadow with #959ECB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#959ECB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#959ECB, Direction=45, Strength=4)">Text</p>
This text has shadow with #959ECB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #959ECB; -webkit-box-shadow: 1px 1px 3px 2px #959ECB; box-shadow: 1px 1px 3px 2px #959ECB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #959ECB; -webkit-box-shadow: 1px 1px 3px 2px #959ECB; box-shadow:1px 1px 3px 2px #959ECB;">
Div content here</div>
This text has color #959ECB on black background.
This text has color #959ECB on white background.
This text has black color on #959ECB background.
This text has white color on #959ECB background.