HEX: #9678BC
RGB: (150,120,188)
#9678BC contains mainly red and blue colors. Web safe color of #9678BC is #9966CC (or #96C).
#9678BC color RGB value is (150,120,188).
RGB: (150,120,188) (59%,47%,74%)
R 150 of 255 = 59%
G 120 of 255 = 47%
B 188 of 255 = 74%
R + G + B ~ 60%. #9678BC is middle color (not dark and not light).
R + G + B =
150 + 120 + 188 = 458 (100%)
R 150 of 458 ~ 32.75%
G 120 of 458 ~ 26.2%
B 188 of 458 ~ 41.05%
#9678BC color CMYK value is (20,36,0,26).
CMYK: (20,36,0,26) C20M36Y0K26 (20%,36%,0%,26%) (0.20/0.36/0.00/0.26)
96 | 78 | BC | |
---|---|---|---|
RGB | 150 | 120 | 188 |
HSL | 266° | 33.66% | 60.39% |
HSB/HSV | 266° | 36.17% | 73.73% |
CMYK | 20.21% | 36.17% | 0.00% |
26.27% |
HEX | 96 | 78 | BC |
Decimal | 150 | 120 | 188 |
Binary | 10010110 | 1111000 | 10111100 |
Octal | 226 | 170 | 274 |
Examples of css and html codes for elements with #9678BC color. Also use rgb(150,120,188) instead hex code.
.myTextColor { color: #9678BC; }
<p style="color:#9678BC">This sample text font color is #9678BC.</p>
This text font color is #9678BC.
.myBgColor { background-color: #9678BC; }
<div style="background-color:#9678BC">Inner text</div>
This div background color is #9678BC.
.myBorderColor { border: 1px solid #9678BC; }
<div style="border:3px solid #9678BC">Div</div>
This div border color is #9678BC.
.myOpacity80 { color: #9678BC; opacity: 0.8; }
<p style="color:#9678BC;opacity:0.8;">80%</p>
Text with #9678BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9678BC;}
<p style="text-shadow: 3px 3px 1px #9678BC">Text here.</p>
This text has shadow with #9678BC color.
.textShadow {text-shadow: 3px 3px 1px #9678BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9678BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #9678BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9678BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9678BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #9678BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9678BC; -webkit-box-shadow: 1px 1px 3px 2px #9678BC; box-shadow: 1px 1px 3px 2px #9678BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9678BC; -webkit-box-shadow: 1px 1px 3px 2px #9678BC; box-shadow:1px 1px 3px 2px #9678BC;">
Div content here</div>
This text has color #9678BC on black background.
This text has color #9678BC on white background.
This text has black color on #9678BC background.
This text has white color on #9678BC background.