HEX: #966FAE
RGB: (150,111,174)
#966FAE contains mainly red and blue colors. Web safe color of #966FAE is #996699 (or #969).
#966FAE color RGB value is (150,111,174).
RGB: (150,111,174) (59%,44%,68%)
R 150 of 255 = 59%
G 111 of 255 = 44%
B 174 of 255 = 68%
R + G + B ~ 57%. #966FAE is middle color (not dark and not light).
R + G + B =
150 + 111 + 174 = 435 (100%)
R 150 of 435 ~ 34.48%
G 111 of 435 ~ 25.52%
B 174 of 435 ~ 40%
#966FAE color CMYK value is (14,36,0,32).
CMYK: (14,36,0,32) C14M36Y0K32 (14%,36%,0%,32%) (0.14/0.36/0.00/0.32)
96 | 6F | AE | |
---|---|---|---|
RGB | 150 | 111 | 174 |
HSL | 277° | 28.00% | 55.88% |
HSB/HSV | 277° | 36.21% | 68.24% |
CMYK | 13.79% | 36.21% | 0.00% |
31.76% |
HEX | 96 | 6F | AE |
Decimal | 150 | 111 | 174 |
Binary | 10010110 | 1101111 | 10101110 |
Octal | 226 | 157 | 256 |
Examples of css and html codes for elements with #966FAE color. Also use rgb(150,111,174) instead hex code.
.myTextColor { color: #966FAE; }
<p style="color:#966FAE">This sample text font color is #966FAE.</p>
This text font color is #966FAE.
.myBgColor { background-color: #966FAE; }
<div style="background-color:#966FAE">Inner text</div>
This div background color is #966FAE.
.myBorderColor { border: 1px solid #966FAE; }
<div style="border:3px solid #966FAE">Div</div>
This div border color is #966FAE.
.myOpacity80 { color: #966FAE; opacity: 0.8; }
<p style="color:#966FAE;opacity:0.8;">80%</p>
Text with #966FAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #966FAE;}
<p style="text-shadow: 3px 3px 1px #966FAE">Text here.</p>
This text has shadow with #966FAE color.
.textShadow {text-shadow: 3px 3px 1px #966FAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #966FAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #966FAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#966FAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#966FAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #966FAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #966FAE; -webkit-box-shadow: 1px 1px 3px 2px #966FAE; box-shadow: 1px 1px 3px 2px #966FAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #966FAE; -webkit-box-shadow: 1px 1px 3px 2px #966FAE; box-shadow:1px 1px 3px 2px #966FAE;">
Div content here</div>
This text has color #966FAE on black background.
This text has color #966FAE on white background.
This text has black color on #966FAE background.
This text has white color on #966FAE background.