HEX: #969FCA
RGB: (150,159,202)
#969FCA contains red, green and blue colors in about the same proportion. Web safe color of #969FCA is #9999CC (or #99C).
#969FCA color RGB value is (150,159,202).
RGB: (150,159,202) (59%,62%,79%)
R 150 of 255 = 59%
G 159 of 255 = 62%
B 202 of 255 = 79%
R + G + B ~ 67%. #969FCA is quite light color.
R + G + B =
150 + 159 + 202 = 511 (100%)
R 150 of 511 ~ 29.35%
G 159 of 511 ~ 31.12%
B 202 of 511 ~ 39.53%
#969FCA color CMYK value is (26,21,0,21).
CMYK: (26,21,0,21) C26M21Y0K21 (26%,21%,0%,21%) (0.26/0.21/0.00/0.21)
96 | 9F | CA | |
---|---|---|---|
RGB | 150 | 159 | 202 |
HSL | 230° | 32.91% | 69.02% |
HSB/HSV | 230° | 25.74% | 79.22% |
CMYK | 25.74% | 21.29% | 0.00% |
20.78% |
HEX | 96 | 9F | CA |
Decimal | 150 | 159 | 202 |
Binary | 10010110 | 10011111 | 11001010 |
Octal | 226 | 237 | 312 |
Examples of css and html codes for elements with #969FCA color. Also use rgb(150,159,202) instead hex code.
.myTextColor { color: #969FCA; }
<p style="color:#969FCA">This sample text font color is #969FCA.</p>
This text font color is #969FCA.
.myBgColor { background-color: #969FCA; }
<div style="background-color:#969FCA">Inner text</div>
This div background color is #969FCA.
.myBorderColor { border: 1px solid #969FCA; }
<div style="border:3px solid #969FCA">Div</div>
This div border color is #969FCA.
.myOpacity80 { color: #969FCA; opacity: 0.8; }
<p style="color:#969FCA;opacity:0.8;">80%</p>
Text with #969FCA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #969FCA;}
<p style="text-shadow: 3px 3px 1px #969FCA">Text here.</p>
This text has shadow with #969FCA color.
.textShadow {text-shadow: 3px 3px 1px #969FCA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #969FCA, 5px 5px 20px red">Text here.</p>
This text has shadow with #969FCA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#969FCA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#969FCA, Direction=45, Strength=4)">Text</p>
This text has shadow with #969FCA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #969FCA; -webkit-box-shadow: 1px 1px 3px 2px #969FCA; box-shadow: 1px 1px 3px 2px #969FCA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #969FCA; -webkit-box-shadow: 1px 1px 3px 2px #969FCA; box-shadow:1px 1px 3px 2px #969FCA;">
Div content here</div>
This text has color #969FCA on black background.
This text has color #969FCA on white background.
This text has black color on #969FCA background.
This text has white color on #969FCA background.