HEX: #98588E
RGB: (152,88,142)
#98588E contains mainly red and blue colors. Web safe color of #98588E is #996699 (or #969).
#98588E color RGB value is (152,88,142).
RGB: (152,88,142) (60%,35%,56%)
R 152 of 255 = 60%
G 88 of 255 = 35%
B 142 of 255 = 56%
R + G + B ~ 50%. #98588E is middle color (not dark and not light).
R + G + B =
152 + 88 + 142 = 382 (100%)
R 152 of 382 ~ 39.79%
G 88 of 382 ~ 23.04%
B 142 of 382 ~ 37.17%
#98588E color CMYK value is (0,42,7,40).
CMYK: (0,42,7,40) C0M42Y7K40 (0%,42%,7%,40%) (0.00/0.42/0.07/0.40)
98 | 58 | 8E | |
---|---|---|---|
RGB | 152 | 88 | 142 |
HSL | 309° | 26.67% | 47.06% |
HSB/HSV | 309° | 42.11% | 59.61% |
CMYK | 0.00% | 42.11% | 6.58% |
40.39% |
HEX | 98 | 58 | 8E |
Decimal | 152 | 88 | 142 |
Binary | 10011000 | 1011000 | 10001110 |
Octal | 230 | 130 | 216 |
Examples of css and html codes for elements with #98588E color. Also use rgb(152,88,142) instead hex code.
.myTextColor { color: #98588E; }
<p style="color:#98588E">This sample text font color is #98588E.</p>
This text font color is #98588E.
.myBgColor { background-color: #98588E; }
<div style="background-color:#98588E">Inner text</div>
This div background color is #98588E.
.myBorderColor { border: 1px solid #98588E; }
<div style="border:3px solid #98588E">Div</div>
This div border color is #98588E.
.myOpacity80 { color: #98588E; opacity: 0.8; }
<p style="color:#98588E;opacity:0.8;">80%</p>
Text with #98588E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #98588E;}
<p style="text-shadow: 3px 3px 1px #98588E">Text here.</p>
This text has shadow with #98588E color.
.textShadow {text-shadow: 3px 3px 1px #98588E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #98588E, 5px 5px 20px red">Text here.</p>
This text has shadow with #98588E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#98588E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#98588E, Direction=45, Strength=4)">Text</p>
This text has shadow with #98588E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #98588E; -webkit-box-shadow: 1px 1px 3px 2px #98588E; box-shadow: 1px 1px 3px 2px #98588E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #98588E; -webkit-box-shadow: 1px 1px 3px 2px #98588E; box-shadow:1px 1px 3px 2px #98588E;">
Div content here</div>
This text has color #98588E on black background.
This text has color #98588E on white background.
This text has black color on #98588E background.
This text has white color on #98588E background.