HEX: #9C6DF6
RGB: (156,109,246)
#9C6DF6 contains mainly blue color. Web safe color of #9C6DF6 is #9966FF (or #96F).
#9C6DF6 color RGB value is (156,109,246).
RGB: (156,109,246) (61%,43%,96%)
R 156 of 255 = 61%
G 109 of 255 = 43%
B 246 of 255 = 96%
R + G + B ~ 67%. #9C6DF6 is quite light color.
R + G + B =
156 + 109 + 246 = 511 (100%)
R 156 of 511 ~ 30.53%
G 109 of 511 ~ 21.33%
B 246 of 511 ~ 48.14%
#9C6DF6 color CMYK value is (37,56,0,4).
CMYK: (37,56,0,4) C37M56Y0K4 (37%,56%,0%,4%) (0.37/0.56/0.00/0.04)
9C | 6D | F6 | |
---|---|---|---|
RGB | 156 | 109 | 246 |
HSL | 261° | 88.39% | 69.61% |
HSB/HSV | 261° | 55.69% | 96.47% |
CMYK | 36.59% | 55.69% | 0.00% |
3.53% |
HEX | 9C | 6D | F6 |
Decimal | 156 | 109 | 246 |
Binary | 10011100 | 1101101 | 11110110 |
Octal | 234 | 155 | 366 |
Examples of css and html codes for elements with #9C6DF6 color. Also use rgb(156,109,246) instead hex code.
.myTextColor { color: #9C6DF6; }
<p style="color:#9C6DF6">This sample text font color is #9C6DF6.</p>
This text font color is #9C6DF6.
.myBgColor { background-color: #9C6DF6; }
<div style="background-color:#9C6DF6">Inner text</div>
This div background color is #9C6DF6.
.myBorderColor { border: 1px solid #9C6DF6; }
<div style="border:3px solid #9C6DF6">Div</div>
This div border color is #9C6DF6.
.myOpacity80 { color: #9C6DF6; opacity: 0.8; }
<p style="color:#9C6DF6;opacity:0.8;">80%</p>
Text with #9C6DF6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9C6DF6;}
<p style="text-shadow: 3px 3px 1px #9C6DF6">Text here.</p>
This text has shadow with #9C6DF6 color.
.textShadow {text-shadow: 3px 3px 1px #9C6DF6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9C6DF6, 5px 5px 20px red">Text here.</p>
This text has shadow with #9C6DF6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9C6DF6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9C6DF6, Direction=45, Strength=4)">Text</p>
This text has shadow with #9C6DF6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9C6DF6; -webkit-box-shadow: 1px 1px 3px 2px #9C6DF6; box-shadow: 1px 1px 3px 2px #9C6DF6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9C6DF6; -webkit-box-shadow: 1px 1px 3px 2px #9C6DF6; box-shadow:1px 1px 3px 2px #9C6DF6;">
Div content here</div>
This text has color #9C6DF6 on black background.
This text has color #9C6DF6 on white background.
This text has black color on #9C6DF6 background.
This text has white color on #9C6DF6 background.