HEX: #988488
RGB: (152,132,136)
#988488 contains red, green and blue colors in about the same proportion. Web safe color of #988488 is #999999 (or #999).
#988488 color RGB value is (152,132,136).
RGB: (152,132,136) (60%,52%,53%)
R 152 of 255 = 60%
G 132 of 255 = 52%
B 136 of 255 = 53%
R + G + B ~ 55%. #988488 is middle color (not dark and not light).
R + G + B =
152 + 132 + 136 = 420 (100%)
R 152 of 420 ~ 36.19%
G 132 of 420 ~ 31.43%
B 136 of 420 ~ 32.38%
#988488 color CMYK value is (0,13,11,40).
CMYK: (0,13,11,40) C0M13Y11K40 (0%,13%,11%,40%) (0.00/0.13/0.11/0.40)
98 | 84 | 88 | |
---|---|---|---|
RGB | 152 | 132 | 136 |
HSL | 348° | 8.85% | 55.69% |
HSB/HSV | 348° | 13.16% | 59.61% |
CMYK | 0.00% | 13.16% | 10.53% |
40.39% |
HEX | 98 | 84 | 88 |
Decimal | 152 | 132 | 136 |
Binary | 10011000 | 10000100 | 10001000 |
Octal | 230 | 204 | 210 |
Examples of css and html codes for elements with #988488 color. Also use rgb(152,132,136) instead hex code.
.myTextColor { color: #988488; }
<p style="color:#988488">This sample text font color is #988488.</p>
This text font color is #988488.
.myBgColor { background-color: #988488; }
<div style="background-color:#988488">Inner text</div>
This div background color is #988488.
.myBorderColor { border: 1px solid #988488; }
<div style="border:3px solid #988488">Div</div>
This div border color is #988488.
.myOpacity80 { color: #988488; opacity: 0.8; }
<p style="color:#988488;opacity:0.8;">80%</p>
Text with #988488 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #988488;}
<p style="text-shadow: 3px 3px 1px #988488">Text here.</p>
This text has shadow with #988488 color.
.textShadow {text-shadow: 3px 3px 1px #988488, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #988488, 5px 5px 20px red">Text here.</p>
This text has shadow with #988488 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#988488, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#988488, Direction=45, Strength=4)">Text</p>
This text has shadow with #988488 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #988488; -webkit-box-shadow: 1px 1px 3px 2px #988488; box-shadow: 1px 1px 3px 2px #988488; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #988488; -webkit-box-shadow: 1px 1px 3px 2px #988488; box-shadow:1px 1px 3px 2px #988488;">
Div content here</div>
This text has color #988488 on black background.
This text has color #988488 on white background.
This text has black color on #988488 background.
This text has white color on #988488 background.