HEX: #959FBA
RGB: (149,159,186)
#959FBA contains red, green and blue colors in about the same proportion. Web safe color of #959FBA is #9999CC (or #99C).
#959FBA color RGB value is (149,159,186).
RGB: (149,159,186) (58%,62%,73%)
R 149 of 255 = 58%
G 159 of 255 = 62%
B 186 of 255 = 73%
R + G + B ~ 64%. #959FBA is quite light color.
R + G + B =
149 + 159 + 186 = 494 (100%)
R 149 of 494 ~ 30.16%
G 159 of 494 ~ 32.19%
B 186 of 494 ~ 37.65%
#959FBA color CMYK value is (20,15,0,27).
CMYK: (20,15,0,27) C20M15Y0K27 (20%,15%,0%,27%) (0.20/0.15/0.00/0.27)
95 | 9F | BA | |
---|---|---|---|
RGB | 149 | 159 | 186 |
HSL | 224° | 21.14% | 65.69% |
HSB/HSV | 224° | 19.89% | 72.94% |
CMYK | 19.89% | 14.52% | 0.00% |
27.06% |
HEX | 95 | 9F | BA |
Decimal | 149 | 159 | 186 |
Binary | 10010101 | 10011111 | 10111010 |
Octal | 225 | 237 | 272 |
Examples of css and html codes for elements with #959FBA color. Also use rgb(149,159,186) instead hex code.
.myTextColor { color: #959FBA; }
<p style="color:#959FBA">This sample text font color is #959FBA.</p>
This text font color is #959FBA.
.myBgColor { background-color: #959FBA; }
<div style="background-color:#959FBA">Inner text</div>
This div background color is #959FBA.
.myBorderColor { border: 1px solid #959FBA; }
<div style="border:3px solid #959FBA">Div</div>
This div border color is #959FBA.
.myOpacity80 { color: #959FBA; opacity: 0.8; }
<p style="color:#959FBA;opacity:0.8;">80%</p>
Text with #959FBA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #959FBA;}
<p style="text-shadow: 3px 3px 1px #959FBA">Text here.</p>
This text has shadow with #959FBA color.
.textShadow {text-shadow: 3px 3px 1px #959FBA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #959FBA, 5px 5px 20px red">Text here.</p>
This text has shadow with #959FBA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#959FBA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#959FBA, Direction=45, Strength=4)">Text</p>
This text has shadow with #959FBA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #959FBA; -webkit-box-shadow: 1px 1px 3px 2px #959FBA; box-shadow: 1px 1px 3px 2px #959FBA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #959FBA; -webkit-box-shadow: 1px 1px 3px 2px #959FBA; box-shadow:1px 1px 3px 2px #959FBA;">
Div content here</div>
This text has color #959FBA on black background.
This text has color #959FBA on white background.
This text has black color on #959FBA background.
This text has white color on #959FBA background.