HEX: #994EBD
RGB: (153,78,189)
#994EBD contains mainly red and blue colors. Web safe color of #994EBD is #9966CC (or #96C).
#994EBD color RGB value is (153,78,189).
RGB: (153,78,189) (60%,31%,74%)
R 153 of 255 = 60%
G 78 of 255 = 31%
B 189 of 255 = 74%
R + G + B ~ 55%. #994EBD is middle color (not dark and not light).
R + G + B =
153 + 78 + 189 = 420 (100%)
R 153 of 420 ~ 36.43%
G 78 of 420 ~ 18.57%
B 189 of 420 ~ 45%
#994EBD color CMYK value is (19,59,0,26).
CMYK: (19,59,0,26) C19M59Y0K26 (19%,59%,0%,26%) (0.19/0.59/0.00/0.26)
99 | 4E | BD | |
---|---|---|---|
RGB | 153 | 78 | 189 |
HSL | 281° | 45.68% | 52.35% |
HSB/HSV | 281° | 58.73% | 74.12% |
CMYK | 19.05% | 58.73% | 0.00% |
25.88% |
HEX | 99 | 4E | BD |
Decimal | 153 | 78 | 189 |
Binary | 10011001 | 1001110 | 10111101 |
Octal | 231 | 116 | 275 |
Examples of css and html codes for elements with #994EBD color. Also use rgb(153,78,189) instead hex code.
.myTextColor { color: #994EBD; }
<p style="color:#994EBD">This sample text font color is #994EBD.</p>
This text font color is #994EBD.
.myBgColor { background-color: #994EBD; }
<div style="background-color:#994EBD">Inner text</div>
This div background color is #994EBD.
.myBorderColor { border: 1px solid #994EBD; }
<div style="border:3px solid #994EBD">Div</div>
This div border color is #994EBD.
.myOpacity80 { color: #994EBD; opacity: 0.8; }
<p style="color:#994EBD;opacity:0.8;">80%</p>
Text with #994EBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #994EBD;}
<p style="text-shadow: 3px 3px 1px #994EBD">Text here.</p>
This text has shadow with #994EBD color.
.textShadow {text-shadow: 3px 3px 1px #994EBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #994EBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #994EBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#994EBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#994EBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #994EBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #994EBD; -webkit-box-shadow: 1px 1px 3px 2px #994EBD; box-shadow: 1px 1px 3px 2px #994EBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #994EBD; -webkit-box-shadow: 1px 1px 3px 2px #994EBD; box-shadow:1px 1px 3px 2px #994EBD;">
Div content here</div>
This text has color #994EBD on black background.
This text has color #994EBD on white background.
This text has black color on #994EBD background.
This text has white color on #994EBD background.