HEX: #9888EE
RGB: (152,136,238)
#9888EE contains mainly blue color. Web safe color of #9888EE is #9999FF (or #99F).
#9888EE color RGB value is (152,136,238).
RGB: (152,136,238) (60%,53%,93%)
R 152 of 255 = 60%
G 136 of 255 = 53%
B 238 of 255 = 93%
R + G + B ~ 69%. #9888EE is quite light color.
R + G + B =
152 + 136 + 238 = 526 (100%)
R 152 of 526 ~ 28.9%
G 136 of 526 ~ 25.86%
B 238 of 526 ~ 45.25%
#9888EE color CMYK value is (36,43,0,7).
CMYK: (36,43,0,7) C36M43Y0K7 (36%,43%,0%,7%) (0.36/0.43/0.00/0.07)
98 | 88 | EE | |
---|---|---|---|
RGB | 152 | 136 | 238 |
HSL | 249° | 75.00% | 73.33% |
HSB/HSV | 249° | 42.86% | 93.33% |
CMYK | 36.13% | 42.86% | 0.00% |
6.67% |
HEX | 98 | 88 | EE |
Decimal | 152 | 136 | 238 |
Binary | 10011000 | 10001000 | 11101110 |
Octal | 230 | 210 | 356 |
Examples of css and html codes for elements with #9888EE color. Also use rgb(152,136,238) instead hex code.
.myTextColor { color: #9888EE; }
<p style="color:#9888EE">This sample text font color is #9888EE.</p>
This text font color is #9888EE.
.myBgColor { background-color: #9888EE; }
<div style="background-color:#9888EE">Inner text</div>
This div background color is #9888EE.
.myBorderColor { border: 1px solid #9888EE; }
<div style="border:3px solid #9888EE">Div</div>
This div border color is #9888EE.
.myOpacity80 { color: #9888EE; opacity: 0.8; }
<p style="color:#9888EE;opacity:0.8;">80%</p>
Text with #9888EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9888EE;}
<p style="text-shadow: 3px 3px 1px #9888EE">Text here.</p>
This text has shadow with #9888EE color.
.textShadow {text-shadow: 3px 3px 1px #9888EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9888EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #9888EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9888EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9888EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #9888EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9888EE; -webkit-box-shadow: 1px 1px 3px 2px #9888EE; box-shadow: 1px 1px 3px 2px #9888EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9888EE; -webkit-box-shadow: 1px 1px 3px 2px #9888EE; box-shadow:1px 1px 3px 2px #9888EE;">
Div content here</div>
This text has color #9888EE on black background.
This text has color #9888EE on white background.
This text has black color on #9888EE background.
This text has white color on #9888EE background.