HEX: #969DD5
RGB: (150,157,213)
#969DD5 contains mainly green and blue colors. Web safe color of #969DD5 is #9999CC (or #99C).
#969DD5 color RGB value is (150,157,213).
RGB: (150,157,213) (59%,62%,84%)
R 150 of 255 = 59%
G 157 of 255 = 62%
B 213 of 255 = 84%
R + G + B ~ 68%. #969DD5 is quite light color.
R + G + B =
150 + 157 + 213 = 520 (100%)
R 150 of 520 ~ 28.85%
G 157 of 520 ~ 30.19%
B 213 of 520 ~ 40.96%
#969DD5 color CMYK value is (30,26,0,16).
CMYK: (30,26,0,16) C30M26Y0K16 (30%,26%,0%,16%) (0.30/0.26/0.00/0.16)
96 | 9D | D5 | |
---|---|---|---|
RGB | 150 | 157 | 213 |
HSL | 233° | 42.86% | 71.18% |
HSB/HSV | 233° | 29.58% | 83.53% |
CMYK | 29.58% | 26.29% | 0.00% |
16.47% |
HEX | 96 | 9D | D5 |
Decimal | 150 | 157 | 213 |
Binary | 10010110 | 10011101 | 11010101 |
Octal | 226 | 235 | 325 |
Examples of css and html codes for elements with #969DD5 color. Also use rgb(150,157,213) instead hex code.
.myTextColor { color: #969DD5; }
<p style="color:#969DD5">This sample text font color is #969DD5.</p>
This text font color is #969DD5.
.myBgColor { background-color: #969DD5; }
<div style="background-color:#969DD5">Inner text</div>
This div background color is #969DD5.
.myBorderColor { border: 1px solid #969DD5; }
<div style="border:3px solid #969DD5">Div</div>
This div border color is #969DD5.
.myOpacity80 { color: #969DD5; opacity: 0.8; }
<p style="color:#969DD5;opacity:0.8;">80%</p>
Text with #969DD5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #969DD5;}
<p style="text-shadow: 3px 3px 1px #969DD5">Text here.</p>
This text has shadow with #969DD5 color.
.textShadow {text-shadow: 3px 3px 1px #969DD5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #969DD5, 5px 5px 20px red">Text here.</p>
This text has shadow with #969DD5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#969DD5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#969DD5, Direction=45, Strength=4)">Text</p>
This text has shadow with #969DD5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #969DD5; -webkit-box-shadow: 1px 1px 3px 2px #969DD5; box-shadow: 1px 1px 3px 2px #969DD5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #969DD5; -webkit-box-shadow: 1px 1px 3px 2px #969DD5; box-shadow:1px 1px 3px 2px #969DD5;">
Div content here</div>
This text has color #969DD5 on black background.
This text has color #969DD5 on white background.
This text has black color on #969DD5 background.
This text has white color on #969DD5 background.