HEX: #968AAD
RGB: (150,138,173)
#968AAD contains red, green and blue colors in about the same proportion. Web safe color of #968AAD is #999999 (or #999).
#968AAD color RGB value is (150,138,173).
RGB: (150,138,173) (59%,54%,68%)
R 150 of 255 = 59%
G 138 of 255 = 54%
B 173 of 255 = 68%
R + G + B ~ 60%. #968AAD is middle color (not dark and not light).
R + G + B =
150 + 138 + 173 = 461 (100%)
R 150 of 461 ~ 32.54%
G 138 of 461 ~ 29.93%
B 173 of 461 ~ 37.53%
#968AAD color CMYK value is (13,20,0,32).
CMYK: (13,20,0,32) C13M20Y0K32 (13%,20%,0%,32%) (0.13/0.20/0.00/0.32)
96 | 8A | AD | |
---|---|---|---|
RGB | 150 | 138 | 173 |
HSL | 261° | 17.59% | 60.98% |
HSB/HSV | 261° | 20.23% | 67.84% |
CMYK | 13.29% | 20.23% | 0.00% |
32.16% |
HEX | 96 | 8A | AD |
Decimal | 150 | 138 | 173 |
Binary | 10010110 | 10001010 | 10101101 |
Octal | 226 | 212 | 255 |
Examples of css and html codes for elements with #968AAD color. Also use rgb(150,138,173) instead hex code.
.myTextColor { color: #968AAD; }
<p style="color:#968AAD">This sample text font color is #968AAD.</p>
This text font color is #968AAD.
.myBgColor { background-color: #968AAD; }
<div style="background-color:#968AAD">Inner text</div>
This div background color is #968AAD.
.myBorderColor { border: 1px solid #968AAD; }
<div style="border:3px solid #968AAD">Div</div>
This div border color is #968AAD.
.myOpacity80 { color: #968AAD; opacity: 0.8; }
<p style="color:#968AAD;opacity:0.8;">80%</p>
Text with #968AAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #968AAD;}
<p style="text-shadow: 3px 3px 1px #968AAD">Text here.</p>
This text has shadow with #968AAD color.
.textShadow {text-shadow: 3px 3px 1px #968AAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #968AAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #968AAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#968AAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#968AAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #968AAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #968AAD; -webkit-box-shadow: 1px 1px 3px 2px #968AAD; box-shadow: 1px 1px 3px 2px #968AAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #968AAD; -webkit-box-shadow: 1px 1px 3px 2px #968AAD; box-shadow:1px 1px 3px 2px #968AAD;">
Div content here</div>
This text has color #968AAD on black background.
This text has color #968AAD on white background.
This text has black color on #968AAD background.
This text has white color on #968AAD background.