HEX: #959FAF
RGB: (149,159,175)
#959FAF contains red, green and blue colors in about the same proportion. Web safe color of #959FAF is #999999 (or #999).
#959FAF color RGB value is (149,159,175).
RGB: (149,159,175) (58%,62%,69%)
R 149 of 255 = 58%
G 159 of 255 = 62%
B 175 of 255 = 69%
R + G + B ~ 63%. #959FAF is quite light color.
R + G + B =
149 + 159 + 175 = 483 (100%)
R 149 of 483 ~ 30.85%
G 159 of 483 ~ 32.92%
B 175 of 483 ~ 36.23%
#959FAF color CMYK value is (15,9,0,31).
CMYK: (15,9,0,31) C15M9Y0K31 (15%,9%,0%,31%) (0.15/0.09/0.00/0.31)
95 | 9F | AF | |
---|---|---|---|
RGB | 149 | 159 | 175 |
HSL | 217° | 13.98% | 63.53% |
HSB/HSV | 217° | 14.86% | 68.63% |
CMYK | 14.86% | 9.14% | 0.00% |
31.37% |
HEX | 95 | 9F | AF |
Decimal | 149 | 159 | 175 |
Binary | 10010101 | 10011111 | 10101111 |
Octal | 225 | 237 | 257 |
Examples of css and html codes for elements with #959FAF color. Also use rgb(149,159,175) instead hex code.
.myTextColor { color: #959FAF; }
<p style="color:#959FAF">This sample text font color is #959FAF.</p>
This text font color is #959FAF.
.myBgColor { background-color: #959FAF; }
<div style="background-color:#959FAF">Inner text</div>
This div background color is #959FAF.
.myBorderColor { border: 1px solid #959FAF; }
<div style="border:3px solid #959FAF">Div</div>
This div border color is #959FAF.
.myOpacity80 { color: #959FAF; opacity: 0.8; }
<p style="color:#959FAF;opacity:0.8;">80%</p>
Text with #959FAF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #959FAF;}
<p style="text-shadow: 3px 3px 1px #959FAF">Text here.</p>
This text has shadow with #959FAF color.
.textShadow {text-shadow: 3px 3px 1px #959FAF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #959FAF, 5px 5px 20px red">Text here.</p>
This text has shadow with #959FAF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#959FAF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#959FAF, Direction=45, Strength=4)">Text</p>
This text has shadow with #959FAF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #959FAF; -webkit-box-shadow: 1px 1px 3px 2px #959FAF; box-shadow: 1px 1px 3px 2px #959FAF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #959FAF; -webkit-box-shadow: 1px 1px 3px 2px #959FAF; box-shadow:1px 1px 3px 2px #959FAF;">
Div content here</div>
This text has color #959FAF on black background.
This text has color #959FAF on white background.
This text has black color on #959FAF background.
This text has white color on #959FAF background.