HEX: #996EBB
RGB: (153,110,187)
#996EBB contains mainly red and blue colors. Web safe color of #996EBB is #9966CC (or #96C).
#996EBB color RGB value is (153,110,187).
RGB: (153,110,187) (60%,43%,73%)
R 153 of 255 = 60%
G 110 of 255 = 43%
B 187 of 255 = 73%
R + G + B ~ 59%. #996EBB is middle color (not dark and not light).
R + G + B =
153 + 110 + 187 = 450 (100%)
R 153 of 450 ~ 34%
G 110 of 450 ~ 24.44%
B 187 of 450 ~ 41.56%
#996EBB color CMYK value is (18,41,0,27).
CMYK: (18,41,0,27) C18M41Y0K27 (18%,41%,0%,27%) (0.18/0.41/0.00/0.27)
99 | 6E | BB | |
---|---|---|---|
RGB | 153 | 110 | 187 |
HSL | 274° | 36.15% | 58.24% |
HSB/HSV | 274° | 41.18% | 73.33% |
CMYK | 18.18% | 41.18% | 0.00% |
26.67% |
HEX | 99 | 6E | BB |
Decimal | 153 | 110 | 187 |
Binary | 10011001 | 1101110 | 10111011 |
Octal | 231 | 156 | 273 |
Examples of css and html codes for elements with #996EBB color. Also use rgb(153,110,187) instead hex code.
.myTextColor { color: #996EBB; }
<p style="color:#996EBB">This sample text font color is #996EBB.</p>
This text font color is #996EBB.
.myBgColor { background-color: #996EBB; }
<div style="background-color:#996EBB">Inner text</div>
This div background color is #996EBB.
.myBorderColor { border: 1px solid #996EBB; }
<div style="border:3px solid #996EBB">Div</div>
This div border color is #996EBB.
.myOpacity80 { color: #996EBB; opacity: 0.8; }
<p style="color:#996EBB;opacity:0.8;">80%</p>
Text with #996EBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #996EBB;}
<p style="text-shadow: 3px 3px 1px #996EBB">Text here.</p>
This text has shadow with #996EBB color.
.textShadow {text-shadow: 3px 3px 1px #996EBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #996EBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #996EBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#996EBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#996EBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #996EBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #996EBB; -webkit-box-shadow: 1px 1px 3px 2px #996EBB; box-shadow: 1px 1px 3px 2px #996EBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #996EBB; -webkit-box-shadow: 1px 1px 3px 2px #996EBB; box-shadow:1px 1px 3px 2px #996EBB;">
Div content here</div>
This text has color #996EBB on black background.
This text has color #996EBB on white background.
This text has black color on #996EBB background.
This text has white color on #996EBB background.