HEX: #988EBC
RGB: (152,142,188)
#988EBC contains red, green and blue colors in about the same proportion. Web safe color of #988EBC is #9999CC (or #99C).
#988EBC color RGB value is (152,142,188).
RGB: (152,142,188) (60%,56%,74%)
R 152 of 255 = 60%
G 142 of 255 = 56%
B 188 of 255 = 74%
R + G + B ~ 63%. #988EBC is quite light color.
R + G + B =
152 + 142 + 188 = 482 (100%)
R 152 of 482 ~ 31.54%
G 142 of 482 ~ 29.46%
B 188 of 482 ~ 39%
#988EBC color CMYK value is (19,24,0,26).
CMYK: (19,24,0,26) C19M24Y0K26 (19%,24%,0%,26%) (0.19/0.24/0.00/0.26)
98 | 8E | BC | |
---|---|---|---|
RGB | 152 | 142 | 188 |
HSL | 253° | 25.56% | 64.71% |
HSB/HSV | 253° | 24.47% | 73.73% |
CMYK | 19.15% | 24.47% | 0.00% |
26.27% |
HEX | 98 | 8E | BC |
Decimal | 152 | 142 | 188 |
Binary | 10011000 | 10001110 | 10111100 |
Octal | 230 | 216 | 274 |
Examples of css and html codes for elements with #988EBC color. Also use rgb(152,142,188) instead hex code.
.myTextColor { color: #988EBC; }
<p style="color:#988EBC">This sample text font color is #988EBC.</p>
This text font color is #988EBC.
.myBgColor { background-color: #988EBC; }
<div style="background-color:#988EBC">Inner text</div>
This div background color is #988EBC.
.myBorderColor { border: 1px solid #988EBC; }
<div style="border:3px solid #988EBC">Div</div>
This div border color is #988EBC.
.myOpacity80 { color: #988EBC; opacity: 0.8; }
<p style="color:#988EBC;opacity:0.8;">80%</p>
Text with #988EBC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #988EBC;}
<p style="text-shadow: 3px 3px 1px #988EBC">Text here.</p>
This text has shadow with #988EBC color.
.textShadow {text-shadow: 3px 3px 1px #988EBC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #988EBC, 5px 5px 20px red">Text here.</p>
This text has shadow with #988EBC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#988EBC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#988EBC, Direction=45, Strength=4)">Text</p>
This text has shadow with #988EBC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #988EBC; -webkit-box-shadow: 1px 1px 3px 2px #988EBC; box-shadow: 1px 1px 3px 2px #988EBC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #988EBC; -webkit-box-shadow: 1px 1px 3px 2px #988EBC; box-shadow:1px 1px 3px 2px #988EBC;">
Div content here</div>
This text has color #988EBC on black background.
This text has color #988EBC on white background.
This text has black color on #988EBC background.
This text has white color on #988EBC background.