HEX: #9E84EB
RGB: (158,132,235)
#9E84EB contains mainly blue color. Web safe color of #9E84EB is #9999FF (or #99F).
#9E84EB color RGB value is (158,132,235).
RGB: (158,132,235) (62%,52%,92%)
R 158 of 255 = 62%
G 132 of 255 = 52%
B 235 of 255 = 92%
R + G + B ~ 69%. #9E84EB is quite light color.
R + G + B =
158 + 132 + 235 = 525 (100%)
R 158 of 525 ~ 30.1%
G 132 of 525 ~ 25.14%
B 235 of 525 ~ 44.76%
#9E84EB color CMYK value is (33,44,0,8).
CMYK: (33,44,0,8) C33M44Y0K8 (33%,44%,0%,8%) (0.33/0.44/0.00/0.08)
9E | 84 | EB | |
---|---|---|---|
RGB | 158 | 132 | 235 |
HSL | 255° | 72.03% | 71.96% |
HSB/HSV | 255° | 43.83% | 92.16% |
CMYK | 32.77% | 43.83% | 0.00% |
7.84% |
HEX | 9E | 84 | EB |
Decimal | 158 | 132 | 235 |
Binary | 10011110 | 10000100 | 11101011 |
Octal | 236 | 204 | 353 |
Examples of css and html codes for elements with #9E84EB color. Also use rgb(158,132,235) instead hex code.
.myTextColor { color: #9E84EB; }
<p style="color:#9E84EB">This sample text font color is #9E84EB.</p>
This text font color is #9E84EB.
.myBgColor { background-color: #9E84EB; }
<div style="background-color:#9E84EB">Inner text</div>
This div background color is #9E84EB.
.myBorderColor { border: 1px solid #9E84EB; }
<div style="border:3px solid #9E84EB">Div</div>
This div border color is #9E84EB.
.myOpacity80 { color: #9E84EB; opacity: 0.8; }
<p style="color:#9E84EB;opacity:0.8;">80%</p>
Text with #9E84EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9E84EB;}
<p style="text-shadow: 3px 3px 1px #9E84EB">Text here.</p>
This text has shadow with #9E84EB color.
.textShadow {text-shadow: 3px 3px 1px #9E84EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9E84EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #9E84EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9E84EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9E84EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #9E84EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9E84EB; -webkit-box-shadow: 1px 1px 3px 2px #9E84EB; box-shadow: 1px 1px 3px 2px #9E84EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9E84EB; -webkit-box-shadow: 1px 1px 3px 2px #9E84EB; box-shadow:1px 1px 3px 2px #9E84EB;">
Div content here</div>
This text has color #9E84EB on black background.
This text has color #9E84EB on white background.
This text has black color on #9E84EB background.
This text has white color on #9E84EB background.